BodyColor (Property)

From Legacy Roblox Wiki
Jump to navigationJump to search
BodyColor
Property BrickColor body part color
Description Set the color of the body part. There is HeadColor, LeftArmColor, LeftLegColor, RightArmColor, RightLegColor, and TorsoColor.
Member of BodyColors


Example
Within a LocalScript.
 
local colors = game.Players.LocalPlayer.Character.BodyColors
if colors then
colors.HeadColor = BrickColor.new(1)
colors.LeftArmColor = BrickColor.new(1)
colors.RightArmColor = BrickColor.new(1)
end