Advertisement
sIendytubble

titanic lol

Jun 21st, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. text = "Titanic, Southampton, England to New York City. Board today and ride the most luxury ship ever built by man-kind."
  2. for i,v in pairs(game.Players:GetChildren()) do
  3. if not v.PlayerGui:FindFirstChild("titanic") then
  4. coroutine.resume(coroutine.create(function()
  5. ScreenGui0 = Instance.new("ScreenGui")
  6. Frame1 = Instance.new("Frame")
  7. TextLabel2 = Instance.new("TextLabel")
  8. TextLabel3 = Instance.new("TextLabel")
  9. ScreenGui0.Name = "titanic"
  10. ScreenGui0.Parent = v.PlayerGui
  11. ScreenGui0.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12. Frame1.Parent = ScreenGui0
  13. Frame1.Position = UDim2.new(0.5, -199, 0.5, -200)
  14. Frame1.Size = UDim2.new(0, 398, 0, 400)
  15. Frame1.BackgroundColor = BrickColor.new("Really black")
  16. Frame1.BackgroundColor3 = Color3.new(0, 0, 0)
  17. TextLabel2.Name = "message"
  18. TextLabel2.Parent = Frame1
  19. TextLabel2.Size = UDim2.new(1, 0, 1, 0)
  20. TextLabel2.BackgroundColor = BrickColor.new("Institutional white")
  21. TextLabel2.BackgroundColor3 = Color3.new(1, 1, 1)
  22. TextLabel2.BackgroundTransparency = 1
  23. TextLabel2.Font = Enum.Font.Code
  24. TextLabel2.FontSize = Enum.FontSize.Size24
  25. TextLabel2.Text = ""
  26. TextLabel2.TextColor = BrickColor.new("Institutional white")
  27. TextLabel2.TextColor3 = Color3.new(1, 1, 1)
  28. TextLabel2.TextSize = 24
  29. TextLabel2.TextWrap = true
  30. TextLabel2.TextWrapped = true
  31. TextLabel2.TextXAlignment = Enum.TextXAlignment.Left
  32. TextLabel2.TextYAlignment = Enum.TextYAlignment.Top
  33. TextLabel3.Name = "to"
  34. TextLabel3.Parent = Frame1
  35. TextLabel3.Position = UDim2.new(0, 0, -0.100000001, 0)
  36. TextLabel3.Size = UDim2.new(1, 0, 0.100000001, 0)
  37. TextLabel3.BackgroundColor = BrickColor.new("Really black")
  38. TextLabel3.BackgroundColor3 = Color3.new(0, 0, 0)
  39. TextLabel3.Font = Enum.Font.Code
  40. TextLabel3.FontSize = Enum.FontSize.Size24
  41. TextLabel3.Text = "Titanic to".." "..v.Name
  42. TextLabel3.TextColor = BrickColor.new("Institutional white")
  43. TextLabel3.TextColor3 = Color3.new(1, 1, 1)
  44. TextLabel3.TextSize = 24
  45. TextLabel3.TextWrap = true
  46. TextLabel3.TextWrapped = true
  47. TextLabel2.TextXAlignment = Enum.TextXAlignment.Left
  48. end))
  49. end
  50. end
  51. for i,v in pairs(game.Players:GetChildren()) do
  52. if v.PlayerGui:FindFirstChild("titanic") then
  53. coroutine.resume(coroutine.create(function()
  54. for i=1,#text do
  55. v.PlayerGui:FindFirstChild("titanic").Frame.message.Text = string.sub(text,1,i)
  56. wait(0.1)
  57. end
  58. wait(4)
  59. for i,v in pairs(game.Players:GetChildren()) do
  60. if v.PlayerGui:FindFirstChild("titanic") then
  61. v.PlayerGui:FindFirstChild("titanic"):Destroy()
  62. end
  63. end
  64. end))
  65. end
  66. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement