|
| 05 Aug 2014 11:23 AM |
How do I make text like this
D Dr Drs Drsl Drsli Drslic Drslice
I knew how to do it but I forgot, how to I make a script that prints something like that but easier |
|
|
| Report Abuse |
|
|
|
| 05 Aug 2014 11:27 AM |
local message = 'Drslice';
for i = 1, #message do print(message:sub(1, i)); end |
|
|
| Report Abuse |
|
|
smiley599
|
  |
| Joined: 23 Jan 2010 |
| Total Posts: 21869 |
|
|
| 05 Aug 2014 11:27 AM |
@ver can you do ~ on a string? i thought it was string.len(message) |
|
|
| Report Abuse |
|
|
|
| 05 Aug 2014 11:29 AM |
you can do #message or string.len(message), your choice
|
|
|
| Report Abuse |
|
|