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

How do I change the body colors?

Asked by 11 years ago

This is what I have:

1while true do
2    game.Players.LocalPlayer.findFirstChild("Body Colors").HeadColor.Color = Color3.new("Bright blue")
3end

2 answers

Log in to vote
0
Answered by 11 years ago

Is that trying to change all players head color?

0
Yes DDDropTheBase 0 — 11y
Ad
Log in to vote
0
Answered by 11 years ago

Well, you would do something along the lines of this in a local script:

1local player = game.Players.LocalPlayer
2local char = player.Character
3 
4char.Head.BrickColor = BrickColor.new("COLOR HERE")

etc., etc.

Answer this question