How can I fix this script?
I'm currently working on a tower in Roblox. I created a script for a kill part that drains health every half second. If you stop touching it, it heals.
My problem is that if you touch the part a few times, you no longer lose lives. How can I fix this?
can you send me the code here as an answer?
local NormalHealth = 100
local KillBrick = script.Parent
local function Kill(OnTouch)
local Humanoid = OnTouch.Parent:FindFirstChild(“Humanoid”)
repeat NormalHealth = NormalHealth – 3
Humanoid.Health = NormalHealth
task.wait(0.5) until
KillBrick.TouchEnded
end
local function Heal(Touchended)
local Humanoid = Touchended.Parent:FindFirstChild(“Humanoid”)
repeat
NormalHealth = NormalHealth + 0.7
Humanoid.Health = NormalHealth
task.wait(0.5)
until
NormalHealth = 100
end
KillBrick.Touched:Connect(Kill)
KillBrick.TouchEnded:Connect(Heal)
Try this:
local KillBrick = script.Parent
local debounce = {}
local function Kill(OnTouch)
local Humanoid = OnTouch.Parent:FindFirstChild(“Humanoid”)
if Humanoid then
— Check if the player already takes damage
if debounce[Humanoid] then return end
debounce[Humanoid] = true
while debounce[Humanoid] and Humanoid.Health > 0 do
Humanoid.Health = Humanoid.Health – 3
task.wait(0.5)
end
end
end
local function Heal(TouchEnded)
local Humanoid = TouchEnded.Parent:FindFirstChild(“Humanoid”)
if Humanoid then
debounce[Humanoid] = false — Stop the damage
while not debounce[Humanoid] and Humanoid.Health < 100 do
Humanoid.Health = math.min(Humanoid.Health + 0.7, 100)
task.wait(0.5)
end
end
end
KillBrick.Touched:Connect(Kill)
KillBrick.TouchEnded:Connect(Heal)
Yes
Did it work?
Thank you.