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:
1 | local healthValue = 100 |
2 |
3 | while healthValue > 0 do |
4 | healthValue = healthValue - 5 |
5 | game.Players.LocalPlayer.Character.Humanoid.Health = healthValue |
6 | wait( 5 ) |
7 | end |
health reading script:
1 | local textValue = script.Parent |
2 | local healthValue = game.Players.LocalPlayer.Character.Humanoid |
3 | local value = 0 |
4 | while true do |
5 | value = healthValue.Health |
6 | textValue.Text = (value) |
7 | wait ( 1 ) |
8 | end |
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:
1 | local Player = Game.Players.LocalPlayer |
2 | if not Player.Character then Player.CharacterAdded:wait() end |
3 |
4 | Player.Character.Humanoid.HealthChanged:connect( function (hp) |
5 | script.Parent.Text = hp |
6 | end |