Uploaded June 2017 | Updated September 2026, 3 hours ago
Script:
local CoolDown = 10
local CanHeal = true
function PartTouched(prt)
if prt.Parent:FindFirstChild("Humanoid") then
if CanHeal then
CanHeal = false
script.Parent.Color = Color3.fromRGB(255, 0, 0)
prt.Parent.Humanoid.Health = 100
wait(CoolDown)
CanHeal = true
script.Parent.Color = Color3.fromRGB(85, 170, 0)
end
end
end
script.Parent.touched:Connect(PartTouched)
Roblox Link:
roblox.com/games/881929845/Healing-Pad
Discord:
discord.gg/AHqE3eM
Script:
local CoolDown = 10
local CanHeal = true
function PartTouched(prt)
if prt.Parent:FindFirstChild("Humanoid") then
if CanHeal then
CanHeal = false
script.Parent.Color = Color3.fromRGB(255, 0, 0)
prt.Parent.Humanoid.Health = 100
wait(CoolDown)
CanHeal = true
script.Parent.Color = Color3.fromRGB(85, 170, 0)
end
end
end
script.Parent.touched:Connect(PartTouched)
Roblox Link:
roblox.com/games/881929845/Healing-Pad
Discord:
discord.gg/AHqE3eM










