Jump to content

Health Check Script


Marcsello

Recommended Posts

Posted

Hello, I'm trying to make a script which checks your health and if it equals to zero, it would write your health in the chat.

Code:

Code:

function health()
    if getElementHealth(localPlayer) == 0 then
        outputChatBox(getElementHealth(localPlayer))
    else
        outputChatBox("Your Health is above 0.")
    end
end

But it doesnt really do anything.

I have already tried adding the next line under the last end:
health()

But sadly, didn't work.
Thank you if you help me!

Posted

Hello, you need an event to trigger your function. You could use onPlayerDamage if your script is server side, or onClientPlayerDamage if its client side.

  • Like 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...