Is there a spawned event, that can trigger a function before a player spawns, so you can do a for loop, and you can make the player holographically come from transparency at 1, to 0, gradiently?
Well, there is a way to make a function that trigger when the character is spawned. First you need to check for the player,you could use the PlayerAdded
event:
1 | game.Players.PlayerAdded:connect( function (plr) |
2 |
3 | end ) |
Now with a player variable, you can use the CharacterAdded
event:
1 | game.Players.PlayerAdded:connect( function (plr) |
2 | plr.CharacterAdded:connect(char) |
3 | --Put content here |
4 | end |
5 | end ) |
Well, now put the rest of your script there. Some links: PlayerAdded CharacterAdded
Note: probobly im wrong there.