BrickColorValue

Show Deprecated

An instance which is used to store a BrickColor value.

Summary

Properties

Events

Properties

read parallel

Used to hold a BrickColor value.

Methods

Events

Changed

Fired whenever the BrickColorValue.Value of the BrickColorValue is changed. It will run with the new value being stored in the argument object, instead of a string representing the property being changed.

This event, like other changed events, can be used to track when an BrickColorValue changes and to track the different values that it may change to.

Equivalent changed events exist for similar objects, such as NumberValue and StringValue, depending on what object type best suits the need.

Parameters

value: BrickColor

The new value after the change.


Code Samples

BrickColorValue.Changed

local brickColorValue = script.Parent.BrickColorValue
brickColorValue.Changed:Connect(print)
brickColorValue.Value = BrickColor.new("Bright red")