Any script you want?

[Brick] 1nator
Joined 11/10/2017
Posts 11,114
08:27 AM 02/04/2023
I havent been here in a while but i wanna script again so ill maybe make your script requests
Only generic stuff though, things that could be used in many games.


Piggy
Joined 04/03/2018
Posts 23,947
08:54 AM 02/04/2023
Probably quite basic but a script where if you touch a brick it kills you


[Brick] 1nator
Joined 11/10/2017
Posts 11,114
01:16 PM 02/04/2023
Quote from Piggy , 08:54 AM 02/04/2023
Probably quite basic but a script where if you touch a brick it kills you
HahHaHha i am totally suprised to see this here


Piggy
Joined 04/03/2018
Posts 23,947
08:56 PM 06/04/2023
A script that changes people’s avatars when they join?


[br] raptor157uwu
Joined 29/12/2021
Posts 93
08:40 PM 07/04/2023
I want a kill brick Script
if its possible


[Brick] 1nator
Joined 11/10/2017
Posts 11,114
06:26 AM 08/04/2023
Quote from raptor157uwu , 08:40 PM 07/04/2023
I want a kill brick Script
if its possible
KillBrickName = "killbrick" //put the name of your kill bricks here

Game.world.bricks.forEach(brick => {
if (brick.name == KillBrickName) brick.touching(player => {player.kill()})
})


[RBLX] Rafitimba
Joined 13/05/2021
Posts 139
12:20 PM 10/04/2023
i need a script that makes the server say "Welcome!" when someone joins the game.


dargy
Joined 23/06/2019
Posts 4,820
12:30 PM 10/04/2023
Quote from 1nator , 06:26 AM 08/04/2023
Quote from raptor157uwu , 08:40 PM 07/04/2023
I want a kill brick Script
if its possible

KillBrickName = "killbrick" //put the name of your kill bricks here

Game.world.bricks.forEach(brick => {
if (brick.name == KillBrickName) brick.touching(player => {player.kill()})
})
could be condensed down to

Game.world.bricks.filter(brick => brick.name == KillBrickName).forEach(brick => brick.touching(p => p.kill());


[Brick] 1nator
Joined 11/10/2017
Posts 11,114
12:34 PM 10/04/2023
Quote from Rafitimba , 12:20 PM 10/04/2023
i need a script that makes the server say "Welcome!" when someone joins the game.
Game.MOTD = "Welcome!"


[RBLX] Rafitimba
Joined 13/05/2021
Posts 139
01:44 PM 10/04/2023
Thanks dude!


Piggy
Joined 04/03/2018
Posts 23,947
01:49 PM 10/04/2023
I am crying I got ignored twice

1 2 3 4 5