Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do you change the character's appearance?

Asked by 8 years ago

I want to be able to change the character's appearance from when they spawn into the game. How would you go about doing it?

1 answer

Log in to vote
0
Answered by
Sxerks3 65
8 years ago

You'll want to access the player itself, and find its name. Then after that, you'll need to set the .CanLoadCharacterAppearance to false, as it's set to true as default. ".CanLoadCharacterAppearance" is a boolean that determines whether or not your character's appearance loads when the game finishes loading. This code helps to override your character's appearance, in a normal script:

game.Players.PlayerAdded:connect(function(player)
    local appearanceOverride = game.Players:FindFirstChild(player.Name)
    appearanceOverride.CanLoadCharacterAppearance = false
end)
1
Thanks, it worked. And wow, that was fast. GreatAlMightyOne 5 — 8y
Ad

Answer this question