e.g "Hello!" > {"H", "e", "l", "l", "o", "!"}. I will appreciate if someone found an solution, i don't put my script cause i just ask how to split texts.
local UnTabledText = "STRING HERE" local TableName = {} local LengthOfText = #UnTabledText for i = 1, LengthOfText do local SubString = string.sub(UnTabledText, i, i) table.insert(TableName, SubString) end -- for i, v in pairs(TableName) do -- print(v) -- end -- Thisis just to print the Table, not required.
Explanation: Replace STRING HERE with any string you want/any string variable. If you got more questions, ask, please.