CharacterAdded (Event)
From Legacy Roblox Wiki
|
Description
The character will be a model with Humanoid, all body parts, scripts, and joints. The model will be completely loaded when triggered by game.
Usage
Example
function onRespawn(character) -- do something with character/backpack/etc. end function onPlayerEntered(newPlayer) newPlayer.CharacterAdded:connect(onRespawn) end game.Players.PlayerAdded:connect(onPlayerEntered)