BoolValue

非推奨を表示

An instance which is used to hold a boolean value. The value can be used for many things, including to communicate between scripts.

概要

プロパティ

  • 並列読み取り

    Used to hold a boolean value.

イベント

プロパティ

Value

並列読み取り

Used to hold a boolean value.

方法

イベント

Changed

Fired whenever the BoolValue.Value of the BoolValue 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 BoolValue changes and to track the different values that it may change to.

For instance, this may be useful in games that rely on BoolValues to track game states and values, such as switch or enabled states.

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

パラメータ

value: bool

The new value after the change.


コードサンプル

BoolValue.Changed

local boolValue = script.Parent.BoolValue
local function printValue(value)
print(value)
end
boolValue.Changed:Connect(printValue)
boolValue.Value = true