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
local text1 = "This is the first text line"
for i=1, #text1 do
    script.Parent.Text = string.sub(text1, 1, i)
    wait()

    end


Answer this question