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

Why does a backpack in ServerStorage not work?

Asked by 6 years ago
Edited 6 years ago

So, I made a backpack with a weld and all that but the only problem is, It doesn't show up. I named the accessory "Backpack" and put it in ServerStorage with a script.

game.Players.PlayerAdded:Connect(function(Player)
    Player.CharacterAdded:Connect(function(Character)
        local Backpack = script.Parent.Backpack:Clone()
        Backpack.Parent = Character
    end)
end)

I don't know if the script is outdated as I always used that for other projects I tried to make.

Oh and the script above is the one I'm having trouble with.

Also I'm using R6

0
You should use http://wiki.roblox.com/index.php?title=API:Class/Humanoid/AddAccessory to add an accessory to a players character User#5423 17 — 6y
0
That didn't work :< User#21406 0 — 6y

Answer this question