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

How to set players can load appearance to false?

Asked by 8 years ago

I want to know how to do this using a script. Here's what I tried,

game.Players.PlayerAdded:connect(function(plr)
    plr.CanLoadCharacterAppearance = false
end)

No errors this just doesn't work. Also, I would really like a link to a video or something explaining how to make custom character models when a player enters the game. If you could help me with this that would be great. I saw something explaining this but can't find it now sadly ); Thanks for reading.

1 answer

Log in to vote
1
Answered by
drahsid5 250 Moderation Voter
8 years ago

CanLoadCharacterAppearance is enabled via game settings, an alternative way to clear the character would be:

game.Players.PlayerAdded:connect(function(plr)
    plr.CharacterAdded:connect(function(c)
        plr:ClearCharacterAppearance()
    end)
end)
0
Thanks m8 User#11440 120 — 8y
0
No problem. drahsid5 250 — 8y
Ad

Answer this question