|
| 02 May 2014 09:41 PM |
Is there an easier way to make text go like this on a gui?
h he hel hell (woops) hello
instead of doing
script.parent.Text = "h" wait(0.5) script.parent.Text = "he" wait(0.5) script.parent.Text = "hel" wait(0.5) script.parent.Text = "hell" wait(0.5) script.parent.Text = "hello" |
|
|
| Report Abuse |
|
|
| 02 May 2014 09:45 PM |
for i=1,string.len('hello') do script.Parent.Text=string.sub('hello',1,i) wait(.5) end |
|
|
| Report Abuse |
|