Posted 17 September 2015 - 02:28 PM
My problem is this:
This will cut out 1, 3, … characters and I don't know why.
I want to get this effect:
while x+(self.x-1) < self.x do
if #text<1 then
break
else
startCount=startCount+1
x=x+1
text=text:sub(startCount, #text)
end
end
This will cut out 1, 3, … characters and I don't know why.
I want to get this effect:
Text
ext
xt
t
Edited on 17 September 2015 - 12:33 PM