Ideal place for ModuleScripts?

Hi, I’m the build guy, and I’ve been learning how to use ModuleScripts, and I am wondering, what’s the ideal storage place for them? I’m unsure where to put them, most likely not workspace, maybe ReplicatedStorage, but I am unsure. Any help?

ReplicatedStorage is where most of my modules are stored. But for modules used by only one script, you can just make the module a child of the corresponding script.

You can also store modules only used by the Server in ServerStorage.

1 Like

If you want to use the module through a local script, you can store it in ReplicatedStorage where the client can access it. Otherwise you can do ServerStorage if you only need the module to be accessed by the server.

1 Like