Why isn't my GUI updating?
@Marios2 gave me a sprinting script, which I slightly modified to this..
01 | local stamina = game.Workspace.Config:WaitForChild( "Stamina" ) |
02 | local maxStamina = game.Workspace.Config:WaitForChild( "MaxStamina" ) |
05 | function onSprint(_,state) |
06 | if state = = Enum.UserInputState.Begin then |
07 | if stamina.Value < 3 then return end |
09 | stamina.Value = stamina.Value - 3 |
10 | game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 32 |
12 | if stamina.Value > 0 then |
13 | stamina.Value = stamina.Value - 1 |
16 | until (sprint = = false or stamina.Value = = 0 ) |
19 | game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16 |
22 | if stamina.Value < maxStamina.Value then |
23 | stamina.Value = stamina.Value + 1 |
25 | until (sprint = = true or stamina.Value > = maxStamina.Value) |
26 | if stamina.Value > maxStamina.Value then stamina.Value = maxStamina.Value end |
30 | game:GetService( "ContextActionService" ):BindAction( "Sprint" , onSprint, false , Enum.KeyCode.LeftShift) |
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
01 | local text = script.Parent:WaitForChild( "HealthText" ) |
02 | local frame = script.Parent:WaitForChild( "ColorFrame" ) |
03 | local config = game.Workspace:WaitForChild( "Config" ) |
04 | local stamina = config:WaitForChild( "Stamina" ) |
05 | local maxStamina = config:WaitForChild( "MaxStamina" ) |
07 | text.Text = "" ..stamina.value.. " / " ..maxStamina.value |
09 | stamina.Changed:connect( function () |
10 | frame:TweenSize(UDim 2. 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(UDim 2. new( 0 , 0 , 1 , 0 ), "Out" , "Quad" , 0.5 ) |
14 | text.Text = "0 / " ..maxStamina.value |
Thanks in advance, jakei181