Advertisement
Hellotop2

Untitled

Jan 2nd, 2019
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.78 KB | None | 0 0
  1. -- Objects
  2.  
  3. local urmomgui = Instance.new("ScreenGui")
  4. local Background = Instance.new("Frame")
  5. local Load = Instance.new("Frame")
  6. local Ball = Instance.new("ImageLabel")
  7. local Status = Instance.new("TextLabel")
  8. local credits = Instance.new("TextLabel")
  9. local SorryFrame = Instance.new("Frame")
  10. local message = Instance.new("TextLabel")
  11.  
  12. -- Properties
  13.  
  14. urmomgui.Name = "urmomgui"
  15. urmomgui.Parent = game.CoreGui
  16. urmomgui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17. urmomgui.ResetOnSpawn = false
  18.  
  19. Background.Name = "Background"
  20. Background.Parent = urmomgui
  21. Background.BackgroundColor3 = Color3.new(0.141176, 0.141176, 0.141176)
  22. Background.BorderSizePixel = 0
  23. Background.Position = UDim2.new(0.373744816, 0, 0.315797776, 0)
  24. Background.Size = UDim2.new(0, 371, 0, 398)
  25.  
  26. Load.Name = "Load"
  27. Load.Parent = Background
  28. Load.AnchorPoint = Vector2.new(0.5, 0.5)
  29. Load.BackgroundColor3 = Color3.new(1, 1, 1)
  30. Load.BackgroundTransparency = 1
  31. Load.Position = UDim2.new(0.5, 0, 0.524865568, 0)
  32. Load.Size = UDim2.new(1.00000012, 0, 0.984143078, 0)
  33. Load.SizeConstraint = Enum.SizeConstraint.RelativeXX
  34. Load.Visible = false
  35.  
  36. Ball.Name = "Ball"
  37. Ball.Parent = Load
  38. Ball.AnchorPoint = Vector2.new(0.5, 0.5)
  39. Ball.BackgroundColor3 = Color3.new(1, 1, 1)
  40. Ball.BackgroundTransparency = 1
  41. Ball.Position = UDim2.new(0.491913736, 0, 0.309618026, 0)
  42. Ball.Size = UDim2.new(0.5, 0, 0.5, 0)
  43. Ball.SizeConstraint = Enum.SizeConstraint.RelativeYY
  44. Ball.ZIndex = 166
  45. Ball.Image = "rbxassetid://638630175"
  46. Ball.ImageColor3 = Color3.new(0.862745, 0.862745, 0.862745)
  47.  
  48. Status.Name = "Status"
  49. Status.Parent = Load
  50. Status.AnchorPoint = Vector2.new(0.5, 0)
  51. Status.BackgroundColor3 = Color3.new(1, 1, 1)
  52. Status.BackgroundTransparency = 1
  53. Status.Position = UDim2.new(0.5, 0, 0.697961926, 0)
  54. Status.Size = UDim2.new(0.699999988, 0, 0.100000001, 0)
  55. Status.ZIndex = 80
  56. Status.Font = Enum.Font.SourceSansBold
  57. Status.Text = "LOADING"
  58. Status.TextColor3 = Color3.new(0.862745, 0.862745, 0.862745)
  59. Status.TextScaled = true
  60. Status.TextSize = 14
  61. Status.TextWrapped = true
  62.  
  63. credits.Name = "credits"
  64. credits.Parent = Background
  65. credits.BackgroundColor3 = Color3.new(1, 1, 1)
  66. credits.BackgroundTransparency = 1
  67. credits.Position = UDim2.new(0, 0, 0.932339549, 0)
  68. credits.Size = UDim2.new(0, 91, 0, 26)
  69. credits.Font = Enum.Font.SourceSansLight
  70. credits.Text = "UR MOM"
  71. credits.TextColor3 = Color3.new(0.298039, 0.298039, 0.298039)
  72. credits.TextScaled = true
  73. credits.TextSize = 14
  74. credits.TextWrapped = true
  75. credits.TextXAlignment = Enum.TextXAlignment.Left
  76.  
  77. SorryFrame.Name = "SorryFrame"
  78. SorryFrame.Parent = Background
  79. SorryFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  80. SorryFrame.BackgroundTransparency = 1
  81. SorryFrame.Size = UDim2.new(0, 371, 0, 398)
  82. SorryFrame.Visible = false
  83.  
  84. message.Name = "message"
  85. message.Parent = SorryFrame
  86. message.BackgroundColor3 = Color3.new(1, 1, 1)
  87. message.BackgroundTransparency = 1
  88. message.Size = UDim2.new(0, 371, 0, 398)
  89. message.Font = Enum.Font.SourceSansLight
  90. message.Text = "Something recently has happened. We discontinued our GUI/Community Server. We will very much miss it and you aswell.\nThank you, 3vpl."
  91. message.TextColor3 = Color3.new(1, 1, 1)
  92. message.TextSize = 24
  93. message.TextWrapped = true
  94. message.TextXAlignment = Enum.TextXAlignment.Left
  95. message.TextYAlignment = Enum.TextYAlignment.Top
  96. wait(1)
  97. Load.Visible = true
  98. local multiplier = 6
  99. local min = 4
  100. local function GetRotation(alpha)
  101. local cos = math.cos(math.rad(alpha))
  102. return cos * multiplier + min
  103. end
  104. for a = 0, 90 do
  105. Ball.Rotation = Ball.Rotation + GetRotation(a)
  106. game:GetService("RunService").Heartbeat:Wait()
  107. end
  108. for a = 90, 0, -1 do
  109. Ball.Rotation = Ball.Rotation + GetRotation(a)
  110. game:GetService("RunService").Heartbeat:Wait()
  111. end
  112. Load.Visible = false
  113. SorryFrame.Visible = true
  114. wait(10)
  115. urmomgui:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement