Character (Property)
From Legacy Roblox Wiki
Character | |
Property | Model Character |
Description | A model containing the parts, joints, and scripts for character. |
Member of | Player |
Description
The Character property is initially nil. But is set when the Character is spawned.
Example:
function onPlayerAdded( player ) print( player.Character ) -- nil player.CharacterAdded:wait() print( player.Character ) -- set (.Name==player.Name) end Game.Players.PlayerAdded:connect( onPlayerAdded )