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

How to make all players have a certain look?

Asked by 10 years ago

What would i do, to make it where when all players have a certain look.

Like, where all people are just ROBLOXian 1.0's with bodycolors, no personalization to them, so there is no difference.

An example would be in murder mystery, all the players look the same in the lobby.

How would i do that?

0
404 question not found Fr0stPh3onix 79 — 4y

1 answer

Log in to vote
3
Answered by
User#2 0
10 years ago

Well, first you want to remove the shirt and pants the character is wearing.

if char:FindFIrstChild("Shirt") then
    char.Shirt:Destroy()
end
if char:FindFIrstChild("Pants") then
    char.Pants:Destroy()
end

After that, just set the properties of the BodyColor to what you want it to be.

Ad

Answer this question