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

How to make the text look as though someone is typing it?

Asked by 4 years ago

Hello! I know that strings are arrays/tables. But, how would you create something that will look like someone is typing out the text on a text label? Thanks in Advance

0
Its called a type - writer. JesseSong 3916 — 4y

1 answer

Log in to vote
1
Answered by
SnowieDev 171
4 years ago

Place this inside your textlabel or object that has the member of text.

local Text = "Type in anything you want"

for i = 1, #Text do
    wait(0.05)
    script.Parent.Text = string.sub(Text, 1, i)
end
0
Thanks! alexfinger21 341 — 4y
Ad

Answer this question