BindableEvent
Last updated
Last updated
BindableEvent can be used to implement communication between servers or between clients within the same environment.
BindableEvent is an object provided to handle events within the same environment, supporting one-way communication.
π‘ Tip. To clearly distinguish whether the communication is between Server to Server or Client to Client when using BindableEvent, it is recommended to use prefixes such as S2S_ or C2C_ in the name. This makes the eventβs role intuitive and improves code readability and maintainability.
When firing an event with BindableEvent, you can send arguments along with it. These arguments are passed when calling the Fire method and can be received by the callback function on the receiving side.
In Script1
In Script2
In LocalScript1
In LocalScript2