Hello, I Don't Know How to Script, and i need some help with my map :
1- How to Remove Players Clothing In-Game? (Shirt,Pants and Hats..) 2- How to Set Default In-Game Player Colors? (Skin Colors)
I'm guessing this is what you mean. Just change the BrickColors to anything you like.
Btw, this is a script, not a local one. And have it in the workspace!
game.Workspace.ChildAdded:connect(function(plr) local name = plr.Name local playerinplayers = game.Players:FindFirstChild(plr.Name) if playerinplayers ~= nil then playerinplayers.CanLoadCharacterAppearance = false local bodycolors = Instance.new("BodyColors", plr) bodycolors.TorsoColor = BrickColor.new("Pastel brown") --Change if you want bodycolors.RightArmColor = BrickColor.new("Pastel brown") --Change if you want bodycolors.LeftArmColor = BrickColor.new("Pastel brown") --Change if you want bodycolors.RightLegColor = BrickColor.new("Pastel brown") --Change if you want bodycolors.LeftLegColor = BrickColor.new("Pastel brown") --Change if you want bodycolors.HeadColor = BrickColor.new("Pastel brown") --Change if you want end end)