ServerScriptService
ServerScriptService : Instance
Overview
ServerScriptService is a storage container dedicated to server-side Script and ModuleScript Objects. Because the Objects included in this container are not replicated to the client, it's ideal for securely isolating and managing sensitive server-side logic.
When you need to insert scripts into Objects like monsters or items during gameplay, it's best to store those Objects, along with their scripts, in ServerStorage. While ServerStorage is also a server-only container, scripts placed inside it do not run automatically.
For shared assets or ModuleScripts that need to be accessed by both the server and client, use ReplicatedStorage instead. Since this storage is accessible from both sides, it's ideal for data sharing and module reuse.
Properties
Methods
Events
Last updated