Basically, my tool isn't equipping right and i made a script for it.
script.Parent.Parent.Equipped:Connect(function() local player = game.Players.LocalPlayer local tool = script.Parent.Parent:Clone() tool.Parent = player.Backpack end)
No errors. I checked the backpack and saw nothing was there. Am I doing something wrong?
May or may not fix issues for you:
script.Parent.Parent.Equipped:Connect(function() 2 local player = game.Players.LocalPlayer 3 local tool = script.Parent.Parent 4 tool:Clone().Parent = player.Backpack 5 end)