Marcsello Posted April 28 Share Posted April 28 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! Link to comment
Spakye Posted April 29 Share Posted April 29 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. 1 Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now