📋Connections
Callbacks are called every time the (specified function) is ran in the program, kind of like a hook
List of available connections :
"OnInterfacePaint", "__OnInterfacePaint",
"OnWorldPaint", "__OnWorldPaint",
"OnInputUpdate", "__OnInputUpdate",
"OnObjectCreation" "__OnInterfacePaint"
Connecting a function :
Connect("OnInterfacePaint", function()
--Do something!
end)
Last updated