TriggerServerCallback
Bridge.TriggerServerCallback()
Arguments
name (string): The name of the server callback to trigger.
cb (function): The callback function to execute with the result.
...: Additional arguments to pass to the server callback.
Example Usage
Bridge.TriggerServerCallback('myServerCallback', function(result)
print("Server Callback Result: " .. result)
end, arg1, arg2)
Last updated
Was this helpful?