Event for player's character being reloaded

Hey I want to know if there is an event for every time the player’s character is reloaded, for example, the player resets and when they respawn the event is fired.

Is it player:CharacterAdded or is that only for when the player joins.
Thanks for any help

Yes, the event that fires whenever the character of a player spawns, is Player.CharacterAdded. It will fire whenever a new character is created for the player, by whatever means it happens. If you wanted to only detect when the character REspawns, then you could just disregard the first time it fires.

game.Players.PlayerAdded, is the event that fires when a new player joins the server.