local tool = script.Parent local cool = true tool.Activated:Connect(function() if cool then cool = false local humanoid = tool.Parent:FindFirstChild("Humanoid") humanoid.Health = humanoid.Health + 100 wait(8) cool = true end end)