BailTaashev

HUbik

Feb 13th, 2021
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.67 KB | None | 0 0
  1.  
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local OpenFrame = Instance.new("Frame")
  4. local Open = Instance.new("TextButton")
  5. local Main = Instance.new("Frame")
  6. local Frame = Instance.new("Frame")
  7. local Close = Instance.new("TextButton")
  8. local Frame_2 = Instance.new("Frame")
  9. local TextLabel = Instance.new("TextLabel")
  10. local TextButton = Instance.new("TextButton")
  11. local TextButton_2 = Instance.new("TextButton")
  12. local TextButton_3 = Instance.new("TextButton")
  13. local TextButton_4 = Instance.new("TextButton")
  14. local CMDX = Instance.new("TextButton")
  15. local Reanimate = Instance.new("TextButton")
  16.  
  17.  
  18. ScreenGui.Parent = game.CoreGui
  19.  
  20. OpenFrame.Name = "OpenFrame"
  21. OpenFrame.Parent = ScreenGui
  22. OpenFrame.Active = true
  23. OpenFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  24. OpenFrame.Position = UDim2.new(0, 0, 0.969660223, 0)
  25. OpenFrame.Size = UDim2.new(0, 72, 0, 25)
  26.  
  27. Open.Name = "Open"
  28. Open.Parent = OpenFrame
  29. Open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  30. Open.Size = UDim2.new(0, 72, 0, 25)
  31. Open.Font = Enum.Font.SciFi
  32. Open.Text = "Open"
  33. Open.TextColor3 = Color3.fromRGB(0, 0, 0)
  34. Open.TextScaled = true
  35. Open.TextSize = 14.000
  36. Open.TextWrapped = true
  37. Open.MouseButton1Down:connect(function()
  38. Main.Visible = true
  39. Open.Visible = false
  40. end)
  41.  
  42. Main.Name = "Main"
  43. Main.Parent = ScreenGui
  44. Main.Active = true
  45. Main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  46. Main.Position = UDim2.new(0.735151529, 0, 0.172330096, 0)
  47. Main.Size = UDim2.new(0, 371, 0, 540)
  48. Main.Visible = false
  49. Main.Draggable = true
  50.  
  51. Frame.Parent = Main
  52. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  53. Frame.Position = UDim2.new(0.881401598, 0, 0, 0)
  54. Frame.Size = UDim2.new(0, 44, 0, 50)
  55.  
  56. Close.Name = "Close"
  57. Close.Parent = Frame
  58. Close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  59. Close.Size = UDim2.new(0, 44, 0, 50)
  60. Close.Font = Enum.Font.SciFi
  61. Close.Text = "X"
  62. Close.TextColor3 = Color3.fromRGB(170, 0, 0)
  63. Close.TextScaled = true
  64. Close.TextSize = 14.000
  65. Close.TextWrapped = true
  66. Close.MouseButton1Down:connect(function()
  67. Open.Visible = true
  68. Main.Visible = false
  69. end)
  70.  
  71. Frame_2.Parent = Main
  72. Frame_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  73. Frame_2.Size = UDim2.new(0, 327, 0, 48)
  74.  
  75. TextLabel.Parent = Frame_2
  76. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  77. TextLabel.Size = UDim2.new(0, 327, 0, 50)
  78. TextLabel.Font = Enum.Font.SciFi
  79. TextLabel.Text = "GUI made boganan"
  80. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  81. TextLabel.TextScaled = true
  82. TextLabel.TextSize = 14.000
  83. TextLabel.TextWrapped = true
  84.  
  85. TextButton.Parent = Main
  86. TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  87. TextButton.Position = UDim2.new(0.53908354, 0, 0.320370436, 0)
  88. TextButton.Size = UDim2.new(0, 171, 0, 50)
  89. TextButton.Font = Enum.Font.SourceSans
  90. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  91. TextButton.TextSize = 14.000
  92.  
  93. TextButton_2.Parent = Main
  94. TextButton_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  95. TextButton_2.Position = UDim2.new(0, 0, 0.320370436, 0)
  96. TextButton_2.Size = UDim2.new(0, 186, 0, 50)
  97. TextButton_2.Font = Enum.Font.SourceSans
  98. TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  99. TextButton_2.TextSize = 14.000
  100.  
  101. TextButton_3.Parent = Main
  102. TextButton_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  103. TextButton_3.Position = UDim2.new(0.53908354, 0, 0.453703701, 0)
  104. TextButton_3.Size = UDim2.new(0, 171, 0, 50)
  105. TextButton_3.Font = Enum.Font.SourceSans
  106. TextButton_3.TextColor3 = Color3.fromRGB(0, 0, 0)
  107. TextButton_3.TextSize = 14.000
  108.  
  109. TextButton_4.Parent = Main
  110. TextButton_4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  111. TextButton_4.Position = UDim2.new(0, 0, 0.453703701, 0)
  112. TextButton_4.Size = UDim2.new(0, 186, 0, 50)
  113. TextButton_4.Font = Enum.Font.SourceSans
  114. TextButton_4.TextColor3 = Color3.fromRGB(0, 0, 0)
  115. TextButton_4.TextSize = 14.000
  116.  
  117. CMDX.Name = "CMD-X"
  118. CMDX.Parent = Main
  119. CMDX.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  120. CMDX.Position = UDim2.new(0.53908354, 0, 0.907407403, 0)
  121. CMDX.Size = UDim2.new(0, 171, 0, 50)
  122. CMDX.Font = Enum.Font.SciFi
  123. CMDX.Text = "CMD-X"
  124. CMDX.TextColor3 = Color3.fromRGB(0, 0, 0)
  125. CMDX.TextScaled = true
  126. CMDX.TextSize = 14.000
  127. CMDX.TextWrapped = true
  128. CMDX.MouseButton1Down:connect(function()
  129. loadstring(game:HttpGet("https://raw.githubusercontent.com/CMD-X/CMD-X/master/Source", true))()
  130. end)
  131.  
  132. Reanimate.Name = "Reanimate"
  133. Reanimate.Parent = Main
  134. Reanimate.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  135. Reanimate.Position = UDim2.new(0, 0, 0.907407403, 0)
  136. Reanimate.Size = UDim2.new(0, 186, 0, 50)
  137. Reanimate.Font = Enum.Font.Sarpanch
  138. Reanimate.Text = "Reanimate"
  139. Reanimate.TextColor3 = Color3.fromRGB(0, 0, 0)
  140. Reanimate.TextScaled = true
  141. Reanimate.TextSize = 14.000
  142. Reanimate.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment