while true do Wait (7) Script.Parent.TextLabel.Text.Name = "Round 1" Wait (2) Script.Parent.TextLabel.Text.Name = "" Wait (14) End (Keeps repeating and adding increase number) E.g. Script.Parent.TextLabel.Text.Name = "Round <What I want to increase>"
Hello scripters, is there a way I can increase the number inside a string while keeping some text the same?
Thank you :)
num = 0 while true do Wait (7) Script.Parent.TextLabel.Text.Name = "Round "..num Wait (2) Script.Parent.TextLabel.Text.Name = "" Wait (14) num = num+1 End
.. work as a spacer sorta so you can add more then 1 string type.