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

Why is ServerScriptService not showing in the explorer?

Asked by 3 years ago
Edited 3 years ago

Hi, I'm new to programming and I wanted to move my main script to ServerScriptService, but it's just not there... I tried using local ServerScriptService = game:GetService (ServerScriptService) in my main script, but obviously that only adds ServerScriptService while the game in running.. I also tried adding it via the "Service" feature in the model tab but it's also not there.. Thanks to anyone that helps!

3 answers

Log in to vote
0
Answered by 3 years ago

I don't know so much too but serverscriptservice is only visible for roblox studio because you can't edit serverscripts, if its false sorry.

0
It's not visible to the Client, because it is a member of the Server. When you run a Studio session, its contents will disappear as you're now hosting a Client-sided view. To see your Instances, change to a Server view in the Studio banner options. Ziffixture 6913 — 3y
Ad
Log in to vote
0
Answered by 3 years ago

It won't show to the client, so if you're testing, and viewing as the client, ServerScriptService will be invisible

Log in to vote
0
Answered by 3 years ago

Have you tried using the following?

local SSS = game:GetService("ServerScriptService")

Answer this question