I’m trying to get information from a Script
(will be called ScriptOut) outside of an Actor
to a Script
(will be called ScriptIn) inside one (both scripts have the Server
RunContext
).
So far, I’ve tried:
- BindableEvent
s, which didn’t work because they serialize tables
- ModuleScript
s, which didn’t work because the ScriptIn didn’t “recieve” the changes the ScriptOut made to the variables the module contained (for example Module.Variable).
Any help is appreciated!