so im trying to make the LoadCharacterAppearance false but its not working ? any suggestions ?
LoadCharacterAppearance = false
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