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 10 years ago

This is what I have:

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

2 answers

Log in to vote
0
Answered by 10 years ago

Is that trying to change all players head color?

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

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

local player = game.Players.LocalPlayer
local char = player.Character

char.Head.BrickColor = BrickColor.new("COLOR HERE")

etc., etc.

Answer this question