BrickColorValue

非推奨を表示

An instance which is used to store a BrickColor value.

プロパティ

並列読み取り

Used to hold a BrickColor value.

方法

イベント

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.

パラメータ

value: BrickColor

The new value after the change.


コードサンプル

BrickColorValue.Changed

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