How would I make so the server constantly checks if my health is low?
Asked by
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.
01 | local health = game.Players.LocalPlayer.Character:WaitForChild( "Humanoid" ) |
02 | local bar = script.Parent.Parent |
03 | local current_health = health.Health / 100 |
04 | local runService = game:GetService( "RunService" ) |
06 | health.HealthChanged:connect( function () |
07 | runService.Stepped:connect( function () |
08 | bar.Size = UDim 2. new((health.Health / 100 ) * 1 , 0 , 1 , 0 ) |
10 | if current_health > = . 51 then |
12 | bar.BackgroundColor 3 = Color 3. fromRGB( 79 , 222 , 1 ) |
13 | bar.BorderColor 3 = Color 3. fromRGB( 61 , 172 , 2 ) |
15 | elseif current_health < = . 5 then |
17 | bar.BackgroundColor 3 = Color 3. fromRGB( 222 , 171 , 42 ) |
18 | bar.BorderColor 3 = Color 3. fromRGB( 173 , 133 , 32 ) |
20 | elseif current_health < = . 3 then |
22 | bar.BackgroundColor 3 = Color 3. fromRGB( 222 , 75 , 55 ) |
23 | bar.BorderColor 3 = Color 3. fromRGB( 166 , 55 , 41 ) |
thanks,
hydrogyn