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
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