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.
1 | local Text = "Type in anything you want" |
2 |
3 | for i = 1 , #Text do |
4 | wait( 0.05 ) |
5 | script.Parent.Text = string.sub(Text, 1 , i) |
6 | end |