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

Help With LocalScript (CanLoadCharacterAppearance)?

Asked by
iLegitus 130
10 years ago

I tried

1Player = game.Players.LocalPlayer
2Player.CanLoadCharacterAppearance = false

But it doesnt work,It loads with the character appearance,Please help?

1 answer

Log in to vote
0
Answered by 10 years ago

You have it scripted correctly. Is the localscript inside the StarterGui? You should also know that you must respawn the player for the changes to take in effect. So try:

1Player = game.Players.LocalPlayer
2Player.CanLoadCharacterAppearance = false
3Player:LoadCharacter()
Ad

Answer this question