Help with ModuleScript to LocalScript

So I’ve made a ModuleScript that holds all Asset/Group IDs for ease of access incase I need to change them. They’ve all been working perfectly in my other scripts until I used this in a LocalScript in StarterGui. The script wouldn’t work and I got the warning " ModuleScript is not a valid member of ServerScriptService “ServerScriptService” ". I am still fairly new to scripting so I apologize if this sounds dumb lol, but may I please have some help resolving this?

ServerScriptService cannot be accessed by clients. Move the ModuleScript to ReplicatedStorage.

Ohh okay, thank you for the help!