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 8 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 — 8y
0
that doesnt do anything lolsultilol 0 — 8y

1 answer

Log in to vote
1
Answered by 8 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!

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)

0
Thanks for the response! im 5 years late but xd lolsultilol 0 — 3y
Ad

Answer this question