how to properly use bindable event
xxxxxxxxxx
a bindable event will only communicate with one side that means unlike
remote event you can only communicate SERVER -> SERVER or CLIENT -> CLIENT
with that said lets keep going:
local event =
event:Fire( )
event.OnFire:Connect(function( ) print( ) end)
best cases will be if you need to send signal or access another script without
using module scripts
but use bindable function if you want it to return something search bindablefunction for more infos