How can I make a command for when the player spawns after his death?
The only one that I can think of is CharacterAdded()
1 | Player = game:GetService( "Players" ).LocalPlayer |
2 | Player.CharacterAdded:connect( function (character) |
3 | --Do stuff to character here |
4 | end ) |