Currently I've been working on a Tool saving system. That aside I understand that you can index function in a module script, but would there be anyway to communicate from the module script to tell a localscript/script to do something
Script(Signals ModScript)-->ModuleScript(Proceeds the function)--(Somehow Signals another script/localscript)-->Localscript/script(Runs desired code)
Yea, you can do this BindableEvents
and RemoteEvents
. You would use a remote when communicating server to client or visa versa and you would use bindables when you're communicating between server scripts or when you're communicating between local scripts.