Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- Objects
  2.  
  3. local Kohls = Instance.new("ScreenGui")
  4. local MFrame = Instance.new("Frame")
  5. local TFrame = Instance.new("Frame")
  6. local Tiddle = Instance.new("TextLabel")
  7. local Tutup = Instance.new("TextButton")
  8. local Tunda = Instance.new("TextButton")
  9. local Nama = Instance.new("TextBox")
  10. local Ban = Instance.new("TextButton")
  11. local col = Instance.new("TextButton")
  12. local Kick = Instance.new("TextButton")
  13. local Madwe = Instance.new("TextLabel")
  14. local Unlock = Instance.new("TextButton")
  15. local Admin = Instance.new("TextButton")
  16. local Noclip = Instance.new("TextButton")
  17. local Data = Instance.new("TextBox")
  18.  
  19. -- Properties
  20.  
  21. Kohls.Name = "Kohls"
  22. Kohls.Parent = game.CoreGui
  23.  
  24. MFrame.Name = "MFrame"
  25. MFrame.Parent = Kohls
  26. MFrame.Active = true
  27. MFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  28. MFrame.BackgroundTransparency = 0.10000000149012
  29. MFrame.BorderColor3 = Color3.new(0.333333, 1, 0)
  30. MFrame.BorderSizePixel = 2
  31. MFrame.Position = UDim2.new(0.138755977, 0, 0.139393941, 0)
  32. MFrame.Size = UDim2.new(0, 497, 0, 289)
  33. MFrame.Draggable = true
  34.  
  35. TFrame.Name = "TFrame"
  36. TFrame.Parent = MFrame
  37. TFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  38. TFrame.BorderColor3 = Color3.new(0, 1, 0)
  39. TFrame.BorderSizePixel = 2
  40. TFrame.Size = UDim2.new(0, 497, 0, 30)
  41.  
  42. Tiddle.Name = "Tiddle"
  43. Tiddle.Parent = TFrame
  44. Tiddle.BackgroundColor3 = Color3.new(1, 1, 1)
  45. Tiddle.BackgroundTransparency = 1
  46. Tiddle.Size = UDim2.new(0, 497, 0, 30)
  47. Tiddle.Font = Enum.Font.SciFi
  48. Tiddle.Text = "Kohls Admin House Gui"
  49. Tiddle.TextColor3 = Color3.new(0.333333, 1, 0)
  50. Tiddle.TextSize = 25
  51.  
  52. Tutup.Name = "Tutup"
  53. Tutup.Parent = TFrame
  54. Tutup.BackgroundColor3 = Color3.new(0, 0, 0)
  55. Tutup.BorderColor3 = Color3.new(0.333333, 1, 0)
  56. Tutup.BorderSizePixel = 2
  57. Tutup.Position = UDim2.new(0.93664664, 0, 0, 0)
  58. Tutup.Size = UDim2.new(0, 31, 0, 30)
  59. Tutup.Font = Enum.Font.SciFi
  60. Tutup.Text = "X"
  61. Tutup.TextColor3 = Color3.new(0, 1, 0)
  62. Tutup.TextSize = 25
  63. Tutup.MouseButton1Down:connect(function()
  64. Kohls:Destroy()
  65. end)
  66.  
  67.  
  68. Tunda.Name = "Tunda"
  69. Tunda.Parent = TFrame
  70. Tunda.BackgroundColor3 = Color3.new(0, 0, 0)
  71. Tunda.BorderColor3 = Color3.new(0.333333, 1, 0)
  72. Tunda.BorderSizePixel = 2
  73. Tunda.Position = UDim2.new(0.875305355, 0, 0, 0)
  74. Tunda.Size = UDim2.new(0, 31, 0, 30)
  75. Tunda.Font = Enum.Font.SciFi
  76. Tunda.Text = "-"
  77. Tunda.TextColor3 = Color3.new(0, 1, 0)
  78. Tunda.TextSize = 25
  79.  
  80. tunda = false
  81.  
  82. Tunda.MouseButton1Down:connect(function()
  83. if tunda == false then
  84. MFrame:TweenSize(UDim2.new(0, 497, 0, 27),"In","Sine",1,true)
  85. wait(1)
  86. Kick.Visible = false
  87. Ban.Visible = false
  88. Unlock.Visible = false
  89. Noclip.Visible = false
  90. Admin.Visible = false
  91. Nama.Visible = false
  92. Data.Visible = false
  93. Madwe.Visible = false
  94. tunda = true
  95. else
  96. MFrame:TweenSize(UDim2.new(0, 497, 0, 289),"In","Sine",1,true)
  97. wait(1)
  98. Kick.Visible = true
  99. Ban.Visible = true
  100. Unlock.Visible = true
  101. Noclip.Visible = true
  102. Admin.Visible = true
  103. Nama.Visible = true
  104. Data.Visible = true
  105. Madwe.Visible = true
  106. tunda = false
  107. end
  108. end)
  109.  
  110. Nama.Name = "Nama"
  111. Nama.Parent = MFrame
  112. Nama.BackgroundColor3 = Color3.new(0, 0, 0)
  113. Nama.BorderColor3 = Color3.new(0.333333, 1, 0)
  114. Nama.BorderSizePixel = 2
  115. Nama.Position = UDim2.new(0.0824949667, 0, 0.138408303, 0)
  116. Nama.Size = UDim2.new(0, 410, 0, 50)
  117. Nama.Font = Enum.Font.SciFi
  118. Nama.Text = "Nama Player / Player Name"
  119. Nama.TextColor3 = Color3.new(0, 1, 0)
  120. Nama.TextSize = 20
  121.  
  122. Ban.Name = "Ban"
  123. Ban.Parent = MFrame
  124. Ban.BackgroundColor3 = Color3.new(0, 0, 0)
  125. Ban.BorderColor3 = Color3.new(0.333333, 1, 0)
  126. Ban.BorderSizePixel = 2
  127. Ban.Position = UDim2.new(0.145241275, 0, 0.356401384, 0)
  128. Ban.Size = UDim2.new(0, 169, 0, 50)
  129. Ban.Font = Enum.Font.SciFi
  130. Ban.Text = "Banned"
  131. Ban.TextColor3 = Color3.new(0, 1, 0)
  132. Ban.TextSize = 25
  133.  
  134. col.Name = "Color"
  135. col.Parent = MFrame
  136. col.BackgroundColor3 = Color3.new(0, 0, 0)
  137. col.BorderColor3 = Color3.new(0.333333, 1, 0)
  138. col.BorderSizePixel = 2
  139. col.Position = UDim2.new(0.945241275, 0, 0.956401384, 0)
  140. col.Size = UDim2.new(0, 169, 0, 50)
  141. col.Font = Enum.Font.SciFi
  142. col.Text = "colored"
  143. col.TextColor3 = Color3.new(0, 1, 0)
  144. col.TextSize = 25
  145.  
  146. Kick.Name = "Kick"
  147. Kick.Parent = MFrame
  148. Kick.BackgroundColor3 = Color3.new(0, 0, 0)
  149. Kick.BorderColor3 = Color3.new(0.333333, 1, 0)
  150. Kick.BorderSizePixel = 2
  151. Kick.Position = UDim2.new(0.540145934, 0, 0.356401384, 0)
  152. Kick.Size = UDim2.new(0, 169, 0, 50)
  153. Kick.Font = Enum.Font.SciFi
  154. Kick.Text = "Kick"
  155. Kick.TextColor3 = Color3.new(0, 1, 0)
  156. Kick.TextSize = 25
  157.  
  158. Madwe.Name = "Madwe"
  159. Madwe.Parent = MFrame
  160. Madwe.BackgroundColor3 = Color3.new(1, 1, 1)
  161. Madwe.BackgroundTransparency = 1
  162. Madwe.Position = UDim2.new(0, 0, 0.899653971, 0)
  163. Madwe.Size = UDim2.new(0, 165, 0, 29)
  164. Madwe.Font = Enum.Font.SciFi
  165. Madwe.Text = "Made By Anwarun"
  166. Madwe.TextColor3 = Color3.new(0.333333, 1, 0)
  167. Madwe.TextSize = 20
  168.  
  169. Unlock.Name = "Unlock"
  170. Unlock.Parent = MFrame
  171. Unlock.BackgroundColor3 = Color3.new(0, 0, 0)
  172. Unlock.BorderColor3 = Color3.new(0.333333, 1, 0)
  173. Unlock.BorderSizePixel = 2
  174. Unlock.Position = UDim2.new(0.513078451, 0, 0.58477509, 0)
  175. Unlock.Size = UDim2.new(0, 225, 0, 50)
  176. Unlock.Font = Enum.Font.SciFi
  177. Unlock.Text = "Unlock"
  178. Unlock.TextColor3 = Color3.new(0, 1, 0)
  179. Unlock.TextSize = 25
  180.  
  181. Admin.Name = "Admin"
  182. Admin.Parent = MFrame
  183. Admin.BackgroundColor3 = Color3.new(0, 0, 0)
  184. Admin.BorderColor3 = Color3.new(0.333333, 1, 0)
  185. Admin.BorderSizePixel = 2
  186. Admin.Position = UDim2.new(0.0321931541, 0, 0.58477509, 0)
  187. Admin.Size = UDim2.new(0, 225, 0, 50)
  188. Admin.Font = Enum.Font.SciFi
  189. Admin.Text = "Get Admin"
  190. Admin.TextColor3 = Color3.new(0, 1, 0)
  191. Admin.TextSize = 25
  192.  
  193. Noclip.Name = "Noclip"
  194. Noclip.Parent = MFrame
  195. Noclip.BackgroundColor3 = Color3.new(0, 0, 0)
  196. Noclip.BorderColor3 = Color3.new(0.333333, 1, 0)
  197. Noclip.BorderSizePixel = 2
  198. Noclip.Position = UDim2.new(0.619718313, 0, 0.795847774, 0)
  199. Noclip.Size = UDim2.new(0, 172, 0, 41)
  200. Noclip.Font = Enum.Font.SciFi
  201. Noclip.Text = "Noclip"
  202. Noclip.TextColor3 = Color3.new(0, 1, 0)
  203. Noclip.TextSize = 25
  204.  
  205. Data.Name = "Data"
  206. Data.Parent = MFrame
  207. Data.BackgroundColor3 = Color3.new(0, 0, 0)
  208. Data.BorderColor3 = Color3.new(0.333333, 1, 0)
  209. Data.BorderSizePixel = 2
  210. Data.Position = UDim2.new(0.372233391, 0, 0.795847774, 0)
  211. Data.Size = UDim2.new(0, 112, 0, 50)
  212. Data.Font = Enum.Font.SciFi
  213. Data.Text = "Data Unlocked"
  214. Data.TextColor3 = Color3.new(0.333333, 1, 0)
  215. Data.TextScaled = true
  216. Data.TextSize = 14
  217. Data.TextWrapped = true
  218.  
  219. -- Scripts
  220.  
  221. Admin.MouseButton1Down:connect(function()
  222. now = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  223.  
  224. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  225. =
  226. game.Workspace.Terrain.GameFolder.Admin.Pads['Touch to get admin'].Head.CFrame
  227.  
  228. wait(0.2)
  229.  
  230. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = now
  231. end)
  232.  
  233. noclip = false
  234. game:GetService('RunService').Stepped:connect(function()
  235. if noclip then
  236. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  237. Noclip.Text = "Noclip (Aktif)"
  238. end
  239. end)
  240. Noclip.MouseButton1Down:connect(function()
  241. noclip = not noclip
  242. Noclip.Text = "Noclip (Tidak Aktif)"
  243. end)
  244.  
  245. Unlock.MouseButton1Down:connect(function()
  246. for i,v in pairs(game.Workspace:GetDescendants()) do
  247. if v:IsA("Part") then
  248. v.Locked = false
  249. print("Unlocked" .. v.Name)
  250. Data.Text = "Unlocked" .. v.Name
  251. end end
  252. end)
  253.  
  254. function GetPlayer(plrname)
  255. for _,player in pairs(game.Players:GetPlayers()) do
  256. if plrname:lower() == player.Name:sub(1,plrname:len()):lower() then
  257. return player
  258. end
  259. end
  260. return nil
  261. end
  262.  
  263. local Banned = {}
  264.  
  265. Ban.MouseButton1Down:connect(function()
  266. local target = GetPlayer(Nama.Text)
  267. if target then
  268. table.insert(Banned,target.Name)
  269. wait(0.5)
  270. game.Players.LocalPlayer.Backpack.Delete.delete:FireServer(target)
  271. Nama.Text = "Banned ! Player Name :" .. Nama.Text
  272. print('Banned ! Player Name : ',Nama.Text)
  273. end
  274. end)
  275.  
  276. Kick.MouseButton1Down:connect(function()
  277. local target = GetPlayer(Nama.Text)
  278. if target then
  279. game.Players.LocalPlayer.Backpack.Delete.delete:FireServer(target)
  280. Nama.Text = "Kicked ! Player Name :" .. Nama.Text
  281. print("Kicked ! Player Name: ", Nama.Text)
  282. end
  283. end)
  284.  
  285. col.MouseButton1Down:connect(function()
  286. local target = GetPlayer(Nama.Text)
  287. if target then
  288. game:GetService'Players':Chat(":paint "..target.." pink")
  289. print((":paint "..target.." pink"))
  290. Nama.Text = "Kicked ! Player Name :" .. Nama.Text
  291. print("Kicked ! Player Name: ", Nama.Text)
  292. end
  293. end)
  294.  
  295. game.Players.PlayerAdded:connect(function(plr)
  296. for i = 1,#Banned do
  297. if Banned[i] == plr.Name then
  298. game.Players.LocalPlayer.Backpack.Delete.delete:FireServer(plr)
  299. end
  300. end
  301. end)
  302.  
  303. while true do
  304. wait(1)
  305. if not game.Players.LocalPlayer.Backpack:FindFirstChild("Delete") then
  306. game:GetService'Players':Chat(":btools me")
  307. end
  308. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement