Advertisement
SebTDZ

Untitled

Apr 22nd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- Objects     
  2. local plr = owner
  3. local Screen = Instance.new("ScreenGui")
  4. local Title = Instance.new("TextLabel")
  5. -- Properties
  6. Screen.Name = "Screen"
  7. Screen.Parent = plr.PlayerGui
  8. Screen.ResetOnSpawn = false
  9.  
  10. Title.Parent = Screen
  11. Title.Text = ""
  12. Title.Font = Enum.Font.SciFi
  13. Title.TextSize = 35
  14. Title.BackgroundColor3 = Color3.new(0, 0, 200)
  15. Title.BackgroundTransparency = 0
  16. Title.Position = UDim2.new(0, 0, 0, 0)
  17. Title.Size = UDim2.new(1, 0, 0.1, 0)
  18. Title.BorderSizePixel = 3
  19. Title.Active = false
  20.  
  21. local nt = "Hello World"
  22. for i = 1, #nt do
  23. Title.Text = nt:sub(1, i)
  24. wait(0.075)
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement