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