Why Is My script not detecting a int value change?
01 | local health = script.Parent.Stats:WaitForChild( "Health" ) |
02 | local maxHealth = health.Parent:WaitForChild( "MaxHealth" ) |
03 | local text = script.Parent.BillboardGui:WaitForChild( "TextLabel" ) |
05 | health.Changed:Connect( function () |
06 | if health < = 0 then script.Parent:Destroy() |
08 | text.Text = health.Value .. " / " .. maxHealth.Value |
that is the script (ITS IN A SERVER SCRIPT)
https://i.imgur.com/aOzwgRy.png
^^^that is the part that its in this is in workspace
so when i change the int value the text does not change i tried using prints but they dont print anything