pklo

Untitled

Mar 16th, 2016
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 51.80 KB | None | 0 0
  1. s = Instance.new("Sky")
  2. s.Name = "Sky"
  3. s.Parent = game.Lighting
  4.  
  5. playername100 = game.Players.LocalPlayer.Name
  6.  
  7. god = false
  8.  
  9. servertrollguiv1 = Instance.new("ScreenGui")
  10. servertrollguiv1.Parent = game:GetService("CoreGui")
  11. servertrollguiv1.Name = ("Server Troll Gui V1")
  12.  
  13. interface = Instance.new("Frame")
  14. interface.Parent = servertrollguiv1
  15. interface.Name = ("Interface")
  16. interface.BackgroundTransparency = 1
  17. interface.Visible = false
  18.  
  19. page1 = Instance.new("Frame")
  20. page1.Parent = interface
  21. page1.Name = ("Page 1")
  22. page1.BackgroundTransparency = 1
  23. page1.Visible = true
  24.  
  25. page2 = Instance.new("Frame")
  26. page2.Parent = interface
  27. page2.Name = ("Page 2")
  28. page2.BackgroundTransparency = 1
  29. page2.Visible = false
  30.  
  31. settings = Instance.new("Frame")
  32. settings.Parent = interface
  33. settings.Name = ("Settings")
  34. settings.BackgroundTransparency = 1
  35. settings.Visible = false
  36.  
  37. showgui = Instance.new("TextButton")
  38. showgui.Parent = servertrollguiv1
  39. showgui.Position = UDim2.new(0, 0, 0, 610)
  40. showgui.Size = UDim2.new(0, 100, 0, 20)
  41. showgui.Name = ("Show Gui")
  42. showgui.Text = ("Show Gui")
  43. showgui.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  44. showgui.Font = ("SourceSans")
  45. showgui.FontSize = ("Size14")
  46. showgui.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  47.  
  48. function showguiClick()
  49. if interface.Visible == false then
  50. showgui.Text = ("Hide Gui")
  51. interface.Visible = true else
  52. showgui.Text = ("Show Gui")
  53. interface.Visible = false
  54. end
  55. end
  56.  
  57. showgui.MouseButton1Down:connect(showguiClick)
  58.  
  59. skyboxidbox = Instance.new("TextBox")
  60. skyboxidbox.Parent = settings
  61. skyboxidbox.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  62. skyboxidbox.Position = UDim2.new(0, 101, 0, 358)
  63. skyboxidbox.Size = UDim2.new(0, 100, 0, 20)
  64. skyboxidbox.Font = ("SourceSans")
  65. skyboxidbox.FontSize = ("Size14")
  66. skyboxidbox.Text = ("142285971")
  67. skyboxidbox.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  68.  
  69. skyboxidlabel = Instance.new("TextLabel")
  70. skyboxidlabel.Parent = settings
  71. skyboxidlabel.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  72. skyboxidlabel.Position = UDim2.new(0, 0, 0, 358)
  73. skyboxidlabel.Size = UDim2.new(0, 100, 0, 20)
  74. skyboxidlabel.Font = ("SourceSans")
  75. skyboxidlabel.FontSize = ("Size14")
  76. skyboxidlabel.Text = ("Skybox/Decal ID:")
  77. skyboxidlabel.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  78.  
  79. settingsbutton = Instance.new("TextButton")
  80. settingsbutton.Parent = interface
  81. settingsbutton.Position = UDim2.new(0, 101, 0, 610)
  82. settingsbutton.Size = UDim2.new(0, 100, 0, 20)
  83. settingsbutton.Name = ("Settings Button")
  84. settingsbutton.Text = ("Open Settings")
  85. settingsbutton.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  86. settingsbutton.Font = ("SourceSans")
  87. settingsbutton.FontSize = ("Size14")
  88. settingsbutton.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  89.  
  90. function settingsbuttonClick()
  91. if settings.Visible == false then
  92. settingsbutton.Text = ("Close Settings")
  93. settings.Visible = true else
  94. settingsbutton.Text = ("Open Settings")
  95. settings.Visible = false
  96. end
  97. end
  98.  
  99. settingsbutton.MouseButton1Down:connect(settingsbuttonClick)
  100.  
  101. leftarrow = Instance.new("TextButton")
  102. leftarrow.Parent = interface
  103. leftarrow.Position = UDim2.new(0, 0, 0, 589)
  104. leftarrow.Size = UDim2.new(0, 100, 0, 20)
  105. leftarrow.Name = ("<")
  106. leftarrow.Text = ("<")
  107. leftarrow.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  108. leftarrow.Font = ("SourceSans")
  109. leftarrow.FontSize = ("Size14")
  110. leftarrow.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  111.  
  112. function leftarrowClick()
  113. if page1.Visible == true then
  114. page1.Visible = false
  115. page2.Visible = true else
  116. if page2.Visible == true then
  117. page2.Visible = false
  118. page1.Visible = true
  119. end
  120. end
  121. end
  122.  
  123. leftarrow.MouseButton1Down:connect(leftarrowClick)
  124.  
  125. rightarrow = Instance.new("TextButton")
  126. rightarrow.Parent = interface
  127. rightarrow.Position = UDim2.new(0, 101, 0, 589)
  128. rightarrow.Size = UDim2.new(0, 100, 0, 20)
  129. rightarrow.Name = (">")
  130. rightarrow.Text = (">")
  131. rightarrow.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  132. rightarrow.Font = ("SourceSans")
  133. rightarrow.FontSize = ("Size14")
  134. rightarrow.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  135.  
  136. function rightarrowClick()
  137. if page1.Visible == true then
  138. page1.Visible = false
  139. page2.Visible = true else
  140. if page2.Visible == true then
  141. page2.Visible = false
  142. page1.Visible = true
  143. end
  144. end
  145. end
  146.  
  147. rightarrow.MouseButton1Down:connect(rightarrowClick)
  148.  
  149. godtoggle = Instance.new("TextButton")
  150. godtoggle.Parent = settings
  151. godtoggle.Position = UDim2.new(0, 202, 0, 358)
  152. godtoggle.Size = UDim2.new(0, 100, 0, 20)
  153. godtoggle.Name = ("God Toggle")
  154. godtoggle.Text = ("God Mode: Off")
  155. godtoggle.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  156. godtoggle.Font = ("SourceSans")
  157. godtoggle.FontSize = ("Size14")
  158. godtoggle.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  159.  
  160. function godtoggleClick()
  161. if god == false then
  162. game.Workspace[playername100].Humanoid.MaxHealth = math.huge
  163. game.Workspace[playername100].Humanoid.Health = math.huge
  164. god = true
  165. godtoggle.Text = ("God Mode: On")
  166. else
  167. game.Workspace[playername100].Humanoid.MaxHealth = 100
  168. game.Workspace[playername100].Humanoid.Health = 100
  169. god = false
  170. godtoggle.Text = ("God Mode: Off")
  171. end
  172. end
  173.  
  174. godtoggle.MouseButton1Down:connect(godtoggleClick)
  175.  
  176. giveairstrike = Instance.new("TextButton")
  177. giveairstrike.Parent = settings
  178. giveairstrike.Position = UDim2.new(0, 202, 0, 337)
  179. giveairstrike.Size = UDim2.new(0, 100, 0, 20)
  180. giveairstrike.Name = ("Give Airstrike")
  181. giveairstrike.Text = ("Give Airstrike")
  182. giveairstrike.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  183. giveairstrike.Font = ("SourceSans")
  184. giveairstrike.FontSize = ("Size14")
  185. giveairstrike.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  186.  
  187. function giveairstrikeClick()
  188. x = game:GetService("InsertService"):LoadAsset(88885539) x.Parent = game.Workspace x:makeJoints() x:MoveTo(game.Players[playername100].Character.Head.Position)
  189. end
  190.  
  191. giveairstrike.MouseButton1Down:connect(giveairstrikeClick)
  192.  
  193. givesword = Instance.new("TextButton")
  194. givesword.Parent = settings
  195. givesword.Position = UDim2.new(0, 202, 0, 316)
  196. givesword.Size = UDim2.new(0, 100, 0, 20)
  197. givesword.Name = ("Give Sword")
  198. givesword.Text = ("Give Sword")
  199. givesword.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  200. givesword.Font = ("SourceSans")
  201. givesword.FontSize = ("Size14")
  202. givesword.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  203.  
  204. function giveswordClick()
  205. x = game:GetService("InsertService"):LoadAsset(47433) x.Parent = game.Workspace x:makeJoints() x:MoveTo(game.Players[playername100].Character.Head.Position)
  206. end
  207.  
  208. givesword.MouseButton1Down:connect(giveswordClick)
  209.  
  210. givegravitycoil = Instance.new("TextButton")
  211. givegravitycoil.Parent = settings
  212. givegravitycoil.Position = UDim2.new(0, 202, 0, 295)
  213. givegravitycoil.Size = UDim2.new(0, 100, 0, 20)
  214. givegravitycoil.Name = ("Give Gravity Coil")
  215. givegravitycoil.Text = ("Give Gravity Coil")
  216. givegravitycoil.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  217. givegravitycoil.Font = ("SourceSans")
  218. givegravitycoil.FontSize = ("Size14")
  219. givegravitycoil.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  220.  
  221. function givegravitycoilClick()
  222. x = game:GetService("InsertService"):LoadAsset(16688968) x.Parent = game.Workspace x:makeJoints() x:MoveTo(game.Players[playername100].Character.Head.Position)
  223. end
  224.  
  225. givegravitycoil.MouseButton1Down:connect(givegravitycoilClick)
  226.  
  227. heal = Instance.new("TextButton")
  228. heal.Parent = settings
  229. heal.Position = UDim2.new(0, 202, 0, 274)
  230. heal.Size = UDim2.new(0, 100, 0, 20)
  231. heal.Name = ("Heal")
  232. heal.Text = ("Heal")
  233. heal.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  234. heal.Font = ("SourceSans")
  235. heal.FontSize = ("Size14")
  236. heal.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  237.  
  238. function healClick()
  239. game.Workspace[playername100].Humanoid.MaxHealth = 100
  240. game.Workspace[playername100].Humanoid.Health = 100
  241. end
  242.  
  243. heal.MouseButton1Down:connect(healClick)
  244.  
  245. givestampertools = Instance.new("TextButton")
  246. givestampertools.Parent = settings
  247. givestampertools.Position = UDim2.new(0, 202, 0, 253)
  248. givestampertools.Size = UDim2.new(0, 100, 0, 20)
  249. givestampertools.Name = ("Give Stamper Tools")
  250. givestampertools.Text = ("Give Stamper Tools")
  251. givestampertools.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  252. givestampertools.Font = ("SourceSans")
  253. givestampertools.FontSize = ("Size14")
  254. givestampertools.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  255.  
  256. function givestampertoolsClick()
  257. x = game:GetService("InsertService"):LoadAsset(73089166) x.Parent = game.Workspace x:makeJoints() x:MoveTo(game.Players[playername100].Character.Head.Position)
  258. x = game:GetService("InsertService"):LoadAsset(73089204) x.Parent = game.Workspace x:makeJoints() x:MoveTo(game.Players[playername100].Character.Head.Position)
  259. x = game:GetService("InsertService"):LoadAsset(73089190) x.Parent = game.Workspace x:makeJoints() x:MoveTo(game.Players[playername100].Character.Head.Position)
  260. x = game:GetService("InsertService"):LoadAsset(58880579) x.Parent = game.Workspace x:makeJoints() x:MoveTo(game.Players[playername100].Character.Head.Position)
  261. x = game:GetService("InsertService"):LoadAsset(60791062) x.Parent = game.Workspace x:makeJoints() x:MoveTo(game.Players[playername100].Character.Head.Position)
  262. x = game:GetService("InsertService"):LoadAsset(73089239) x.Parent = game.Workspace x:makeJoints() x:MoveTo(game.Players[playername100].Character.Head.Position)
  263. end
  264.  
  265. givestampertools.MouseButton1Down:connect(givestampertoolsClick)
  266.  
  267. walkspeedlabel = Instance.new("TextLabel")
  268. walkspeedlabel.Parent = settings
  269. walkspeedlabel.Position = UDim2.new(0, 0, 0, 337)
  270. walkspeedlabel.Size = UDim2.new(0, 100, 0, 20)
  271. walkspeedlabel.Name = ("Walkspeed Label")
  272. walkspeedlabel.Text = ("Walkspeed:")
  273. walkspeedlabel.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  274. walkspeedlabel.Font = ("SourceSans")
  275. walkspeedlabel.FontSize = ("Size14")
  276. walkspeedlabel.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  277.  
  278. walkspeedbox = Instance.new("TextBox")
  279. walkspeedbox.Parent = settings
  280. walkspeedbox.Position = UDim2.new(0, 101, 0, 337)
  281. walkspeedbox.Size = UDim2.new(0, 100, 0, 20)
  282. walkspeedbox.Name = ("Walkspeed Box")
  283. walkspeedbox.Text = ("50")
  284. walkspeedbox.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  285. walkspeedbox.Font = ("SourceSans")
  286. walkspeedbox.FontSize = ("Size14")
  287. walkspeedbox.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  288.  
  289. namelabel = Instance.new("TextLabel")
  290. namelabel.Parent = settings
  291. namelabel.Position = UDim2.new(0, 0, 0, 316)
  292. namelabel.Size = UDim2.new(0, 100, 0, 20)
  293. namelabel.Name = ("Name Label")
  294. namelabel.Text = ("Change Name:")
  295. namelabel.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  296. namelabel.Font = ("SourceSans")
  297. namelabel.FontSize = ("Size14")
  298. namelabel.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  299.  
  300. namebox = Instance.new("TextBox")
  301. namebox.Parent = settings
  302. namebox.Position = UDim2.new(0, 101, 0, 316)
  303. namebox.Size = UDim2.new(0, 100, 0, 20)
  304. namebox.Name = ("Name Box")
  305. namebox.Text = ("God")
  306. namebox.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  307. namebox.Font = ("SourceSans")
  308. namebox.FontSize = ("Size14")
  309. namebox.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  310.  
  311. leaderstatchangelabel = Instance.new("TextLabel")
  312. leaderstatchangelabel.Parent = settings
  313. leaderstatchangelabel.Position = UDim2.new(0, 0, 0, 232)
  314. leaderstatchangelabel.Size = UDim2.new(0, 100, 0, 20)
  315. leaderstatchangelabel.Name = ("Leaderstat Change Label")
  316. leaderstatchangelabel.Text = ("Leaderstat Change:")
  317. leaderstatchangelabel.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  318. leaderstatchangelabel.Font = ("SourceSans")
  319. leaderstatchangelabel.FontSize = ("Size14")
  320. leaderstatchangelabel.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  321.  
  322. leaderstatchangebox = Instance.new("TextBox")
  323. leaderstatchangebox.Parent = settings
  324. leaderstatchangebox.Position = UDim2.new(0, 101, 0, 232)
  325. leaderstatchangebox.Size = UDim2.new(0, 100, 0, 20)
  326. leaderstatchangebox.Name = ("Leaderstat Change Box")
  327. leaderstatchangebox.Text = ("Leaderstat")
  328. leaderstatchangebox.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  329. leaderstatchangebox.Font = ("SourceSans")
  330. leaderstatchangebox.FontSize = ("Size14")
  331. leaderstatchangebox.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  332.  
  333. leaderstatchangebox1 = Instance.new("TextBox")
  334. leaderstatchangebox1.Parent = settings
  335. leaderstatchangebox1.Position = UDim2.new(0, 202, 0, 232)
  336. leaderstatchangebox1.Size = UDim2.new(0, 100, 0, 20)
  337. leaderstatchangebox1.Name = ("Leaderstat Change Box 1")
  338. leaderstatchangebox1.Text = ("Value")
  339. leaderstatchangebox1.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  340. leaderstatchangebox1.Font = ("SourceSans")
  341. leaderstatchangebox1.FontSize = ("Size14")
  342. leaderstatchangebox1.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  343.  
  344. leaderstataddlabel = Instance.new("TextLabel")
  345. leaderstataddlabel.Parent = settings
  346. leaderstataddlabel.Position = UDim2.new(0, 0, 0, 211)
  347. leaderstataddlabel.Size = UDim2.new(0, 100, 0, 20)
  348. leaderstataddlabel.Name = ("Leaderstat Add Label")
  349. leaderstataddlabel.Text = ("Leaderstat Add:")
  350. leaderstataddlabel.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  351. leaderstataddlabel.Font = ("SourceSans")
  352. leaderstataddlabel.FontSize = ("Size14")
  353. leaderstataddlabel.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  354.  
  355. leaderstataddbox = Instance.new("TextBox")
  356. leaderstataddbox.Parent = settings
  357. leaderstataddbox.Position = UDim2.new(0, 101, 0, 211)
  358. leaderstataddbox.Size = UDim2.new(0, 100, 0, 20)
  359. leaderstataddbox.Name = ("Leaderstat Add Box")
  360. leaderstataddbox.Text = ("Leaderstat")
  361. leaderstataddbox.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  362. leaderstataddbox.Font = ("SourceSans")
  363. leaderstataddbox.FontSize = ("Size14")
  364. leaderstataddbox.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  365.  
  366. leaderstataddbox1 = Instance.new("TextBox")
  367. leaderstataddbox1.Parent = settings
  368. leaderstataddbox1.Position = UDim2.new(0, 202, 0, 211)
  369. leaderstataddbox1.Size = UDim2.new(0, 100, 0, 20)
  370. leaderstataddbox1.Name = ("Leaderstat Add Box 1")
  371. leaderstataddbox1.Text = ("Amount to add by")
  372. leaderstataddbox1.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  373. leaderstataddbox1.Font = ("SourceSans")
  374. leaderstataddbox1.FontSize = ("Size14")
  375. leaderstataddbox1.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  376.  
  377. forcetplabel = Instance.new("TextLabel")
  378. forcetplabel.Parent = settings
  379. forcetplabel.Position = UDim2.new(0, 0, 0, 190)
  380. forcetplabel.Size = UDim2.new(0, 100, 0, 20)
  381. forcetplabel.Name = ("Force Teleport Label")
  382. forcetplabel.Text = ("Force TP ID:")
  383. forcetplabel.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  384. forcetplabel.Font = ("SourceSans")
  385. forcetplabel.FontSize = ("Size14")
  386. forcetplabel.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  387.  
  388. forcetpbox = Instance.new("TextBox")
  389. forcetpbox.Parent = settings
  390. forcetpbox.Position = UDim2.new(0, 101, 0, 190)
  391. forcetpbox.Size = UDim2.new(0, 100, 0, 20)
  392. forcetpbox.Name = ("Force Teleport Box")
  393. forcetpbox.Text = ("134323087")
  394. forcetpbox.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  395. forcetpbox.Font = ("SourceSans")
  396. forcetpbox.FontSize = ("Size14")
  397. forcetpbox.BackgroundColor3 = Color3.new(85/255, 255/255, 0/255)
  398.  
  399. setskybox = Instance.new("TextButton")
  400. setskybox.Parent = page1
  401. setskybox.Name = ("Set Skybox")
  402. setskybox.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  403. setskybox.Position = UDim2.new(0, 0, 0, 568)
  404. setskybox.Size = UDim2.new(0, 100, 0, 20)
  405. setskybox.Text = ("Set Skybox")
  406. setskybox.Font = ("SourceSans")
  407. setskybox.FontSize = ("Size14")
  408. setskybox.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  409.  
  410. function setskyboxClick()
  411. skyboxID = (skyboxidbox.Text)
  412. s.SkyboxBk = "http://www.roblox.com/asset/?id="..skyboxID
  413. s.SkyboxDn = "http://www.roblox.com/asset/?id="..skyboxID
  414. s.SkyboxFt = "http://www.roblox.com/asset/?id="..skyboxID
  415. s.SkyboxLf = "http://www.roblox.com/asset/?id="..skyboxID
  416. s.SkyboxRt = "http://www.roblox.com/asset/?id="..skyboxID
  417. s.SkyboxUp = "http://www.roblox.com/asset/?id="..skyboxID
  418. game.Lighting.TimeOfDay = 12
  419. end
  420.  
  421. setskybox.MouseButton1Down:connect(setskyboxClick)
  422.  
  423. clearterrain = Instance.new("TextButton")
  424. clearterrain.Parent = page1
  425. clearterrain.Name = ("Clear Terrain")
  426. clearterrain.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  427. clearterrain.Position = UDim2.new(0, 0, 0, 547)
  428. clearterrain.Size = UDim2.new(0, 100, 0, 20)
  429. clearterrain.Text = ("Clear Terrain")
  430. clearterrain.Font = ("SourceSans")
  431. clearterrain.FontSize = ("Size14")
  432. clearterrain.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  433.  
  434. function clearterrainClick()
  435. game.Workspace.Terrain:Clear()
  436. end
  437.  
  438. clearterrain.MouseButton1Down:connect(clearterrainClick)
  439.  
  440. unanchorall = Instance.new("TextButton")
  441. unanchorall.Parent = page1
  442. unanchorall.Name = ("Unanchor All")
  443. unanchorall.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  444. unanchorall.Position = UDim2.new(0, 0, 0, 526)
  445. unanchorall.Size = UDim2.new(0, 100, 0, 20)
  446. unanchorall.Text = ("Unanchor All")
  447. unanchorall.Font = ("SourceSans")
  448. unanchorall.FontSize = ("Size14")
  449. unanchorall.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  450.  
  451. function unanchorallClick()
  452. g = game.Workspace:GetChildren () do
  453. for i = 1, #g do
  454. if g[i].ClassName == "Part" then
  455. g[i].Anchored = false else if
  456. g[i].ClassName == "Model" then
  457. y = g[i]:GetChildren ()
  458. for i = 1, #y do
  459. if y[i].ClassName == "Part" then
  460. y[i].Anchored = false
  461. end
  462. end
  463. end
  464. end
  465. end
  466. end
  467. end
  468.  
  469. unanchorall.MouseButton1Down:connect(unanchorallClick)
  470.  
  471. createbaseplate = Instance.new("TextButton")
  472. createbaseplate.Parent = page1
  473. createbaseplate.Name = ("Create Baseplate")
  474. createbaseplate.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  475. createbaseplate.Position = UDim2.new(0, 0, 0, 505)
  476. createbaseplate.Size = UDim2.new(0, 100, 0, 20)
  477. createbaseplate.Text = ("Create Baseplate")
  478. createbaseplate.Font = ("SourceSans")
  479. createbaseplate.FontSize = ("Size14")
  480. createbaseplate.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  481.  
  482. function createbaseplateClick()
  483. local pt = Instance.new("Part")
  484. pt.BrickColor = BrickColor.new("Silver")
  485. pt.Anchored = true
  486. pt.CanCollide = true
  487. pt.BottomSurface = "Weld"
  488. pt.Parent = workspace
  489. pt.Name = "yolo"
  490. pt.Size = Vector3.new(1000, 1, 1000)
  491. end
  492.  
  493. createbaseplate.MouseButton1Down:connect(createbaseplateClick)
  494.  
  495. killall = Instance.new("TextButton")
  496. killall.Parent = page1
  497. killall.Name = ("Kill All")
  498. killall.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  499. killall.Position = UDim2.new(0, 0, 0, 484)
  500. killall.Size = UDim2.new(0, 100, 0, 20)
  501. killall.Text = ("Kill All")
  502. killall.Font = ("SourceSans")
  503. killall.FontSize = ("Size14")
  504. killall.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  505.  
  506. function killallClick()
  507. for i,v in pairs(game.Players:GetChildren()) do
  508. v.Character.Humanoid.Health = 0
  509. end
  510. end
  511.  
  512. killall.MouseButton1Down:connect(killallClick)
  513.  
  514. kickall = Instance.new("TextButton")
  515. kickall.Parent = page1
  516. kickall.Name = ("Kick All")
  517. kickall.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  518. kickall.Position = UDim2.new(0, 0, 0, 463)
  519. kickall.Size = UDim2.new(0, 100, 0, 20)
  520. kickall.Text = ("Kick All")
  521. kickall.Font = ("SourceSans")
  522. kickall.FontSize = ("Size14")
  523. kickall.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  524.  
  525. function kickallClick()
  526. for i,v in pairs(game.Players:GetChildren()) do
  527. v:Remove()
  528. end
  529. end
  530.  
  531. kickall.MouseButton1Down:connect(kickallClick)
  532.  
  533. removeadmin = Instance.new("TextButton")
  534. removeadmin.Parent = page1
  535. removeadmin.Name = ("Remove Admin")
  536. removeadmin.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  537. removeadmin.Position = UDim2.new(0, 0, 0, 442)
  538. removeadmin.Size = UDim2.new(0, 100, 0, 20)
  539. removeadmin.Text = ("Remove Admin")
  540. removeadmin.Font = ("SourceSans")
  541. removeadmin.FontSize = ("Size14")
  542. removeadmin.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  543.  
  544. function removeadminClick()
  545. game.Workspace["Kohl's Admin Commands V2"]:Destroy()
  546. end
  547.  
  548. removeadmin.MouseButton1Down:connect(removeadminClick)
  549.  
  550. apoctroll = Instance.new("TextButton")
  551. apoctroll.Parent = page1
  552. apoctroll.Name = ("Apoc Troll")
  553. apoctroll.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  554. apoctroll.Position = UDim2.new(0, 0, 0, 421)
  555. apoctroll.Size = UDim2.new(0, 100, 0, 20)
  556. apoctroll.Text = ("Apoc Troll")
  557. apoctroll.Font = ("SourceSans")
  558. apoctroll.FontSize = ("Size14")
  559. apoctroll.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  560.  
  561. function apoctrollClick()
  562. ds = CFrame.new(game.Players.LocalPlayer.Character.Head.Position)
  563. wait()
  564. for i,v in pairs(game.Players:GetChildren()) do
  565. if v.Name == game.Players.LocalPlayer.Name then
  566. else
  567. v.Character.Torso.CFrame = ds * CFrame.new(math.random(0,50),0,math.random(0,50))
  568. v.Character:BreakJoints()
  569. end
  570. end
  571. end
  572.  
  573. apoctroll.MouseButton1Down:connect(apoctrollClick)
  574.  
  575. brickspam = Instance.new("TextButton")
  576. brickspam.Parent = page1
  577. brickspam.Name = ("Brick Spam")
  578. brickspam.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  579. brickspam.Position = UDim2.new(0, 0, 0, 400)
  580. brickspam.Size = UDim2.new(0, 100, 0, 20)
  581. brickspam.Text = ("Brick Spam")
  582. brickspam.Font = ("SourceSans")
  583. brickspam.FontSize = ("Size14")
  584. brickspam.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  585.  
  586. function brickspamClick()
  587. local brick = Instance.new("Part")
  588. while true do
  589. local b = brick:clone()
  590. b.Parent = game.Workspace
  591. if game.Workspace[playername100] ~= nil then
  592. local mainpos = game.Workspace[playername100].Head.Position
  593. b.Position = Vector3.new(mainpos.x, mainpos.y +3, mainpos.z)
  594. wait()
  595. end
  596. end
  597. end
  598.  
  599. brickspam.MouseButton1Down:connect(brickspamClick)
  600.  
  601. kickgui = Instance.new("TextButton")
  602. kickgui.Parent = page1
  603. kickgui.Name = ("Kick Gui")
  604. kickgui.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  605. kickgui.Position = UDim2.new(0, 0, 0, 379)
  606. kickgui.Size = UDim2.new(0, 100, 0, 20)
  607. kickgui.Text = ("Kick Gui")
  608. kickgui.Font = ("SourceSans")
  609. kickgui.FontSize = ("Size14")
  610. kickgui.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  611.  
  612. function kickguiClick()
  613. me = game.Players.LocalPlayer
  614. gui = Instance.new("ScreenGui")
  615. gui.Parent = me.PlayerGui
  616. gui.Name = "Kick"
  617.  
  618. pos = 135
  619. pos2 = 10
  620. pos3 = 0
  621.  
  622. enabled = false
  623.  
  624. button = Instance.new("TextButton")
  625. button.Parent = gui
  626. button.Size = UDim2.new(0, 100, 0, 30)
  627. button.Position = UDim2.new(0, 8, 0, pos)
  628. button.Text = "Kick"
  629. button.MouseButton1Click:connect(function()
  630. if enabled == false then
  631. enabled = true
  632. local a = game.Players:GetChildren()
  633. red = 0
  634. green = 0.5
  635. blue = 0
  636. for i=1, #a do
  637. wait()
  638. pos2 = pos2 + 23
  639. if pos2 >= 450 then
  640. pos3 = pos3 + 103
  641. pos2 = 33
  642. end
  643. if green <= 0.9 then
  644. green = green + 0.46
  645. elseif green >= 0.9 then
  646. green = green - 0.46
  647. end
  648. local bu = Instance.new("TextButton")
  649. bu.Parent = button
  650. bu.Size = UDim2.new(0, 100, 0, 20)
  651. bu.Position = UDim2.new(0, pos3, 0, pos2)
  652. bu.Text = a[i].Name
  653. bu.BackgroundTransparency = 1
  654. bu.TextTransparency = 1
  655. bu.BackgroundColor3 = Color3.new(red,green,blue)
  656. coroutine.resume(coroutine.create(function()
  657. for i=1, 3 do
  658. wait()
  659. bu.BackgroundTransparency = bu.BackgroundTransparency - 0.34
  660. bu.TextTransparency = bu.BackgroundTransparency
  661. end
  662. end))
  663. bu.MouseButton1Down:connect(function()
  664. local play = game.Players:findFirstChild(bu.Text)
  665. if play ~= nil then
  666. play:remove()
  667. bu:remove()
  668. end
  669. end)
  670. end
  671. elseif enabled == true then
  672. enabled = false
  673. pos2 = 10
  674. pos3 = 0
  675. local o = button:GetChildren()
  676. for i=1, #o do
  677. wait()
  678. o[i]:remove()
  679. end
  680. end
  681. end)
  682. end
  683.  
  684. kickgui.MouseButton1Down:connect(kickguiClick)
  685.  
  686. knife = Instance.new("TextButton")
  687. knife.Parent = page1
  688. knife.Name = ("Knife")
  689. knife.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  690. knife.Position = UDim2.new(0, 101, 0, 568)
  691. knife.Size = UDim2.new(0, 100, 0, 20)
  692. knife.Text = ("Knife")
  693. knife.Font = ("SourceSans")
  694. knife.FontSize = ("Size14")
  695. knife.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  696.  
  697. function knifeClick()
  698. game:GetObjects("rbxassetid://92001561")[1].Parent=game.Players.LocalPlayer.Backpack
  699. end
  700.  
  701. knife.MouseButton1Down:connect(knifeClick)
  702.  
  703. setwalkspeed = Instance.new("TextButton")
  704. setwalkspeed.Parent = page1
  705. setwalkspeed.Name = ("Set Walkspeed")
  706. setwalkspeed.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  707. setwalkspeed.Position = UDim2.new(0, 202, 0, 568)
  708. setwalkspeed.Size = UDim2.new(0, 100, 0, 20)
  709. setwalkspeed.Text = ("Set Walkspeed")
  710. setwalkspeed.Font = ("SourceSans")
  711. setwalkspeed.FontSize = ("Size14")
  712. setwalkspeed.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  713.  
  714. function setwalkspeedClick()
  715. walkspeed = walkspeedbox.Text
  716. game.Workspace[playername100].Humanoid.WalkSpeed = walkspeed
  717. end
  718.  
  719. setwalkspeed.MouseButton1Down:connect(setwalkspeedClick)
  720.  
  721. remsoadmin = Instance.new("TextButton")
  722. remsoadmin.Parent = page1
  723. remsoadmin.Name = ("Remso Admin")
  724. remsoadmin.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  725. remsoadmin.Position = UDim2.new(0, 101, 0, 547)
  726. remsoadmin.Size = UDim2.new(0, 100, 0, 20)
  727. remsoadmin.Text = ("Remso Admin")
  728. remsoadmin.Font = ("SourceSans")
  729. remsoadmin.FontSize = ("Size14")
  730. remsoadmin.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  731.  
  732. function remsoadminClick()
  733. str_srce = "113102337" loadstring(game:GetObjects("rbxassetid://"..str_srce)[1].Source)()
  734. end
  735.  
  736. remsoadmin.MouseButton1Down:connect(remsoadminClick)
  737.  
  738. antirobloxian = Instance.new("TextButton")
  739. antirobloxian.Parent = page1
  740. antirobloxian.Name = ("Anti-Robloxian")
  741. antirobloxian.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  742. antirobloxian.Position = UDim2.new(0, 101, 0, 442)
  743. antirobloxian.Size = UDim2.new(0, 100, 0, 20)
  744. antirobloxian.Text = ("Anti-Robloxian")
  745. antirobloxian.Font = ("SourceSans")
  746. antirobloxian.FontSize = ("Size14")
  747. antirobloxian.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  748.  
  749. function antirobloxianClick()
  750. local Player = game.Players.LocalPlayer
  751. local distance = 13
  752. while true do
  753. if Player then
  754. c = game.Players:GetChildren()
  755. for i = 1, #c do
  756. if c[i].Name ~= Player.Name then
  757. if c[i]:DistanceFromCharacter(game.Workspace[Player.Name].Torso.Position) <= distance then
  758. c[i].Character:BreakJoints()
  759. c2 = c[i].Character:GetChildren()
  760. for i2 =1, #c2 do
  761. if c2[i2]:IsA("BasePart") then
  762. Instance.new("Fire", c2[i2])
  763. end end end end end end wait() end
  764. end
  765.  
  766. antirobloxian.MouseButton1Down:connect(antirobloxianClick)
  767.  
  768. headshake = Instance.new("TextButton")
  769. headshake.Parent = page1
  770. headshake.Name = ("Head Shake")
  771. headshake.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  772. headshake.Position = UDim2.new(0, 101, 0, 421)
  773. headshake.Size = UDim2.new(0, 100, 0, 20)
  774. headshake.Text = ("Head Shake")
  775. headshake.Font = ("SourceSans")
  776. headshake.FontSize = ("Size14")
  777. headshake.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  778.  
  779. function headshakeClick()
  780. for X = 1, math.huge, 0.2 do
  781. wait()
  782. game.Workspace[playername100].Torso.Neck.C0 = CFrame.new(math.sin(X) / 2,1.5,0)
  783. game.Workspace[playername100].Torso.Neck.C1 = CFrame.new(0,0,0)
  784. end
  785.  
  786.  
  787. for X = 1, math.huge, 0.1 do
  788. wait()
  789. game.Workspace[playername100].Torso.Neck.C0 = CFrame.new(0,1.5,0) * CFrame.fromAxisAngle(Vector3.new(0,1,0), X)
  790. game.Workspace[playername100].Torso.Neck.C1 = CFrame.new(0,0,0)
  791. end
  792.  
  793.  
  794.  
  795.  
  796. for _,c in pairs(game.Players:GetChildren()) do
  797. c.Character.Head.Mesh.Scale = Vector3.new(100, 100, 100)
  798. end
  799.  
  800.  
  801.  
  802. for _,c in pairs(game.Players:GetChildren()) do
  803. c.Character.Head.Mesh.Scale = Vector3.new(1.25, 1.25, 1.25)
  804. end
  805. end
  806.  
  807. headshake.MouseButton1Down:connect(headshakeClick)
  808.  
  809. xadmin = Instance.new("TextButton")
  810. xadmin.Parent = page1
  811. xadmin.Name = ("X Admin")
  812. xadmin.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  813. xadmin.Position = UDim2.new(0, 101, 0, 400)
  814. xadmin.Size = UDim2.new(0, 100, 0, 20)
  815. xadmin.Text = ("X Admin")
  816. xadmin.Font = ("SourceSans")
  817. xadmin.FontSize = ("Size14")
  818. xadmin.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  819.  
  820. function xadminClick()
  821. game:GetObjects("rbxassetid://142126001")[1].Parent=game.Players.LocalPlayer.Backpack
  822. end
  823.  
  824. xadmin.MouseButton1Down:connect(xadminClick)
  825.  
  826. kool = Instance.new("TextButton")
  827. kool.Parent = page1
  828. kool.Name = ("Dominus Ghost")
  829. kool.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  830. kool.Position = UDim2.new(0, 101, 0, 526)
  831. kool.Size = UDim2.new(0, 100, 0, 20)
  832. kool.Text = ("Dominus Ghost")
  833. kool.Font = ("SourceSans")
  834. kool.FontSize = ("Size14")
  835. kool.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  836.  
  837. function koolClick()
  838. function nob(who,tra,hat)
  839. c=who.Character
  840. pcall(function()u=c["Body Colors"]
  841. u.HeadColor=BrickColor.new("Black")
  842. u.LeftLegColor=BrickColor.new("Black")
  843. u.RightLegolor=BrickColor.new("Black")
  844. u.LeftArmColor=BrickColor.new("Black")
  845. u.TorsoColor=BrickColor.new("Black")
  846. u.RightArmColor=BrickColor.new("Black")
  847. end)
  848. pcall(function()c.Shirt:Destroy() c.Pants:Destroy() end)
  849. for i,v in pairs(c:GetChildren()) do
  850. if v:IsA("BasePart") then
  851. v.Transparency=tra
  852. if v.Name=="HumanoidRootPart" or v.Name=="Head" then
  853. v.Transparency=1
  854. end
  855. wait()
  856. v.BrickColor=BrickColor.new("Black")
  857. elseif v:IsA("Hat") then
  858. v:Destroy()
  859. end
  860. end
  861. xx=game:service("InsertService"):LoadAsset(hat)
  862. xy=game:service("InsertService"):LoadAsset(47433)["LinkedSword"]
  863. xy.Parent=who.Backpack
  864. for a,hat in pairs(xx:children()) do
  865. hat.Parent=c
  866. end
  867. xx:Destroy()
  868. h=who.Character.Humanoid
  869. h.MaxHealth=50000
  870. wait(1.5)
  871. h.Health=50000
  872. h.WalkSpeed=32
  873. end
  874. nob(game.Players.LocalPlayer,0.6,21070012)
  875. end
  876.  
  877. kool.MouseButton1Down:connect(koolClick)
  878.  
  879. changename = Instance.new("TextButton")
  880. changename.Parent = page1
  881. changename.Name = ("Change Name")
  882. changename.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  883. changename.Position = UDim2.new(0, 101, 0, 505)
  884. changename.Size = UDim2.new(0, 100, 0, 20)
  885. changename.Text = ("Change Name")
  886. changename.Font = ("SourceSans")
  887. changename.FontSize = ("Size14")
  888. changename.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  889.  
  890. firsttime = true
  891.  
  892. function changenameClick()
  893. name = namebox.Text
  894. if firsttime == true then
  895. local You = playername100 local head = workspace[You].Head:Clone() local model = Instance.new("Model",workspace) local humanoid = Instance.new("Humanoid",model) head.Parent = model model.Name = name modelname = model.Name humanoid.MaxHealth = 0 local w = Instance.new("Weld",model) w.Part0,w.Part1 = workspace[You].Head,head
  896. firsttime = false else
  897. local model = game.Workspace[modelname] model.Name = name modelname = model.Name
  898. end
  899. end
  900.  
  901. changename.MouseButton1Down:connect(changenameClick)
  902.  
  903. orb = Instance.new("TextButton")
  904. orb.Parent = page1
  905. orb.Name = ("Orb")
  906. orb.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  907. orb.Position = UDim2.new(0, 202, 0, 484)
  908. orb.Size = UDim2.new(0, 100, 0, 20)
  909. orb.Text = ("Orb")
  910. orb.Font = ("SourceSans")
  911. orb.FontSize = ("Size14")
  912. orb.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  913.  
  914. function orbClick()
  915. game:GetObjects("rbxassetid://137285524")[1].Parent=game.Players.LocalPlayer.Backpack
  916. end
  917.  
  918. orb.MouseButton1Down:connect(orbClick)
  919.  
  920. lightsaber = Instance.new("TextButton")
  921. lightsaber.Parent = page1
  922. lightsaber.Name = ("Lightsaber")
  923. lightsaber.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  924. lightsaber.Position = UDim2.new(0, 202, 0, 463)
  925. lightsaber.Size = UDim2.new(0, 100, 0, 20)
  926. lightsaber.Text = ("Lightsaber")
  927. lightsaber.Font = ("SourceSans")
  928. lightsaber.FontSize = ("Size14")
  929. lightsaber.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  930.  
  931. function lightsaberClick()
  932. game:GetObjects("rbxassetid://137264892")[1].Parent=game.Players.LocalPlayer.Backpack
  933. end
  934.  
  935. lightsaber.MouseButton1Down:connect(lightsaberClick)
  936.  
  937. masterhand = Instance.new("TextButton")
  938. masterhand.Parent = page1
  939. masterhand.Name = ("Master Hand")
  940. masterhand.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  941. masterhand.Position = UDim2.new(0, 101, 0, 379)
  942. masterhand.Size = UDim2.new(0, 100, 0, 20)
  943. masterhand.Text = ("Master Hand")
  944. masterhand.Font = ("SourceSans")
  945. masterhand.FontSize = ("Size14")
  946. masterhand.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  947.  
  948. function masterhandClick()
  949. game:GetObjects("rbxassetid://136424786")[1].Parent=game.Players.LocalPlayer.Backpack
  950. end
  951.  
  952. masterhand.MouseButton1Down:connect(masterhandClick)
  953.  
  954. leaderstatchange = Instance.new("TextButton")
  955. leaderstatchange.Parent = page1
  956. leaderstatchange.Name = ("Leaderstat Change")
  957. leaderstatchange.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  958. leaderstatchange.Position = UDim2.new(0, 202, 0, 547)
  959. leaderstatchange.Size = UDim2.new(0, 100, 0, 20)
  960. leaderstatchange.Text = ("Leaderstat Change")
  961. leaderstatchange.Font = ("SourceSans")
  962. leaderstatchange.FontSize = ("Size14")
  963. leaderstatchange.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  964.  
  965. function leaderstatchangeClick()
  966. leaderstat = leaderstatchangebox.Text
  967. value = leaderstatchangebox1.Text
  968. if game.Players[playername100].leaderstats:FindFirstChild(leaderstat) == nil then
  969. else
  970. game.Players[playername100].leaderstats[leaderstat].Value = value
  971. end
  972. end
  973.  
  974. leaderstatchange.MouseButton1Down:connect(leaderstatchangeClick)
  975.  
  976. leaderstatadd = Instance.new("TextButton")
  977. leaderstatadd.Parent = page1
  978. leaderstatadd.Name = ("Leaderstat Add")
  979. leaderstatadd.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  980. leaderstatadd.Position = UDim2.new(0, 202, 0, 526)
  981. leaderstatadd.Size = UDim2.new(0, 100, 0, 20)
  982. leaderstatadd.Text = ("Leaderstat Add")
  983. leaderstatadd.Font = ("SourceSans")
  984. leaderstatadd.FontSize = ("Size14")
  985. leaderstatadd.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  986.  
  987. function leaderstataddClick()
  988. leaderstat1 = leaderstataddbox.Text
  989. value1 = leaderstataddbox1.Text
  990. while true do
  991. wait()
  992. game.Players[playername100].leaderstats[leaderstat1].Value = (game.Players[playername100].leaderstats[leaderstat1].Value + value1)
  993. end
  994. end
  995.  
  996. leaderstatadd.MouseButton1Down:connect(leaderstataddClick)
  997.  
  998. strobe = Instance.new("TextButton")
  999. strobe.Parent = page1
  1000. strobe.Name = ("5tr0b3")
  1001. strobe.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1002. strobe.Position = UDim2.new(0, 202, 0, 442)
  1003. strobe.Size = UDim2.new(0, 100, 0, 20)
  1004. strobe.Text = ("5tr0b3")
  1005. strobe.Font = ("SourceSans")
  1006. strobe.FontSize = ("Size14")
  1007. strobe.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1008.  
  1009. function strobeClick()
  1010. game:GetObjects("rbxassetid://142195148")[1].Parent=game.Players.LocalPlayer.Backpack
  1011. end
  1012.  
  1013. strobe.MouseButton1Down:connect(strobeClick)
  1014.  
  1015. atlas = Instance.new("TextButton")
  1016. atlas.Parent = page1
  1017. atlas.Name = ("Atlas Sword")
  1018. atlas.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1019. atlas.Position = UDim2.new(0, 202, 0, 421)
  1020. atlas.Size = UDim2.new(0, 100, 0, 20)
  1021. atlas.Text = ("Atlas Sword")
  1022. atlas.Font = ("SourceSans")
  1023. atlas.FontSize = ("Size14")
  1024. atlas.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1025.  
  1026. function atlasClick()
  1027. game:GetObjects("rbxassetid://142201533")[1].Parent=game.Players.LocalPlayer.Backpack
  1028. end
  1029.  
  1030. atlas.MouseButton1Down:connect(atlasClick)
  1031.  
  1032. cba = Instance.new("TextButton")
  1033. cba.Parent = page1
  1034. cba.Name = ("CBA Admin")
  1035. cba.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1036. cba.Position = UDim2.new(0, 202, 0, 400)
  1037. cba.Size = UDim2.new(0, 100, 0, 20)
  1038. cba.Text = ("CBA Admin")
  1039. cba.Font = ("SourceSans")
  1040. cba.FontSize = ("Size14")
  1041. cba.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1042.  
  1043. function cbaClick()
  1044. game:GetObjects("rbxassetid://142128830")[1].Parent=game.Players.LocalPlayer.Backpack
  1045. end
  1046.  
  1047. cba.MouseButton1Down:connect(cbaClick)
  1048.  
  1049. d33k = Instance.new("TextButton")
  1050. d33k.Parent = page1
  1051. d33k.Name = ("d33k Admin")
  1052. d33k.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1053. d33k.Position = UDim2.new(0, 202, 0, 379)
  1054. d33k.Size = UDim2.new(0, 100, 0, 20)
  1055. d33k.Text = ("d33k Admin")
  1056. d33k.Font = ("SourceSans")
  1057. d33k.FontSize = ("Size14")
  1058. d33k.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1059.  
  1060. function d33kClick()
  1061. game:GetObjects("rbxassetid://142031425")[1].Parent=game.Players.LocalPlayer.Backpack
  1062. end
  1063.  
  1064. d33k.MouseButton1Down:connect(d33kClick)
  1065.  
  1066. eyelaser = Instance.new("TextButton")
  1067. eyelaser.Parent = page2
  1068. eyelaser.Name = ("Eyelaser")
  1069. eyelaser.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1070. eyelaser.Position = UDim2.new(0, 0, 0, 379)
  1071. eyelaser.Size = UDim2.new(0, 100, 0, 20)
  1072. eyelaser.Text = ("Eyelaser")
  1073. eyelaser.Font = ("SourceSans")
  1074. eyelaser.FontSize = ("Size14")
  1075. eyelaser.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1076.  
  1077. function eyelaserClick()
  1078. game:GetObjects("rbxassetid://142007482")[1].Parent=game.Players.LocalPlayer.Backpack
  1079. end
  1080.  
  1081. eyelaser.MouseButton1Down:connect(eyelaserClick)
  1082.  
  1083. fencing = Instance.new("TextButton")
  1084. fencing.Parent = page2
  1085. fencing.Name = ("Fencing Restore")
  1086. fencing.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1087. fencing.Position = UDim2.new(0, 0, 0, 400)
  1088. fencing.Size = UDim2.new(0, 100, 0, 20)
  1089. fencing.Text = ("Fencing Restore")
  1090. fencing.Font = ("SourceSans")
  1091. fencing.FontSize = ("Size14")
  1092. fencing.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1093.  
  1094. function fencingClick()
  1095. str_srce = "123116009" loadstring(game:GetObjects("rbxassetid://"..str_srce)[1].Source)()
  1096. end
  1097.  
  1098. fencing.MouseButton1Down:connect(fencingClick)
  1099.  
  1100. infinity = Instance.new("TextButton")
  1101. infinity.Parent = page2
  1102. infinity.Name = ("Infinity X")
  1103. infinity.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1104. infinity.Position = UDim2.new(0, 0, 0, 421)
  1105. infinity.Size = UDim2.new(0, 100, 0, 20)
  1106. infinity.Text = ("Infninty X")
  1107. infinity.Font = ("SourceSans")
  1108. infinity.FontSize = ("Size14")
  1109. infinity.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1110.  
  1111. function infinityClick()
  1112. game:GetObjects("rbxassetid://142036884")[1].Parent=game.Players.LocalPlayer.Backpack
  1113. end
  1114.  
  1115. infinity.MouseButton1Down:connect(infinityClick)
  1116.  
  1117. kohls = Instance.new("TextButton")
  1118. kohls.Parent = page2
  1119. kohls.Name = ("Kohl's Admin")
  1120. kohls.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1121. kohls.Position = UDim2.new(0, 0, 0, 442)
  1122. kohls.Size = UDim2.new(0, 100, 0, 20)
  1123. kohls.Text = ("Kohl's Admin")
  1124. kohls.Font = ("SourceSans")
  1125. kohls.FontSize = ("Size14")
  1126. kohls.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1127.  
  1128. function kohlsClick()
  1129. game:GetObjects("rbxassetid://141905501")[1].Parent=game.Players.LocalPlayer.Backpack
  1130. end
  1131.  
  1132. kohls.MouseButton1Down:connect(kohlsClick)
  1133.  
  1134. staff = Instance.new("TextButton")
  1135. staff.Parent = page2
  1136. staff.Name = ("Staff")
  1137. staff.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1138. staff.Position = UDim2.new(0, 0, 0, 463)
  1139. staff.Size = UDim2.new(0, 100, 0, 20)
  1140. staff.Text = ("Staff")
  1141. staff.Font = ("SourceSans")
  1142. staff.FontSize = ("Size14")
  1143. staff.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1144.  
  1145. function staffClick()
  1146. game:GetObjects("rbxassetid://136320853")[1].Parent=game.Players.LocalPlayer.Backpack
  1147. end
  1148.  
  1149. staff.MouseButton1Down:connect(staffClick)
  1150.  
  1151. wings = Instance.new("TextButton")
  1152. wings.Parent = page2
  1153. wings.Name = ("Wings")
  1154. wings.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1155. wings.Position = UDim2.new(0, 0, 0, 484)
  1156. wings.Size = UDim2.new(0, 100, 0, 20)
  1157. wings.Text = ("Wings")
  1158. wings.Font = ("SourceSans")
  1159. wings.FontSize = ("Size14")
  1160. wings.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1161.  
  1162. function wingsClick()
  1163. game:GetObjects("rbxassetid://136322458")[1].Parent=game.Players.LocalPlayer.Backpack
  1164. end
  1165.  
  1166. wings.MouseButton1Down:connect(wingsClick)
  1167.  
  1168. silent = Instance.new("TextButton")
  1169. silent.Parent = page2
  1170. silent.Name = ("Silent Executor")
  1171. silent.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1172. silent.Position = UDim2.new(0, 0, 0, 505)
  1173. silent.Size = UDim2.new(0, 100, 0, 20)
  1174. silent.Text = ("Silent Executor")
  1175. silent.Font = ("SourceSans")
  1176. silent.FontSize = ("Size14")
  1177. silent.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1178.  
  1179. function silentClick()
  1180. loadstring(game:GetObjects("rbxassetid://138660278")[1].Source)()
  1181. end
  1182.  
  1183. silent.MouseButton1Down:connect(silentClick)
  1184.  
  1185. laser = Instance.new("TextButton")
  1186. laser.Parent = page2
  1187. laser.Name = ("Laser Rifle")
  1188. laser.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1189. laser.Position = UDim2.new(0, 0, 0, 526)
  1190. laser.Size = UDim2.new(0, 100, 0, 20)
  1191. laser.Text = ("Laser Rifle")
  1192. laser.Font = ("SourceSans")
  1193. laser.FontSize = ("Size14")
  1194. laser.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1195.  
  1196. function laserClick()
  1197. game:GetObjects("rbxassetid://140411727")[1].Parent=game.Players.LocalPlayer.Backpack
  1198. end
  1199.  
  1200. laser.MouseButton1Down:connect(laserClick)
  1201.  
  1202. insert = Instance.new("TextButton")
  1203. insert.Parent = page2
  1204. insert.Name = ("Insert Tool")
  1205. insert.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1206. insert.Position = UDim2.new(0, 0, 0, 547)
  1207. insert.Size = UDim2.new(0, 100, 0, 20)
  1208. insert.Text = ("Insert Tool")
  1209. insert.Font = ("SourceSans")
  1210. insert.FontSize = ("Size14")
  1211. insert.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1212.  
  1213. function insertClick()
  1214. game:GetObjects("rbxassetid://73504704")[1].Parent=game.Players.LocalPlayer.Backpack
  1215. end
  1216.  
  1217. insert.MouseButton1Down:connect(insertClick)
  1218.  
  1219. techno = Instance.new("TextButton")
  1220. techno.Parent = page2
  1221. techno.Name = ("Techno Gauntlet")
  1222. techno.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1223. techno.Position = UDim2.new(0, 0, 0, 568)
  1224. techno.Size = UDim2.new(0, 100, 0, 20)
  1225. techno.Text = ("Techno Gauntlet")
  1226. techno.Font = ("SourceSans")
  1227. techno.FontSize = ("Size14")
  1228. techno.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1229.  
  1230. function technoClick()
  1231. game:GetObjects("rbxassetid://142496704")[1].Parent=game.Players.LocalPlayer.Backpack
  1232. end
  1233.  
  1234. techno.MouseButton1Down:connect(technoClick)
  1235.  
  1236. spider = Instance.new("TextButton")
  1237. spider.Parent = page2
  1238. spider.Name = ("Spider")
  1239. spider.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1240. spider.Position = UDim2.new(0, 101, 0, 379)
  1241. spider.Size = UDim2.new(0, 100, 0, 20)
  1242. spider.Text = ("Spider")
  1243. spider.Font = ("SourceSans")
  1244. spider.FontSize = ("Size14")
  1245. spider.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1246.  
  1247. function spiderClick()
  1248. game:GetObjects("rbxassetid://137265181")[1].Parent=game.Players.LocalPlayer.Backpack
  1249. end
  1250.  
  1251. spider.MouseButton1Down:connect(spiderClick)
  1252.  
  1253. decal = Instance.new("TextButton")
  1254. decal.Parent = page2
  1255. decal.Name = ("Decal Spam")
  1256. decal.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1257. decal.Position = UDim2.new(0, 101, 0, 400)
  1258. decal.Size = UDim2.new(0, 100, 0, 20)
  1259. decal.Text = ("Decal Spam")
  1260. decal.Font = ("SourceSans")
  1261. decal.FontSize = ("Size14")
  1262. decal.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1263.  
  1264. function decalClick()
  1265. decalID = skyboxidbox.Text
  1266. function exPro(root)
  1267. for _, v in pairs(root:GetChildren()) do
  1268. if v:IsA("Decal") and v.Texture ~= "http://www.roblox.com/asset/?id=..decalID" then
  1269. v.Parent = nil
  1270. elseif v:IsA("BasePart") then
  1271. v.Material = "Plastic"
  1272. v.Transparency = 0
  1273. local One = Instance.new("Decal", v)
  1274. local Two = Instance.new("Decal", v)
  1275. local Three = Instance.new("Decal", v)
  1276. local Four = Instance.new("Decal", v)
  1277. local Five = Instance.new("Decal", v)
  1278. local Six = Instance.new("Decal", v)
  1279. One.Texture = "http://www.roblox.com/asset/?id="..decalID
  1280. Two.Texture = "http://www.roblox.com/asset/?id="..decalID
  1281. Three.Texture = "http://www.roblox.com/asset/?id="..decalID
  1282. Four.Texture = "http://www.roblox.com/asset/?id="..decalID
  1283. Five.Texture = "http://www.roblox.com/asset/?id="..decalID
  1284. Six.Texture = "http://www.roblox.com/asset/?id="..decalID
  1285. One.Face = "Front"
  1286. Two.Face = "Back"
  1287. Three.Face = "Right"
  1288. Four.Face = "Left"
  1289. Five.Face = "Top"
  1290. Six.Face = "Bottom"
  1291. end
  1292. end
  1293. end
  1294.  
  1295. exPro(game.Workspace)
  1296.  
  1297. end
  1298.  
  1299. decal.MouseButton1Down:connect(decalClick)
  1300.  
  1301. forcetele = Instance.new("TextButton")
  1302. forcetele.Parent = page2
  1303. forcetele.Name = ("Force Teleport")
  1304. forcetele.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1305. forcetele.Position = UDim2.new(0, 101, 0, 421)
  1306. forcetele.Size = UDim2.new(0, 100, 0, 20)
  1307. forcetele.Text = ("Force Teleport")
  1308. forcetele.Font = ("SourceSans")
  1309. forcetele.FontSize = ("Size14")
  1310. forcetele.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1311.  
  1312. function forceteleClick()
  1313. placeID = forcetpbox.Text
  1314. hax = [[for i,v in pairs(game.Players:GetChildren()) do
  1315. game:GetService'TeleportService':Teleport(]]..placeID..[[,v.Character)
  1316. end
  1317. ]]
  1318. local x = Workspace["Kohl's Admin Commands V2"].ScriptBase
  1319. x.Code.Value = hax
  1320. wait()
  1321. x.Disabled = false
  1322. end
  1323.  
  1324. forcetele.MouseButton1Down:connect(forceteleClick)
  1325.  
  1326. disco = Instance.new("TextButton")
  1327. disco.Parent = page2
  1328. disco.Name = ("Disco")
  1329. disco.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1330. disco.Position = UDim2.new(0, 101, 0, 442)
  1331. disco.Size = UDim2.new(0, 100, 0, 20)
  1332. disco.Text = ("Disco")
  1333. disco.Font = ("SourceSans")
  1334. disco.FontSize = ("Size14")
  1335. disco.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1336.  
  1337. function discoClick()
  1338. while wait() do
  1339. for _, v in pairs(Workspace:GetChildren()) do
  1340. if v:IsA("BasePart") then
  1341. v.BrickColor = BrickColor.Random()
  1342. end
  1343. end
  1344. game.Lighting.Ambient = Color3.new(math.random(), math.random(), math.random()); game.Lighting.ShadowColor = Color3.new(math.random(), math.random(), math.random()); game.Lighting.ColorShift_Bottom = Color3.new(math.random(), math.random(), math.random()); game.Lighting.ColorShift_Top = Color3.new(math.random(), math.random(), math.random()); game.Lighting.Brightness = 1 / math.random(1, 10); game.Lighting.FogColor = Color3.new(math.random(), math.random(), math.random()); game.Lighting:SetMinutesAfterMidnight(game.Lighting:GetMinutesAfterMidnight() + 13)
  1345. end
  1346. end
  1347.  
  1348. disco.MouseButton1Down:connect(discoClick)
  1349.  
  1350. rekinball = Instance.new("TextButton")
  1351. rekinball.Parent = page2
  1352. rekinball.Name = ("Wrecking Ball")
  1353. rekinball.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1354. rekinball.Position = UDim2.new(0, 101, 0, 463)
  1355. rekinball.Size = UDim2.new(0, 100, 0, 20)
  1356. rekinball.Text = ("Wrecking Ball")
  1357. rekinball.Font = ("SourceSans")
  1358. rekinball.FontSize = ("Size14")
  1359. rekinball.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1360.  
  1361. function rekinballClick()
  1362. loadstring(game:GetObjects("rbxassetid://141303287")[1].Source)()
  1363. end
  1364.  
  1365. rekinball.MouseButton1Down:connect(rekinballClick)
  1366.  
  1367. nilizer = Instance.new("TextButton")
  1368. nilizer.Parent = page2
  1369. nilizer.Name = ("Nilizer")
  1370. nilizer.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1371. nilizer.Position = UDim2.new(0, 101, 0, 484)
  1372. nilizer.Size = UDim2.new(0, 100, 0, 20)
  1373. nilizer.Text = ("Nilizer")
  1374. nilizer.Font = ("SourceSans")
  1375. nilizer.FontSize = ("Size14")
  1376. nilizer.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1377.  
  1378. function nilizerClick()
  1379. game:GetObjects("rbxassetid://142125914")[1].Parent=game.Players.LocalPlayer.Backpack
  1380. end
  1381.  
  1382. nilizer.MouseButton1Down:connect(nilizerClick)
  1383.  
  1384. laggui = Instance.new("TextButton")
  1385. laggui.Parent = page2
  1386. laggui.Name = ("Lag Gui")
  1387. laggui.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1388. laggui.Position = UDim2.new(0, 101, 0, 505)
  1389. laggui.Size = UDim2.new(0, 100, 0, 20)
  1390. laggui.Text = ("Lag Gui")
  1391. laggui.Font = ("SourceSans")
  1392. laggui.FontSize = ("Size14")
  1393. laggui.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1394.  
  1395. function lagguiClick()
  1396. whoownit = game.Players.LocalPlayer
  1397. gui = Instance.new("ScreenGui")
  1398. gui.Parent = whoownit.PlayerGui
  1399. gui.Name = "Lag"
  1400.  
  1401. pos = 135
  1402. pos2 = 10
  1403. pos3 = 0
  1404.  
  1405. enabled = false
  1406.  
  1407. button = Instance.new("TextButton")
  1408. button.Parent = gui
  1409. button.Size = UDim2.new(0, 100, 0, 30)
  1410. button.Position = UDim2.new(0, 8, 0, pos)
  1411. button.Text = "Lag"
  1412. button.MouseButton1Click:connect(function()
  1413. if enabled == false then
  1414. enabled = true
  1415. local a = game.Players:GetChildren()
  1416. red = 0
  1417. green = 0.5
  1418. blue = 0
  1419. for i=1, #a do
  1420. wait()
  1421. pos2 = pos2 + 23
  1422. if pos2 >= 450 then
  1423. pos3 = pos3 + 103
  1424. pos2 = 33
  1425. end
  1426. if green <= 0.9 then
  1427. green = green + 0.46
  1428. elseif green >= 0.9 then
  1429. green = green - 0.46
  1430. end
  1431. local bu = Instance.new("TextButton")
  1432. bu.Parent = button
  1433. bu.Size = UDim2.new(0, 100, 0, 20)
  1434. bu.Position = UDim2.new(0, pos3, 0, pos2)
  1435. bu.Text = a[i].Name
  1436. bu.BackgroundTransparency = 1
  1437. bu.TextTransparency = 1
  1438. bu.BackgroundColor3 = Color3.new(red,green,blue)
  1439. coroutine.resume(coroutine.create(function()
  1440. for i=1, 3 do
  1441. wait()
  1442. bu.BackgroundTransparency = bu.BackgroundTransparency - 0.34
  1443. bu.TextTransparency = bu.BackgroundTransparency
  1444. end
  1445. end))
  1446. bu.MouseButton1Down:connect(function()
  1447. local play = game.Players:findFirstChild(bu.Text)
  1448. if play ~= nil then
  1449. for i=1,3600 do
  1450. Instance.new("HopperBin",play.Backpack).Name = ":^)"
  1451. end
  1452. wait()
  1453. for i=1,3600 do
  1454. Instance.new("HopperBin",play.Backpack).Name = ":^)"
  1455. end
  1456. wait()
  1457. for i=1,3600 do
  1458. Instance.new("HopperBin",play.Backpack).Name = ":^)"
  1459. end
  1460. wait()
  1461. for i=1,13000 do
  1462. Instance.new("HopperBin",play.Backpack).Name = ":^)"
  1463. end
  1464. wait()
  1465. for i=1,3600 do
  1466. Instance.new("HopperBin",play.Backpack).Name = ":^)"
  1467. end
  1468. bu.Text = "Lagged!"
  1469. end
  1470. end)
  1471. end
  1472. elseif enabled == true then
  1473. enabled = false
  1474. pos2 = 10
  1475. pos3 = 0
  1476. local o = button:GetChildren()
  1477. for i=1, #o do
  1478. wait()
  1479. o[i]:remove()
  1480. end
  1481. end
  1482. end)
  1483. end
  1484.  
  1485. laggui.MouseButton1Down:connect(lagguiClick)
  1486.  
  1487. clearws = Instance.new("TextButton")
  1488. clearws.Parent = page2
  1489. clearws.Name = ("Clear Workspace")
  1490. clearws.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1491. clearws.Position = UDim2.new(0, 101, 0, 526)
  1492. clearws.Size = UDim2.new(0, 100, 0, 20)
  1493. clearws.Text = ("Clear Workspace")
  1494. clearws.Font = ("SourceSans")
  1495. clearws.FontSize = ("Size14")
  1496. clearws.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1497.  
  1498. function clearwsClick()
  1499. game.Workspace:ClearAllChildren()
  1500. end
  1501.  
  1502. clearws.MouseButton1Down:connect(clearwsClick)
  1503.  
  1504. drawtool = Instance.new("TextButton")
  1505. drawtool.Parent = page2
  1506. drawtool.Name = ("Draw Tool")
  1507. drawtool.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1508. drawtool.Position = UDim2.new(0, 101, 0, 547)
  1509. drawtool.Size = UDim2.new(0, 100, 0, 20)
  1510. drawtool.Text = ("Draw Tool")
  1511. drawtool.Font = ("SourceSans")
  1512. drawtool.FontSize = ("Size14")
  1513. drawtool.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1514.  
  1515. function drawtoolClick()
  1516. loadstring(game:GetObjects("rbxassetid://96727044")[1].Source)()
  1517. end
  1518.  
  1519. drawtool.MouseButton1Down:connect(drawtoolClick)
  1520.  
  1521. explorer = Instance.new("TextButton")
  1522. explorer.Parent = page2
  1523. explorer.Name = ("Explorer")
  1524. explorer.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1525. explorer.Position = UDim2.new(0, 101, 0, 568)
  1526. explorer.Size = UDim2.new(0, 100, 0, 20)
  1527. explorer.Text = ("Explorer")
  1528. explorer.Font = ("SourceSans")
  1529. explorer.FontSize = ("Size14")
  1530. explorer.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1531.  
  1532. function explorerClick()
  1533. loadstring(Game:GetObjects("rbxassetid://111532299")[1].Source)()
  1534. end
  1535.  
  1536. explorer.MouseButton1Down:connect(explorerClick)
  1537.  
  1538. girl = Instance.new("TextButton")
  1539. girl.Parent = page2
  1540. girl.Name = ("Girl Pic")
  1541. girl.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1542. girl.Position = UDim2.new(0, 202, 0, 379)
  1543. girl.Size = UDim2.new(0, 100, 0, 20)
  1544. girl.Text = ("Girl Pic")
  1545. girl.Font = ("SourceSans")
  1546. girl.FontSize = ("Size14")
  1547. girl.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1548.  
  1549. function girlClick()
  1550. str_srce = "143552451" loadstring(game:GetObjects("rbxassetid://"..str_srce)[1].Source)()
  1551. end
  1552.  
  1553. girl.MouseButton1Down:connect(girlClick)
  1554.  
  1555. svest = Instance.new("TextButton")
  1556. svest.Parent = page2
  1557. svest.Name = ("Suicide Vest")
  1558. svest.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1559. svest.Position = UDim2.new(0, 202, 0, 400)
  1560. svest.Size = UDim2.new(0, 100, 0, 20)
  1561. svest.Text = ("Suicide Vest")
  1562. svest.Font = ("SourceSans")
  1563. svest.FontSize = ("Size14")
  1564. svest.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1565.  
  1566. function svestClick()
  1567. loadstring(Game:GetObjects("rbxassetid://142429056")[1].Source)()
  1568. end
  1569.  
  1570. svest.MouseButton1Down:connect(svestClick)
  1571.  
  1572. songplay = Instance.new("TextButton")
  1573. songplay.Parent = page2
  1574. songplay.Name = ("Song Player")
  1575. songplay.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1576. songplay.Position = UDim2.new(0, 202, 0, 421)
  1577. songplay.Size = UDim2.new(0, 100, 0, 20)
  1578. songplay.Text = ("Song Player")
  1579. songplay.Font = ("SourceSans")
  1580. songplay.FontSize = ("Size14")
  1581. songplay.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1582.  
  1583. function songplayClick()
  1584. str_srce = "142919613" loadstring(game:GetObjects("rbxassetid://"..str_srce)[1].Source)()
  1585. end
  1586.  
  1587. songplay.MouseButton1Down:connect(songplayClick)
  1588.  
  1589. camball = Instance.new("TextButton")
  1590. camball.Parent = page2
  1591. camball.Name = ("Camball")
  1592. camball.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1593. camball.Position = UDim2.new(0, 202, 0, 442)
  1594. camball.Size = UDim2.new(0, 100, 0, 20)
  1595. camball.Text = ("Camball")
  1596. camball.Font = ("SourceSans")
  1597. camball.FontSize = ("Size14")
  1598. camball.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1599.  
  1600. function camballClick()
  1601. game:GetObjects("rbxassetid://141914259")[1].Parent=game.Players.LocalPlayer.Backpack
  1602. end
  1603.  
  1604. camball.MouseButton1Down:connect(camballClick)
  1605.  
  1606. girl2 = Instance.new("TextButton")
  1607. girl2.Parent = page2
  1608. girl2.Name = ("Girl Pic 2")
  1609. girl2.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  1610. girl2.Position = UDim2.new(0, 202, 0, 463)
  1611. girl2.Size = UDim2.new(0, 100, 0, 20)
  1612. girl2.Text = ("Girl Pic 2")
  1613. girl2.Font = ("SourceSans")
  1614. girl2.FontSize = ("Size14")
  1615. girl2.TextColor3 = Color3.new(0/255, 0/255, 0/255)
  1616.  
  1617. function girl2Click()
  1618. str_srce = "143553529" loadstring(game:GetObjects("rbxassetid://"..str_srce)[1].Source)()
  1619. end
  1620.  
  1621. girl2.MouseButton1Down:connect(girl2Click)
Add Comment
Please, Sign In to add comment