How to Use a Roblox Bindable Event Script Properly
If you're building a game and need two scripts to communicate on the same side, a roblox bindable event script is one of those tools that makes everything a whole lot easier. It's a bit of a hidden gem for beginners because everyone usually jumps straight to RemoteEvents, but if you're trying to get a Server script to talk to another Server script, or a LocalScript to talk to another LocalScript, you really don't want to be using the network for that. It's overkill and honestly just messy. ...