Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How would I make so the server constantly checks if my health is low?

Asked by
Hydrogyn 155
5 years ago
Edited 5 years ago

hi,

how would I make it so the server always checks whether the current_health value is below a certain percentage? Whenever I regenerate my health, the health bar does not update therefore it's still yellow instead of green! Plus sometimes <= or >= don't work.

01local health = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
02local bar = script.Parent.Parent
03local current_health = health.Health / 100
04local runService = game:GetService("RunService")
05 
06health.HealthChanged:connect(function()
07runService.Stepped:connect(function()
08bar.Size = UDim2.new((health.Health / 100) * 1,0,1,0)  
09 
10 if current_health >=.51 then
11    --green
12    bar.BackgroundColor3 = Color3.fromRGB(79, 222, 1)
13    bar.BorderColor3 = Color3.fromRGB(61, 172, 2)
14    print'green'
15 elseif current_health <=.5 then
View all 29 lines...

thanks, hydrogyn

0
is there a reason you divide the current_health by 100? MageMasterHD 261 — 5y

2 answers

Log in to vote
1
Answered by 5 years ago
Edited 5 years ago
01local health = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
02local bar = script.Parent.Parent
03local runService = game:GetService("RunService")
04 
05health.HealthChanged:connect(function(new_health)
06 
07    local current_health = new_health / 100
08    bar.Size = UDim2.new((new_health / 100) * 1,0,1,0)  
09 
10     if current_health >=.51 then
11        --green
12        bar.BackgroundColor3 = Color3.fromRGB(79, 222, 1)
13        bar.BorderColor3 = Color3.fromRGB(61, 172, 2)
14        print('green')
15     elseif current_health <=.5 and current_health >=.3 then
View all 27 lines...
0
thanks man! :) Hydrogyn 155 — 5y
Ad
Log in to vote
0
Answered by
Geobloxia 251 Moderation Voter
5 years ago

Do a while true do loop with a wait(0.1) inside the script

Answer this question