Is it possible that I can use a module script as a local script because I’m working on an NPC dialog system and trying to put it where I do not need to copy a script and redo most of the lines. So I was wondering if I could tween GUI or mess with GUI using a module script, so I won’t have to reuse some lines in other lines in the same local script.
1 Like
Yes, you can treat a module script like a localscript as long as the localscript requires it.
1 Like
So as long as the local script is requiring the module than I can treat it like a local script.
1 Like
Adding onto what @sjr04 said, this would mean that the behaviours of a LocalScript still stands in a ModuleScript that is required by a LocalScript, so design your ModuleScripts accordingly.
Yes.
1 Like
ok, I get it now thank y’all so much for helping me out!
1 Like