Like lets say I want to remove everything they have on and make them look nooby (Because i am making a game) How do i do that
game.workspace.(namehere).ShirtTemplate:Destroy()
i think this'd work but i am not sure
Put a LocalScript inside StarterPlayer and in the StarterCharacterScripts. Put the following lines inside it:
local c = script.Parent:WaitForChild('Body Colors') c.HeadColor = BrickColor.new('Bright yellow') c.LeftArmColor = BrickColor.new('Bright yellow') c.LeftLegColor = BrickColor.new('Shamrock') c.RightArmColor = BrickColor.new('Bright yellow') c.RightLegColor = BrickColor.new('Shamrock') c.TorsoColor = BrickColor.new('Steel blue')
And inside StarterPlayer, go down to the bottom of the properties, and select LoadCharacterAppearance. Make sure it is set to false (not enabled). And there you go. All players look like noobs.