Advertisement
Prestige_E

Admin Commands ROBLOX

Mar 14th, 2020
621
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.87 KB | None | 0 0
  1. -- toooooopo
  2. -- Prestige E#3359
  3.  
  4. local AdminCommands = Instance.new("ScreenGui")
  5. local Main = Instance.new("Frame")
  6. local title = Instance.new("TextLabel")
  7. local credits = Instance.new("TextLabel")
  8. local TextButton = Instance.new("TextButton")
  9. local close = Instance.new("TextButton")
  10. local OpenMain = Instance.new("Frame")
  11. local open = Instance.new("TextButton")
  12. local extra = Instance.new("TextLabel")
  13.  
  14. AdminCommands.Name = "Admin Commands"
  15. AdminCommands.Parent = game.CoreGui
  16. AdminCommands.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. Main.Name = "Main"
  19. Main.Parent = AdminCommands
  20. Main.BackgroundColor3 = Color3.fromRGB(153, 255, 255)
  21. Main.BorderColor3 = Color3.fromRGB(0, 204, 255)
  22. Main.BorderSizePixel = 2
  23. Main.Position = UDim2.new(0.207943916, 0, 0.214421242, 0)
  24. Main.Size = UDim2.new(0, 500, 0, 300)
  25. Main.Visible = false
  26. Main.Active = true
  27. Main.Draggable = true
  28.  
  29. title.Name = "title"
  30. title.Parent = Main
  31. title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  32. title.BackgroundTransparency = 1.000
  33. title.Size = UDim2.new(0, 500, 0, 30)
  34. title.Font = Enum.Font.SciFi
  35. title.Text = "Admin Commands"
  36. title.TextColor3 = Color3.fromRGB(0, 0, 127)
  37. title.TextScaled = true
  38. title.TextSize = 14.000
  39. title.TextWrapped = true
  40.  
  41. credits.Name = "credits"
  42. credits.Parent = Main
  43. credits.BackgroundColor3 = Color3.fromRGB(0, 0, 127)
  44. credits.BackgroundTransparency = 1.000
  45. credits.Position = UDim2.new(0, 0, 0.899999976, 0)
  46. credits.Size = UDim2.new(0, 500, 0, 30)
  47. credits.Font = Enum.Font.SciFi
  48. credits.Text = "Made by toooooopo / Prestige E#3359"
  49. credits.TextColor3 = Color3.fromRGB(0, 0, 127)
  50. credits.TextScaled = true
  51. credits.TextSize = 14.000
  52. credits.TextWrapped = true
  53.  
  54. TextButton.Parent = Main
  55. TextButton.BackgroundColor3 = Color3.fromRGB(119, 0, 255)
  56. TextButton.BorderSizePixel = 0
  57. TextButton.Position = UDim2.new(0.179999992, 0, 0.200000003, 0)
  58. TextButton.Size = UDim2.new(0, 320, 0, 180)
  59. TextButton.Font = Enum.Font.SciFi
  60. TextButton.Text = "Admin Commands"
  61. TextButton.TextColor3 = Color3.fromRGB(12, 255, 0)
  62. TextButton.TextScaled = true
  63. TextButton.TextSize = 14.000
  64. TextButton.TextWrapped = true
  65. TextButton.MouseButton1Down:connect(function()
  66. loadstring(game:HttpGet("https://pastebin.com/raw/MjBzRjmT", true))()
  67. end)
  68.  
  69. close.Name = "close"
  70. close.Parent = Main
  71. close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  72. close.BackgroundTransparency = 1.000
  73. close.Position = UDim2.new(0.939999998, 0, 0, 0)
  74. close.Size = UDim2.new(0, 30, 0, 30)
  75. close.Font = Enum.Font.GothamBlack
  76. close.Text = "X"
  77. close.TextColor3 = Color3.fromRGB(255, 0, 0)
  78. close.TextScaled = true
  79. close.TextSize = 14.000
  80. close.TextWrapped = true
  81. close.MouseButton1Down:connect(function()
  82. Main.Visible = false
  83. OpenMain.Visible = true
  84. end)
  85.  
  86. OpenMain.Name = "OpenMain"
  87. OpenMain.Parent = AdminCommands
  88. OpenMain.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  89. OpenMain.BorderSizePixel = 0
  90. OpenMain.Position = UDim2.new(0.412383169, 0, 0.933586299, 0)
  91. OpenMain.Size = UDim2.new(0, 150, 0, 35)
  92. OpenMain.Active = true
  93. OpenMain.Draggable = true
  94.  
  95. open.Name = "open"
  96. open.Parent = OpenMain
  97. open.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  98. open.Size = UDim2.new(0, 150, 0, 35)
  99. open.Font = Enum.Font.SciFi
  100. open.Text = "Open"
  101. open.TextColor3 = Color3.fromRGB(119, 0, 255)
  102. open.TextScaled = true
  103. open.TextSize = 14.000
  104. open.TextWrapped = true
  105. open.TextXAlignment = Enum.TextXAlignment.Left
  106. open.MouseButton1Down:connect(function()
  107. Main.Visible = true
  108. OpenMain.Visible = false
  109. end)
  110.  
  111. extra.Name = "extra "
  112. extra.Parent = OpenMain
  113. extra.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  114. extra.BackgroundTransparency = 1.000
  115. extra.BorderSizePixel = 0
  116. extra.Size = UDim2.new(0, 150, 0, 35)
  117. extra.Font = Enum.Font.SciFi
  118. extra.Text = "AC"
  119. extra.TextColor3 = Color3.fromRGB(119, 0, 255)
  120. extra.TextScaled = true
  121. extra.TextSize = 14.000
  122. extra.TextWrapped = true
  123. extra.TextXAlignment = Enum.TextXAlignment.Right
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement