BodyColor (Property): Difference between revisions
From Goodblox Wiki
Jump to navigationJump to search
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
{{CatUp|Properties}} | {{CatUp|Properties}} | ||
<onlyinclude>{{Property | <onlyinclude>{{Property | ||
|name = | |name = (bodypart)Color | ||
|property = [[BrickColor]] ''Body part color'' | |property = [[BrickColor]] ''Body part color'' | ||
|description = Set the color of the body part, such as HeadColor. | |description = Set the color of the body part, such as HeadColor. | ||
|object = [[GBX.lua.BodyColors (Object)|BodyColors]] | |||
|object = [[BodyColors]] | |||
}}</onlyinclude> | }}</onlyinclude> | ||
Latest revision as of 23:22, 23 September 2021
Property | |
---|---|
Name | (bodypart)Color |
Property | BrickColor Body part color |
Description: | Set the color of the body part, such as HeadColor. |
In Object: | BodyColors |
Example
local colors = game.Players.LocalPlayer.Character:FindFirstChild("BodyColors") if (colors ~= nil) then colors.HeadColor = BrickColor.new(1) colors.LeftArmColor = BrickColor.new(1) colors.RightArmColor = BrickColor.new(1) end