Is there any event that runs when an item is added to the backpack?
Game.Players.PlayerAdded:connect(function(Player) Player:WaitForChild("Backpack").ChildAdded:connect(function(Tool) --Execute more code here end) end)
The .ChildAdded:connect() would be useful here.