Pretty much the title. Just trying to clone a tool and this is the error I get in the output.
00:01:59.034 - Backpack is not a valid member of Player
This is a LocalScript in the PlayerScripts.
local players = game:GetService("Players") local rep = game:GetService("ReplicatedStorage") local player = players.LocalPlayer local clonee = rep:WaitForChild("GCL") local back = player.Backpack clonee.OnClientEvent:Connect(function() local gc = rep.Guns("Scar-H"):Clone() gc.parent = back end)
I dont see how a script in the player can't see the Backpack? Any help, i'm missing something?