Why isn't the player's Character Appearance removed when played online?
This is driving me crazy. I have a simple script in a localscript in StarterCharacterScripts:
1 | local plr = game.Players.LocalPlayer |
3 | plr.CanLoadCharacterAppearance = false |
4 | plr:ClearCharacterAppearance() |
When I test it offline, it works. When I join the game online, the character's appearance STILL loads for some reason! Although the appearance goes away when the character resets, it's still annoying and it breaks the feel of my game.