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

Why isn't my GUI updating?

Asked by 9 years ago

@Marios2 gave me a sprinting script, which I slightly modified to this..

01local stamina = game.Workspace.Config:WaitForChild("Stamina")
02local maxStamina = game.Workspace.Config:WaitForChild("MaxStamina")
03local sprint = false
04 
05function onSprint(_,state)
06    if state == Enum.UserInputState.Begin then
07        if stamina.Value < 3 then return end
08        sprint = true
09        stamina.Value = stamina.Value - 3
10        game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 32
11        repeat
12            if stamina.Value > 0 then
13                stamina.Value = stamina.Value - 1
14            end
15            wait(0.15)
View all 30 lines...

My problem here is that a GUI I made (uses the same IntValues for stamina and maxStamina) doesn't update. I checked the IntValues in Studio and they do update

01local text = script.Parent:WaitForChild("HealthText")
02local frame = script.Parent:WaitForChild("ColorFrame")
03local config = game.Workspace:WaitForChild("Config")
04local stamina = config:WaitForChild("Stamina")
05local maxStamina = config:WaitForChild("MaxStamina")
06 
07text.Text = ""..stamina.value.." / "..maxStamina.value
08 
09stamina.Changed:connect(function()
10    frame:TweenSize(UDim2.new(stamina.value/maxStamina.value,0,1,0),"Out","Quad",0.5)
11    text.Text = ""..math.floor(stamina.value).." / "..maxStamina.value
12    if stamina.value == 0 then
13        frame:TweenSize(UDim2.new(0,0,1,0),"Out","Quad",0.5)
14        text.Text = "0 / "..maxStamina.value
15    end
16end)

Thanks in advance, jakei181

Answer this question