I have 2 scripts, which I want connect using Bindable event
. But now I have question - does Bindable event have Ping
, like Remote events
?
BindableEvents do not have ping.
There is also no reason for them to have ping because the event does not travel over the network.
When you :Fire() the event, any function that was connected to it will be run immediately.
Note that BindableEvents will copy tables. If you Fire a BindableEvent with some empty table, then compare the received table to the original table, they aren’t the same table.
This is why people often write their own event listeners in Lua.
1 Like
No but they do have a delay