📋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"

Connections with __ before their name are prioritized and ran first!

Connecting a function :

Connect("OnInterfacePaint", function()
    --Do something!
end)

Last updated