My LocalScript in StarterGui errors "Stormy_Sky is not a valid member of ServerStorage" when it is. LocalScript:
01 | local Status = game.ReplicatedStorage:WaitForChild( "Status" ) |
02 | local clonedSky |
03 |
04 | if game.ServerStorage.Stormy_Sky then |
05 | print ( "Yes." ) |
06 | end |
07 | Status:GetPropertyChangedSignal( "Value" ):Connect( function () |
08 |
09 | if Status.Value = = "Game in progress." then |
10 | clonedSky = game.ServerStorage.Overcast:Clone() |
11 | print (clonedSky) |
12 | clonedSky.Parent = game.Lighting |
13 | clonedSky.Name = "Overcast" |
14 | game.Lighting.ClockTime = 1 |
15 | else |
Do I need to change it to a Script?
PS. It won't print "Yes."
ServerStorage is for the server only, so localscripts are not able to access it. Localscripts do, however, have access to replicated storage. If what you are doing needs a localscript to work, you should use a remote event.
edit: If it doesn't need to be a localscript then make it serverside and leave it as is.
Strange, I've been testing works yes ! try putting the script in ServeScriptService
PRINT: http://prntscr.com/p8pj9b
is it a local script?
when yes, local scripts can't acces serverstorage.
use a Script instead or put it in replicatedstorage