Skip to main content

ValueBase

Abstract

Inherits from Instance

Base class of all value classes.


Summary

Events


Events

Changed

ValueBase.Changed()

Fires when the value of the ValueBase changes.

Example

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