#Need help with regen script

1 messages · Page 1 of 1 (latest)

jovial lichen
#

roblox already has one of these

#

start the game and look at Health script in your character

ebon bloom
#

You can bypass it by just adding a health script to your game

#

Its because youre running on robloxs default health regen

warped hare
ebon bloom
#

glad you got it

warped hare
#

how do i

#

fix

#

or like close this

ebon bloom
#

not sure lol

warped hare
# ebon bloom not sure lol

while ur here im making a new one which is if i touch this part i get double the jump power but im not sure why its not working

local JumpBoostCooldowns = {}
local COOLDOWN_TIME = 1

workspace.JumpBoostBlock.Touched:Connect(function(hit)
    local character = hit.Parent
    local humanoid = character:FindFirstChildOfClass("Humanoid")

    if humanoid and humanoid.JumpPower < 51 and not JumpBoostCooldowns[character] then
        JumpBoostCooldowns[character] = true 

        local originalJumpPower = humanoid.JumpPower
        humanoid.JumpPower = 100

        task.wait(10)

        humanoid.JumpPower = originalJumpPower
        JumpBoostCooldowns[character] = nil
    end
end)
jovial lichen
warped hare
jovial lichen
warped hare