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!
01 | game.Workspace.ChildAdded:connect( function (plr) |
02 | local name = plr.Name |
03 | local playerinplayers = game.Players:FindFirstChild(plr.Name) |
04 | if playerinplayers ~ = nil then |
05 | playerinplayers.CanLoadCharacterAppearance = false |
06 | local bodycolors = Instance.new( "BodyColors" , plr) |
07 | bodycolors.TorsoColor = BrickColor.new( "Pastel brown" ) --Change if you want |
08 | bodycolors.RightArmColor = BrickColor.new( "Pastel brown" ) --Change if you want |
09 | bodycolors.LeftArmColor = BrickColor.new( "Pastel brown" ) --Change if you want |
10 | bodycolors.RightLegColor = BrickColor.new( "Pastel brown" ) --Change if you want |
11 | bodycolors.LeftLegColor = BrickColor.new( "Pastel brown" ) --Change if you want |
12 | bodycolors.HeadColor = BrickColor.new( "Pastel brown" ) --Change if you want |
13 |
14 |
15 | end |
16 |
17 | end ) |