Advertisement
Pro_Pastebin_Person1

Untitled

Apr 20th, 2020
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1.  
  2. Players.PlayerRemoving:Connect(function(plr)
  3. print(plr.Name.." Updated Leave Value. | Null | Null | Value : Leave Value: Change Value")
  4. end)
  5.  
  6. -- \\ Random Yet Important Code // --
  7.  
  8. print(P)
  9.  
  10. wait(0.1)
  11.  
  12. -- \\ Making GUI // --
  13.  
  14. local TestHub = Instance.new("ScreenGui")
  15. local Main = Instance.new("Frame")
  16. local Close = Instance.new("TextButton")
  17. local Minus = Instance.new("TextButton")
  18. local Name = Instance.new("TextLabel")
  19. local Background = Instance.new("Frame")
  20.  
  21. TestHub.Name = "Test Hub"
  22. TestHub.Parent = game.CoreGui
  23. TestHub.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  24.  
  25. Main.Name = "Main"
  26. Main.Parent = TestHub
  27. Main.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  28. Main.BorderSizePixel = 0
  29. Main.Position = UDim2.new(0.5, -197, 0.5, -16)
  30. Main.Size = UDim2.new(0, 395, 0, 32)
  31.  
  32. Close.Name = "Close"
  33. Close.Parent = Main
  34. Close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  35. Close.BackgroundTransparency = 1.000
  36. Close.BorderSizePixel = 0
  37. Close.Position = UDim2.new(0.939240515, 0, 0, 0)
  38. Close.Size = UDim2.new(0, 24, 0, 24)
  39. Close.Font = Enum.Font.SourceSans
  40. Close.Text = "X"
  41. Close.TextColor3 = Color3.fromRGB(255, 255, 255)
  42. Close.TextScaled = true
  43. Close.TextSize = 14.000
  44. Close.TextWrapped = true
  45.  
  46. Minus.Name = "Minus"
  47. Minus.Parent = Main
  48. Minus.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  49. Minus.BackgroundTransparency = 1.000
  50. Minus.BorderSizePixel = 0
  51. Minus.Position = UDim2.new(0.87848103, 0, 0, 0)
  52. Minus.Size = UDim2.new(0, 24, 0, 16)
  53. Minus.Font = Enum.Font.SourceSans
  54. Minus.Text = "_"
  55. Minus.TextColor3 = Color3.fromRGB(255, 255, 255)
  56. Minus.TextScaled = true
  57. Minus.TextSize = 14.000
  58. Minus.TextWrapped = true
  59.  
  60. Name.Name = "Name"
  61. Name.Parent = Main
  62. Name.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  63. Name.BackgroundTransparency = 1.000
  64. Name.BorderSizePixel = 0
  65. Name.Position = UDim2.new(0.245569617, 0, 0.125, 0)
  66. Name.Size = UDim2.new(0, 200, 0, 24)
  67. Name.Font = Enum.Font.GothamBold
  68. Name.Text = "Name Here"
  69. Name.TextColor3 = Color3.fromRGB(255, 255, 255)
  70. Name.TextScaled = true
  71. Name.TextSize = 14.000
  72. Name.TextWrapped = true
  73.  
  74. Background.Name = "Background"
  75. Background.Parent = Main
  76. Background.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  77. Background.BorderSizePixel = 0
  78. Background.Position = UDim2.new(-0.00310120406, 0, 0.969499588, 0)
  79. Background.Size = UDim2.new(0, 396, 0, 181)
  80.  
  81. -- \\ Random Yet Important Code // --
  82.  
  83. print(V)
  84.  
  85. Main.Visible = true
  86. Background.Visible = true
  87.  
  88. wait(1)
  89.  
  90. -- \\ Close Code // --
  91.  
  92. Close.MouseButton1Down:connect(function()
  93. Background:TweenSize(UDim2.new(0, 396,0, 0), "Out", "Quint", 2)
  94. wait(1.4)
  95.  
  96. Main.Visible = false
  97. Background.Visible = false
  98.  
  99. print(C)
  100. end)
  101.  
  102. -- \\ Minus Code // --
  103.  
  104. Minus.MouseButton1Down:connect(function()
  105.  
  106. Background:TweenSize(UDim2.new(0, 0,0, 181), "Out", "Quint", 1.5)
  107. wait(0.1)
  108.  
  109. Main:TweenSize(UDim2.new(0, 0,0, 32), "Out", "Quint", 1.5)
  110. Close.Visible = false
  111. Minus.Visible = false
  112. Name.Visible = false
  113. wait(0.1)
  114.  
  115. Background:TweenSize(UDim2.new(0, 0,0, 0), "Out", "Quint", 1)
  116. wait(0.1)
  117. Main:TweenSize(UDim2.new(0, 0,0, 0), "Out", "Quint", 0.5)
  118. wait(1)
  119.  
  120. Main.Visible = false
  121. Background.Visible = false
  122.  
  123. print(C)
  124. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement