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

How would I add multiple lines of text for my typewriter GUI affect?

Asked by 5 years ago
1local text1 = "This is the first text line"
2for i=1, #text1 do
3    script.Parent.Text = string.sub(text1, 1, i)
4    wait()
5 
6    end

Answer this question