Advertisement
Primal_Dev

TypeScript

Apr 13th, 2022
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. local function AnimateText(Text)
  2.     for i = 1, #Text, 1 do
  3.         script.Parent.Writing.Text = string.sub(Text, 1, i)
  4.         wait(0.03)
  5.     end
  6. end
  7.  
  8. while true do
  9.     AnimateText("👍 Make Sure To Leave A Like! 👍 ")
  10.     wait(5)
  11.     AnimateText("✨ Subscribe To Primal Dev! ✨ ")
  12.     wait(5)
  13.     AnimateText("🛒 Check Out The Shop! 🛒 ")
  14.     wait(5)
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement