BrickColor (Property)

From ROBLOX Wiki

Jump to: navigation, search
Image:ArrowSquare.png Up one category:
Properties
Property
NameBrickColor
PropertyBrickColor BrickColor
Description: Stores the color of the object
In Object:Flagstand, Part, Seat, SpawnLocation

Example

 
--[[ NOTE:  To compare the property BrickColor with the name of a color, 
you need to use tostring() to convert BrickColor to a string.  Even though 
print(otherPart.Parent.Torso.BrickColor) does return the name of the color, 
you cannot use it by itself in a comparison. ]]--

function onTouched(otherPart)
    print(otherPart.Parent.Torso.BrickColor) -- outputs the name of the color 
    if otherPart.Parent.Torso.BrickColor == "Bright red" then -- This will not match
        print("Never gets executed")
    elseif tostring(otherPart.Parent.Torso.BrickColor) == "Bright red" then -- This will match
        print("Match occurred")
    end
end 

See Also

Color Reference

Personal tools