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?

(1 votes)
Loading...

Similar Posts

Subscribe
Notify of
6 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Jannixk14
6 months ago

can you send me the code here as an answer?

Jannixk14
6 months ago
Reply to  Tadov

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)

Jannixk14
6 months ago

Did it work?