Advertisement
StoryProductions

Story Game Text [Roblox]

Aug 7th, 2020
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. local textLabel = script.Parent:WaitForChild("Main"):WaitForChild("Text")
  2.  
  3. wait(5)
  4.  
  5. local function typewrite(object,text,length)
  6. for i = 1,#text,1 do
  7. object.Text = string.sub(text,1,i)
  8. wait(length)
  9. end
  10. end
  11.  
  12. typewrite(textLabel,"",0.05)
  13. typewrite(textLabel,"",0.05)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement