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

Scripts are not reading health right?

Asked by 10 years ago

I have turned the health coregui off and am trying to make my own gui, but when I run it it displays a bunch of random numbers.

health lower script:

1local healthValue = 100
2 
3while healthValue > 0 do
4    healthValue = healthValue - 5
5game.Players.LocalPlayer.Character.Humanoid.Health = healthValue
6wait(5)
7end

health reading script:

1local textValue = script.Parent
2local healthValue = game.Players.LocalPlayer.Character.Humanoid
3local value = 0
4while true do
5    value = healthValue.Health
6textValue.Text = (value)   
7    wait (1)
8end

1 answer

Log in to vote
2
Answered by
adark 5487 Badge of Merit Moderation Voter Community Moderator
10 years ago

I'm not sure why that's displaying random numbers, but your health reading script is woefully inefficient.

Try this code instead, using the HealthChanged Event of Humanoid. I've also included a safeguards against stuff loading slowly the first time the Character spawns in:

1local Player = Game.Players.LocalPlayer
2if not Player.Character then Player.CharacterAdded:wait() end
3 
4Player.Character.Humanoid.HealthChanged:connect(function(hp)
5    script.Parent.Text = hp
6end
2
I would also make sure you round up/down the health value to make it an integer, so that when your health is regenerating, it doesn't show it as a long decimal number. Spongocardo 1991 — 10y
Ad

Answer this question