Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --time to redo
- local counter = 0
- --[[
- output = {
- "Woah!", --characters
- "fffff", --text color
- "00000" --bg color
- }
- --]]
- local proceed = function(str, amnt)
- local output = {}
- for a = 1, (amnt or 1) do
- counter = counter + 1
- output[#output+1] = str:sub(counter,counter)
- end
- return table.unpack(output)
- end
Add Comment
Please, Sign In to add comment