local player = game.Players:FindFirstChild("USER") -- Replace with your username local gun = game.ServerStorage:FindFirstChild("Anti-Parasite Revolver") if player and gun then local clone = gun:Clone() clone.Parent = player:FindFirstChild("Backpack") end