local tool = Instance.new("Tool") local plrs = game:GetService("Players") local plr = plrs.LocalPlayer tool.Name = "proohio Tool" -- change name to change tool name -- made by proohio -- https://proohio.click/ -- very pro tool.RequiresHandle = false tool.Parent = plr.Backpack local m = plr:GetMouse() tool.Activated:Connect(function() if m.Target then m.Target:Destroy() end end)