Advertisement
builderboy256

Untitled

Mar 18th, 2018
3,539
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.16 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local Frame_2 = Instance.new("Frame")
  6. local TextLabel = Instance.new("TextLabel")
  7. local GAdmin = Instance.new("TextButton")
  8. local CW = Instance.new("TextButton")
  9. local RPads = Instance.new("TextButton")
  10. local CDeath = Instance.new("TextButton")
  11. local SDeath = Instance.new("TextButton")
  12. local Kick = Instance.new("TextButton")
  13. local Ban = Instance.new("TextButton")
  14. local Lag = Instance.new("TextButton")
  15. local TextBox = Instance.new("TextBox")
  16.  
  17. -- Properties
  18.  
  19. ScreenGui.Parent = game.CoreGui
  20.  
  21. Frame.Parent = ScreenGui
  22. Frame.Active = true
  23. Frame.BackgroundColor3 = Color3.new(0.941177, 0.941177, 0.941177)
  24. Frame.BorderSizePixel = 0
  25. Frame.Draggable = true
  26. Frame.Position = UDim2.new(0.650458694, 0, 0.116704807, 0)
  27. Frame.Size = UDim2.new(0, 285, 0, 362)
  28.  
  29. Frame_2.Parent = Frame
  30. Frame_2.BackgroundColor3 = Color3.new(0.203922, 0.560784, 1)
  31. Frame_2.BorderSizePixel = 0
  32. Frame_2.Size = UDim2.new(0, 285, 0, 54)
  33.  
  34. TextLabel.Parent = Frame_2
  35. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  36. TextLabel.BackgroundTransparency = 1
  37. TextLabel.Size = UDim2.new(0, 285, 0, 54)
  38. TextLabel.Font = Enum.Font.SourceSans
  39. TextLabel.Text = "Kohl's Admin House GUI"
  40. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  41. TextLabel.TextSize = 24
  42.  
  43. GAdmin.Name = "GAdmin"
  44. GAdmin.Parent = Frame
  45. GAdmin.BackgroundColor3 = Color3.new(0.203922, 0.560784, 1)
  46. GAdmin.Position = UDim2.new(0.042105265, 0, 0.281767964, 0)
  47. GAdmin.Size = UDim2.new(0, 130, 0, 37)
  48. GAdmin.Font = Enum.Font.SourceSans
  49. GAdmin.Text = "Get Admin"
  50. GAdmin.TextColor3 = Color3.new(1, 1, 1)
  51. GAdmin.TextSize = 18
  52.  
  53. CW.Name = "CW"
  54. CW.Parent = Frame
  55. CW.BackgroundColor3 = Color3.new(0.203922, 0.560784, 1)
  56. CW.Position = UDim2.new(0.042105265, 0, 0.448895037, 0)
  57. CW.Size = UDim2.new(0, 130, 0, 37)
  58. CW.Font = Enum.Font.SourceSans
  59. CW.Text = "Clear Workspace"
  60. CW.TextColor3 = Color3.new(1, 1, 1)
  61. CW.TextSize = 18
  62.  
  63. RPads.Name = "RPads"
  64. RPads.Parent = Frame
  65. RPads.BackgroundColor3 = Color3.new(0.203922, 0.560784, 1)
  66. RPads.Position = UDim2.new(0.042105265, 0, 0.611878455, 0)
  67. RPads.Size = UDim2.new(0, 130, 0, 37)
  68. RPads.Font = Enum.Font.SourceSans
  69. RPads.Text = "Remove Pads"
  70. RPads.TextColor3 = Color3.new(1, 1, 1)
  71. RPads.TextSize = 18
  72.  
  73. CDeath.Name = "CDeath"
  74. CDeath.Parent = Frame
  75. CDeath.BackgroundColor3 = Color3.new(0.203922, 0.560784, 1)
  76. CDeath.Position = UDim2.new(0.042105265, 0, 0.766574621, 0)
  77. CDeath.Size = UDim2.new(0, 130, 0, 37)
  78. CDeath.Font = Enum.Font.SourceSans
  79. CDeath.Text = "(Local) No Death Pads"
  80. CDeath.TextColor3 = Color3.new(1, 1, 1)
  81. CDeath.TextSize = 16
  82.  
  83. SDeath.Name = "SDeath"
  84. SDeath.Parent = Frame
  85. SDeath.BackgroundColor3 = Color3.new(0.203922, 0.560784, 1)
  86. SDeath.Position = UDim2.new(0.522807002, 0, 0.280386776, 0)
  87. SDeath.Size = UDim2.new(0, 130, 0, 37)
  88. SDeath.Font = Enum.Font.SourceSans
  89. SDeath.Text = "(Server) No Death Pads"
  90. SDeath.TextColor3 = Color3.new(1, 1, 1)
  91. SDeath.TextSize = 15
  92.  
  93. Kick.Name = "Kick"
  94. Kick.Parent = Frame
  95. Kick.BackgroundColor3 = Color3.new(0.203922, 0.560784, 1)
  96. Kick.Position = UDim2.new(0.522807002, 0, 0.448895037, 0)
  97. Kick.Size = UDim2.new(0, 130, 0, 37)
  98. Kick.Font = Enum.Font.SourceSans
  99. Kick.Text = "Kick"
  100. Kick.TextColor3 = Color3.new(1, 1, 1)
  101. Kick.TextSize = 18
  102.  
  103. Ban.Name = "Ban"
  104. Ban.Parent = Frame
  105. Ban.BackgroundColor3 = Color3.new(0.203922, 0.560784, 1)
  106. Ban.Position = UDim2.new(0.522807002, 0, 0.611878455, 0)
  107. Ban.Size = UDim2.new(0, 130, 0, 37)
  108. Ban.Font = Enum.Font.SourceSans
  109. Ban.Text = "Ban"
  110. Ban.TextColor3 = Color3.new(1, 1, 1)
  111. Ban.TextSize = 18
  112.  
  113. Lag.Name = "Lag"
  114. Lag.Parent = Frame
  115. Lag.BackgroundColor3 = Color3.new(0.203922, 0.560784, 1)
  116. Lag.Position = UDim2.new(0.522807002, 0, 0.766574621, 0)
  117. Lag.Size = UDim2.new(0, 130, 0, 37)
  118. Lag.Font = Enum.Font.SourceSans
  119. Lag.Text = "Lag"
  120. Lag.TextColor3 = Color3.new(1, 1, 1)
  121. Lag.TextSize = 18
  122.  
  123. TextBox.Parent = Frame
  124. TextBox.BackgroundColor3 = Color3.new(0.203922, 0.560784, 1)
  125. TextBox.Position = UDim2.new(0.291228056, 0, 0.165745854, 0)
  126. TextBox.Size = UDim2.new(0, 124, 0, 32)
  127. TextBox.Font = Enum.Font.SourceSans
  128. TextBox.Text = "Player Name"
  129. TextBox.TextColor3 = Color3.new(1, 1, 1)
  130. TextBox.TextSize = 18
  131.  
  132. function GetPlayer(plrname)
  133. for _,player in pairs(game.Players:GetPlayers()) do
  134. if plrname:lower() == player.Name:sub(1,plrname:len()):lower() then
  135. return player
  136. end
  137. end
  138. return nil
  139. end
  140.  
  141. local Banned = {}
  142.  
  143. GAdmin.MouseButton1Down:connect(function()
  144. local old = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  145. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-44.8042488,8.22999954,94.7075653))
  146. wait(0.5)
  147. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = old
  148. end)
  149.  
  150. RPads.MouseButton1Down:connect(function()
  151. game.Players.LocalPlayer.Backpack.Delete.delete:FireServer(workspace.Terrain.GameFolder.Admin)
  152. end)
  153.  
  154. CDeath.MouseButton1Down:connect(function()
  155. workspace.Terrain.GameFolder.Workspace.Obby:Destroy()
  156. end)
  157.  
  158. SDeath.MouseButton1Down:connect(function()
  159. game.Players.LocalPlayer.Backpack.Delete.delete:FireServer(workspace.Terrain.GameFolder.Workspace.Obby)
  160. end)
  161.  
  162. CW.MouseButton1Down:connect(function()
  163. for i,v in pairs(workspace.Terrain.GameFolder.Workspace:children()) do
  164. if v.Name ~= "Baseplate" then game.Players.LocalPlayer.Backpack.Delete.delete:FireServer(v) end
  165. end
  166. end)
  167.  
  168. Kick.MouseButton1Down:connect(function()
  169. local target = GetPlayer(TextBox.Text)
  170. if target then
  171. game.Players.LocalPlayer.Backpack.Delete.delete:FireServer(target)
  172. end
  173. end)
  174.  
  175. Ban.MouseButton1Down:connect(function()
  176. local target = GetPlayer(TextBox.Text)
  177. if target then
  178. table.insert(Banned,target.Name)
  179. wait(0.5)
  180. game.Players.LocalPlayer.Backpack.Delete.delete:FireServer(target)
  181. end
  182. end)
  183.  
  184. Lag.MouseButton1Down:connect(function()
  185. game:GetService'Players':Chat(":swagify all")
  186. end)
  187.  
  188.  
  189. game.Players.PlayerAdded:connect(function(plr)
  190. for i = 1,#Banned do
  191. if Banned[i] == plr.Name then
  192. game.Players.LocalPlayer.Backpack.Delete.delete:FireServer(plr)
  193. end
  194. end
  195. end)
  196.  
  197. while true do
  198. wait(1)
  199. if not game.Players.LocalPlayer.Backpack:FindFirstChild("Delete") then
  200. game:GetService'Players':Chat(":btools me")
  201. end
  202. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement