I was wondering (if possible) how to print letter-by-letter from a string (or number by number in a numValue). I have tried many things, but they don’t do what I’m trying to achieve. I have tried the
for i=1,str,1 do
end
Method, But that doesn’t work. It prints it like this: h,he,hel,hell,hello.
What I’m trying to achieve is this: h,e,l,l,o
I’m pretty new to dealing with strings, so I don’t know where to start.