Is it possible to use ModuleScripts like LocalScripts? Thanks for your patience, I’m still learning as much as I can abt them.
1 Like
Im pretty sure if you call a modulescript on a localscript it runs locally
1 Like
I shall give this an attempt. Thank you.
Storing a ModuleScript
in ReplicatedStorage
will make it available for both client and server.
Meanwhile, storing it in ServerScriptService
would make it only available for the server. If the client tries to require()
it, it will error.