Quick question about how to do an infinite loop?
Asked by
6 years ago Edited 6 years ago
So I have am making an Intermission bar in-game, and basically there's a stringVal in replicatedStorage and there's a TextLabel in a ScreenGUI that will update it to the current value of the stringVal. So what i'm confused about, is the script to update the value looks like this:
1 | local status = game.ReplicatedStorage:WaitForChild( "Status" ) |
3 | status.Value = "Intermission (1 Minute)" |
5 | status.Value = "Round In Progress (3 Minutes)" |
But whenever the "Round In Progress" 3 minutes run out, it stays at Round in progress. I have tried making a value and setting it to "true" and adding this line of code
1 | local status = game.ReplicatedStorage:WaitForChild( "Status" ) |
3 | while game.ReplicatedStorage.Looper.Value = = "true" do |
4 | status.Value = "Intermission (1 Minute)" |
6 | status.Value = "Round In Progress (3 Minutes)" |
but that doesn't work. Can someone please explain how to make the top script repeat over and over