I have a variable that defines the server storage and then a line of code that looks for a folder in that server storage. The error is: Tools is not a valid member of ServerStorage "ServerStorage" When I do have a folder called "Tools"
local ServerStor = game:GetService("ServerStorage") ServerStor.Tools:WaitForChild(player.Pickaxe.Value)
(op told me it was LocalScript
in community chat)
You can't access ServerStorage
with a LocalScript
. That's why it's called ServerStorage
. If you want to access it with a LocalScript
, use ReplicatedStorage