I was trying to find out what’s the best form of making a communication between local scripts. Therefore, there are some questions I need to get the answer first:
- Which is faster? Bindable Events OR assigning a Value Object and listening to its Changed event?
- I know variables in ModuleScripts are faster. I can also attach “Changed” listener to variable with libraries like this one: PropertyModule (uses metatables). But metatables only support one listener for each variable. Can I work around this issue?