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

ClassicSword is not a valid member of ServerStorage?

Asked by 4 years ago
Edited by theking48989987 4 years ago
local players = {"TaTzuto0", "gamingmx2", "Utaeba12"}
local gear = game.ServerStorage.ClassicSword

game.Players.PlayerAdded:connect(function(plr)
    plr.CharacterAdded:connect(function(chr)
        for i = 1, #players do
            if players[i] == plr.Name then
                gear:Clone().Parent = plr:WaitForChild("Backpack")
            end
        end
    end)
end)

4 answers

Log in to vote
-1
Answered by 4 years ago

the sword in ServerStorage isn't loading before your script is running. Be sure to add :WaitForChild() for any objects when referencing them. Also, I would recommend using :GetService() as well. Here's your script but fixed:

local players = {"TaTzuto0", "gamingmx2", "Utaeba12"}
local ServerStorage = game:GetService('ServerStorage')
local gear = ServerStorage:WaitForChild('ClassicSword')

game.Players.PlayerAdded:connect(function(plr)
    plr.CharacterAdded:connect(function(chr)
        for i = 1, #players do
            if players[i] == plr.Name then
                gear:Clone().Parent = plr:WaitForChild("Backpack")
            end
        end
    end)
end)

0
why did i get a dislike? lol AbusedCocopuff4 105 — 4y
Ad
Log in to vote
1
Answered by 4 years ago

make sure the sword is in serverstorage make sure the sword is named right and there are no typos. make sure the script is >serversided. it must be serversided, as localscripts can't access serverstorage.

0
Good answer, poor format ecks-dee Psudar 882 — 4y
0
couldn't find bullet points EmbeddedHorror 299 — 4y
0
accept as answer if it worked EmbeddedHorror 299 — 4y
0
oml scripting helpers stop spamming EmbeddedHorror 299 — 4y
Log in to vote
-1
Answered by 4 years ago
Edited 4 years ago
  • Make sure the sword is in ServerStorage
  • Make sure the sword is named right and there aren't any typos.
  • Make sure its a Script not a LocalScript.

it must be ServerSided, as LocalScripts can't access ServerStorage.

0
wow.... EmbeddedHorror 299 — 4y
Log in to vote
-1
Answered by 4 years ago

I don't know. ServerStorage doesn't have the tool in it anymore

Tried it before, doesn't work

Answer this question