Skip to content

ValueBase

Not to be confused with:

Base class of all value classes.

Abstract Object

This object exists only to serve as a foundation for other objects. It cannot be accessed directly, but its properties are documented below.

Additionally, it cannot be created in the creator menu or with Instance.New().

Inherits Instance

Events

Changed

Fires when the value of the ValueBase changes.

Example

boolValue.Changed:Connect(function()
    print("My new value is " .. boolValue.Value)
end)