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

LoadCharacterAppearance help ?

Asked by 8 years ago

Please provide more explanation in your question. If you explain exactly what you are trying to accomplish, it will be much easier to answer your question correctly.

so im trying to make the LoadCharacterAppearance false but its not working ? any suggestions ?

LoadCharacterAppearance = false
0
What exactly are you trying to do? XAXA 1569 — 8y
0
Please provide more explanation in your question. If you explain exactly what you are trying to accomplish, it will be much easier to answer your question correctly. AmericanStripes 610 — 8y

1 answer

Log in to vote
0
Answered by 8 years ago

LoadCharacterAppearance is a property of StarterPlayer, that when true creates a character for the client in the way they've designed it on the ROBLOX website. When false, their character appears like a noob.

If you were perhaps mistaken and wanted to make it so that the character is not automatically loaded into the game, rather than have their unique appearance given to them, you need to set CharacterAutoloads to false. It's a property of Players.

You don't need to do these in a script, as they can be set in studio, just like toggling the Anchored or CanCollide values of a Part. Setting them in-game would mean that a player is already in, which makes that mostly useless. However, if you did want to:

game.Players.CharacterAutoLoads = false
game.StarterPlayer.LoadCharacterAppearance= false
Ad

Answer this question