Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

What's the difference between ServerScriptService and Workspace?

Asked by 7 years ago

Obviously, the workspace can contain physical parts and so on but, does placing a script in ServerScriptService rather than putting it in the Workspace change anything about the script or how it would work?

1 answer

Log in to vote
3
Answered by 7 years ago
Edited 7 years ago

Yes it does, depending on the contents inside the script, and what script it is

ReplicatedStorage: Used to put things into it to be both accessible to client and server. It differs from lighting since lighting has properties and has other ways to be used besides shoving stuff into it.

ScriptServerService: Runs scripts like they were in the workspace. It appears empty to the client.

ServerStorage: Same as Replicated storage, but only for the server. It appears empty to the client.

But, most of the time it wouldnt matter whether you put it in Workspace or in ServerScriptService.

1
If this was helpful please accept this answer. If it was not just wait for others to answer Gamersofthegodss 11 — 7y
Ad

Answer this question