This is an awesome text.And I want it to change into:
Spoiler
Thanks in advance.
Edited by LeDark Lua, 30 July 2015 - 11:50 AM.
Posted 30 July 2015 - 11:46 AM
This is an awesome text.And I want it to change into:
Edited by LeDark Lua, 30 July 2015 - 11:50 AM.
Posted 30 July 2015 - 12:08 PM
local str = "Test"
local chars = {}
for i=1,#str do
chars[#chars + 1] = str:sub(i, i)
end
return chars
return table.concat(chars)
Posted 30 July 2015 - 12:10 PM
0 members, 1 guests, 0 anonymous users