Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Default Clothing In-Game?

Asked by 9 years ago

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)

0
go into game settings > override default appearance HungryJaffer 1246 — 9y
0
that doesnt do anything lolsultilol 0 — 9y

1 answer

Log in to vote
1
Answered by 9 years ago

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!

01game.Workspace.ChildAdded:connect(function(plr)
02local name = plr.Name
03local playerinplayers = game.Players:FindFirstChild(plr.Name)
04if playerinplayers ~= nil then
05playerinplayers.CanLoadCharacterAppearance = false
06local bodycolors = Instance.new("BodyColors", plr)
07bodycolors.TorsoColor = BrickColor.new("Pastel brown") --Change if you want
08bodycolors.RightArmColor = BrickColor.new("Pastel brown") --Change if you want
09bodycolors.LeftArmColor = BrickColor.new("Pastel brown") --Change if you want
10bodycolors.RightLegColor = BrickColor.new("Pastel brown") --Change if you want
11bodycolors.LeftLegColor = BrickColor.new("Pastel brown") --Change if you want
12bodycolors.HeadColor = BrickColor.new("Pastel brown") --Change if you want
13 
14 
15end
16 
17end)
0
Thanks for the response! im 5 years late but xd lolsultilol 0 — 4y
Ad

Answer this question