Advertisement
InTesting

Text Effect: One by one letters

Apr 26th, 2019
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.16 KB | None | 0 0
  1. local Texts1 = {"Hello world!"}
  2. local delay = .1
  3.  
  4. function runthrutext(stg,txtprop)
  5.  for i=1,stg:len()do
  6.   txtprop = string.sub(stg,1,i)
  7.   wait(delay)
  8.  end
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement