#Make text pop letter by letter
3 messages · Page 1 of 1 (latest)
function WriteLetterByLetter(Word: string): ()
for i = 1, #Word do
print(Word:sub(1, i))
end
end
WriteLetterByLetter( "Hello" )
3 messages · Page 1 of 1 (latest)
Is there a way to make text appear letter by letter without having to script every single sentence letter by letter?
Example , can i avoid doing this :
Print("h")
Print("he")
Print("hel")
Print("hell")
Print("hello")```
function WriteLetterByLetter(Word: string): ()
for i = 1, #Word do
print(Word:sub(1, i))
end
end
WriteLetterByLetter( "Hello" )