Advertisement
Pro_Pastebin_Person1

Untitled

Apr 20th, 2020
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.94 KB | None | 0 0
  1. -- \\ API // --
  2.  
  3. local API = loadstring(game:HttpGet("https://pastebin.com/raw/ZLJBWxjf"))()
  4. local NewAPI = API:Load()
  5.  
  6. -- \\ Custom Locals // --
  7.  
  8. local S = "Starting..."
  9. local T = "Text Label Added"
  10. local A = "API Loaded."
  11. local S = "Started First Main Frmae."
  12. local C = "Closed GUI"
  13. local S = "Started First Part of Loading Screen."
  14. local D = "Done loading."
  15. local P = "Player Leave/Join scrips loaded."
  16. local V = "GUI is visible."
  17. local Dr = "Custom Drag API is loaded on-to GUI."
  18.  
  19. -- \\ Random Yet Important Code // --
  20.  
  21. wait(0.5)
  22.  
  23. print(A)
  24.  
  25. -- \\ Join/Leave Value's Code // --
  26.  
  27. local Players = game:GetService("Players")
  28. Players.PlayerAdded:Connect(function(plr)
  29. print(plr.Name.." Updated Join Value. | Null | Null | Value : Join Value: Change Value")
  30. wait(1)
  31. end)
  32.  
  33. Players.PlayerRemoving:Connect(function(plr)
  34. print(plr.Name.." Updated Leave Value. | Null | Null | Value : Leave Value: Change Value")
  35. wait(1)
  36. end)
  37.  
  38. -- \\ Random Yet Important Code // --
  39.  
  40. print(P)
  41.  
  42. wait(0.1)
  43.  
  44. -- \\ Making GUI // --
  45.  
  46. local TestHub = Instance.new("ScreenGui")
  47. local Main = Instance.new("Frame")
  48. local Close = Instance.new("TextButton")
  49. local Minus = Instance.new("TextButton")
  50. local Name = Instance.new("TextLabel")
  51. local Background = Instance.new("Frame")
  52.  
  53. TestHub.Name = "Test Hub"
  54. TestHub.Parent = game.CoreGui
  55. TestHub.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  56.  
  57. Main.Name = "Main"
  58. Main.Parent = TestHub
  59. Main.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  60. Main.BorderSizePixel = 0
  61. Main.Position = UDim2.new(0.5, -197, 0.5, -16)
  62. Main.Size = UDim2.new(0, 395, 0, 32)
  63.  
  64. Close.Name = "Close"
  65. Close.Parent = Main
  66. Close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  67. Close.BackgroundTransparency = 1.000
  68. Close.BorderSizePixel = 0
  69. Close.Position = UDim2.new(0.939240515, 0, 0, 0)
  70. Close.Size = UDim2.new(0, 24, 0, 24)
  71. Close.Font = Enum.Font.SourceSans
  72. Close.Text = "X"
  73. Close.TextColor3 = Color3.fromRGB(255, 255, 255)
  74. Close.TextScaled = true
  75. Close.TextSize = 14.000
  76. Close.TextWrapped = true
  77.  
  78. Minus.Name = "Minus"
  79. Minus.Parent = Main
  80. Minus.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  81. Minus.BackgroundTransparency = 1.000
  82. Minus.BorderSizePixel = 0
  83. Minus.Position = UDim2.new(0.87848103, 0, 0, 0)
  84. Minus.Size = UDim2.new(0, 24, 0, 16)
  85. Minus.Font = Enum.Font.SourceSans
  86. Minus.Text = "_"
  87. Minus.TextColor3 = Color3.fromRGB(255, 255, 255)
  88. Minus.TextScaled = true
  89. Minus.TextSize = 14.000
  90. Minus.TextWrapped = true
  91.  
  92. Name.Name = "Name"
  93. Name.Parent = Main
  94. Name.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  95. Name.BackgroundTransparency = 1.000
  96. Name.BorderSizePixel = 0
  97. Name.Position = UDim2.new(0.245569617, 0, 0.125, 0)
  98. Name.Size = UDim2.new(0, 200, 0, 24)
  99. Name.Font = Enum.Font.GothamBold
  100. Name.Text = "Name Here"
  101. Name.TextColor3 = Color3.fromRGB(255, 255, 255)
  102. Name.TextScaled = true
  103. Name.TextSize = 14.000
  104. Name.TextWrapped = true
  105.  
  106. Background.Name = "Background"
  107. Background.Parent = Main
  108. Background.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  109. Background.BorderSizePixel = 0
  110. Background.Position = UDim2.new(-0.00310120406, 0, 0.969499588, 0)
  111. Background.Size = UDim2.new(0, 396, 0, 181)
  112.  
  113. -- \\ Random Yet Important Code // --
  114.  
  115. print(V)
  116.  
  117. Main.Visible = true
  118. Background.Visible = true
  119.  
  120. wait(1)
  121.  
  122. -- \\ Close Code // --
  123.  
  124. Close.MouseButton1Down:connect(function()
  125. Background:TweenSize(UDim2.new(0, 396,0, 0), "Out", "Quint", 2)
  126. wait(1.4)
  127.  
  128. Main.Visible = false
  129. Background.Visible = false
  130.  
  131. print(C)
  132. end)
  133.  
  134. -- \\ Minus Code // --
  135.  
  136. Minus.MouseButton1Down:connect(function()
  137.  
  138. Background:TweenSize(UDim2.new(0, 0,0, 181), "Out", "Quint", 1.5)
  139. wait(0.1)
  140.  
  141. Main:TweenSize(UDim2.new(0, 0,0, 32), "Out", "Quint", 1.5)
  142. Close.Visible = false
  143. Minus.Visible = false
  144. Name.Visible = false
  145. wait(0.1)
  146.  
  147. Background:TweenSize(UDim2.new(0, 0,0, 0), "Out", "Quint", 1)
  148. wait(0.1)
  149. Main:TweenSize(UDim2.new(0, 0,0, 0), "Out", "Quint", 0.5)
  150. wait(1)
  151.  
  152. Main.Visible = false
  153. Background.Visible = false
  154.  
  155. print(C)
  156. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement