Stopped permanently?
If you want it to be stopped permanently you could try something like this:
local char = game:GetService("Players").LocalPlayer.Character
wait(20)
local tool = ... -- Set this
local ToolActivated = false
tool.Activated:Once(function()
ToolActivated = true
end)
for i = 100, 0, -1 do
if ToolActivated then break end
char.Humanoid.Health = i
wait(3)
end
local char = game:GetService("Players").LocalPlayer.Character
local ToolActivated = false
char.ChildAdded:Connect(function(child)
if child.Name == "Pillbottle" and child:IsA("Tool") then
child.Activated:Once(function()
ToolActivated = true
end)
end
end
for i = 100, 0, -1 do
if ToolActivated then break end
char.Humanoid.Health = i
wait(3)
end