local Players = game:GetService("Players") local Claim = game:GetService("ReplicatedStorage"):WaitForChild("ClaimGearEvent") local player = Players.LocalPlayer local backpack = player:WaitForChild("Backpack") -- I used 800 items but u can put the amount as u want for i = 1, 800 do Claim:FireServer() for _, tool in ipairs(backpack:GetChildren()) do if tool:IsA("Tool") then tool.Parent = workspace tool.Handle.CFrame = player.Character.HumanoidRootPart.CFrame end end task.wait(0.05) end