BrickColorValue

Mostrar obsoleto

An instance which is used to store a BrickColor value.

Resumo

Propriedades

Eventos

Propriedades

ler parallel

Used to hold a BrickColor value.

Métodos

Eventos

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.

Parâmetros

value: BrickColor

The new value after the change.


Amostras de código

BrickColorValue.Changed

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