Advertisement
2AreYouMental110

AdminJoy V2 (kohls admin house gui)

Feb 9th, 2021
9,131
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 234.46 KB | None | 0 1
  1. -- forgot where it came from
  2. -- Variables
  3.  
  4. local abc = 0 -- Wait Time of Spam
  5. local lol = 0 -- If command being spammed will be displayed
  6. local amn = 1 -- amount of gear given
  7. local nopunish = true
  8. local healauto = true
  9. local noexp = true
  10. local nokill = true
  11. local noblind = true
  12. local nojail = true
  13. local nomusic = false
  14. local nodog = true
  15. local nosmoke = true
  16. local noswag = true
  17. local nosparkles = false
  18. local nofire = true
  19. local nospeed = false
  20. local noskydive = true
  21. local nocrash = true
  22. local noice = true
  23. local noseizure = true
  24. local noff = false
  25. local nomsgcrash = false
  26. local ilight = true
  27.  
  28. -- Functions
  29.  
  30. local function ultanti(msg)
  31. local GetPlayers = game:GetService("Players")
  32. local allplr = GetPlayers:GetPlayers()
  33.  
  34. while multianti == true do
  35. wait()
  36.  
  37. -- anti-punish
  38.  
  39. if nopunish == true then
  40. if game.Lighting:FindFirstChild(game.Players.LocalPlayer.Name) then
  41. game:GetService'Players':Chat(("unpunish me"))
  42. wait(0.25)
  43. end
  44. end
  45.  
  46. -- auto-heal
  47.  
  48. if healauto == true then
  49. if game.Players.LocalPlayer.Character then
  50. if game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") then
  51. if game.Players.LocalPlayer.Character.Humanoid.Health > 0 and game.Players.LocalPlayer.Character.Humanoid.Health < 100 then
  52. game:GetService'Players':Chat(("heal me 100"))
  53. wait(0.25)
  54. end
  55. end
  56. end
  57. end
  58.  
  59. -- remove explosion effect
  60.  
  61. if noexp == true then
  62. if game.Workspace:FindFirstChild("Explosion") then
  63. game.Workspace.Explosion:Destroy()
  64. end
  65. end
  66.  
  67. -- anti-kill
  68.  
  69. if nokill == true then
  70. if game.Players.LocalPlayer.Character then
  71. if game.Players.LocalPlayer.Character.Humanoid.Health == 0 then
  72. game:GetService'Players':Chat(("reset me"))
  73. wait(0.25)
  74. end
  75. end
  76. end
  77.  
  78. -- anti-blind
  79.  
  80. if noblind == true then
  81. if game.Players.LocalPlayer.PlayerGui:FindFirstChild("EFFECTGUIBLIND") then
  82. game.Players.LocalPlayer.PlayerGui.EFFECTGUIBLIND:Destroy()
  83. end
  84. end
  85.  
  86. --anti-jail
  87.  
  88. if nojail == true then
  89. if game:GetService("Workspace").Terrain["_Game"].Folder:FindFirstChild(game.Players.LocalPlayer.Name .. "'s jail") then
  90. game:GetService'Players':Chat(("unjail me"))
  91. wait(0.25)
  92. end
  93. end
  94.  
  95. -- anti-music
  96.  
  97. if nomusic == true then
  98. if game:GetService("Workspace").Terrain["_Game"].Folder:FindFirstChild("Sound") then
  99. game:GetService'Players':Chat(("music"))
  100. wait(0.25)
  101. end
  102. end
  103.  
  104. -- anti dog
  105.  
  106. if nodog == true then
  107. if game.Players.LocalPlayer.Character:FindFirstChild("Torso") then
  108. if game.Players.LocalPlayer.Character.Torso.Transparency == 1 and game.Players.LocalPlayer.Character.Torso.BrickColor == BrickColor.new("Brown") then
  109. game:GetService'Players':Chat(("undog me"))
  110. wait(0.25)
  111. end
  112. end
  113. end
  114.  
  115. -- anti smoke
  116.  
  117. if nosmoke == true then
  118. if game.Players.LocalPlayer.Character:FindFirstChild("Torso") then
  119. if game.Players.LocalPlayer.Character.Torso:FindFirstChild("Smoke") then
  120. game:GetService'Players':Chat(("unsmoke me"))
  121. wait(0.25)
  122. end
  123. end
  124. end
  125.  
  126. -- anti swag
  127.  
  128. if noswag == true then
  129. if game.Players.LocalPlayer.Character:FindFirstChild("EpicCape") then
  130. game:GetService'Players':Chat(("normal me"))
  131. wait(0.25)
  132. end
  133. end
  134.  
  135. -- anti-sparkles
  136.  
  137. if nosparkles == true then
  138. if game.Players.LocalPlayer.Character.Torso:FindFirstChild("Sparkles") then
  139. game:GetService'Players':Chat(("unsparkles me"))
  140. wait(0.25)
  141. end
  142. end
  143.  
  144. -- anti-fire
  145.  
  146. if nofire == true then
  147. if game.Players.LocalPlayer.Character:FindFirstChild("Torso") then
  148. if game.Players.LocalPlayer.Character.Torso:FindFirstChild("Fire") then
  149. game:GetService'Players':Chat(("unfire me"))
  150. wait(0.25)
  151. end
  152. end
  153. end
  154.  
  155. -- anti-speed
  156.  
  157. if nospeed == true then
  158. if game.Players.LocalPlayer.Character.Humanoid.WalkSpeed > 16 or game.Players.LocalPlayer.Character.Humanoid.WalkSpeed < 16 then
  159. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  160. wait(0.25)
  161. end
  162. end
  163.  
  164. -- anti skydive
  165.  
  166. if noskydive == true then
  167. if game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
  168. if game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Y >= 1950 then
  169. game:GetService'Players':Chat(("unskydive me"))
  170. wait(0.25)
  171. end
  172. end
  173. end
  174.  
  175. -- anti crash
  176.  
  177. if nocrash == true then
  178. if game.Players.PlayerAdded then
  179. allplr = GetPlayers:GetPlayers()
  180. end
  181. for i, player in pairs(allplr) do
  182. if player.Character then
  183. if player.Character:FindFirstChild("VampireVanquisher") then
  184. local plrname = player.Name
  185. game:GetService'Players':Chat(("ungear "..plrname))
  186. game:GetService'Players':Chat(("unsize "..plrname))
  187. wait(0.28)
  188. end
  189. if player.Character:FindFirstChild("HumanoidRootPart") then
  190. if player.Character.HumanoidRootPart.Size.Y <= 0.3 then
  191. local plrname = player.Name
  192. game:GetService'Players':Chat(("reset "..plrname))
  193. game:GetService'Players':Chat(("unclone "..plrname))
  194. wait(0.28)
  195. end
  196. end
  197. end
  198. end
  199. end
  200.  
  201. -- removeff effect
  202. if noff == true then
  203. if game.Players.PlayerAdded then
  204. allplr = GetPlayers:GetPlayers()
  205. end
  206. for i, player in pairs(allplr) do
  207. if player.Character then
  208. if player.Character:FindFirstChild("ForceField") then
  209. player.Character.ForceField:Destroy()
  210. end
  211. end
  212. end
  213. end
  214.  
  215. -- anti ice
  216.  
  217. if noice == true then
  218. if game.Players.LocalPlayer.Character then
  219. if game.Players.LocalPlayer.Character:FindFirstChild("ice") then
  220. game:GetService'Players':Chat(("thaw me"))
  221. wait(0.28)
  222. end
  223. end
  224. end
  225.  
  226. -- anti seizure
  227.  
  228. if noseizure == true then
  229. if game.Players.LocalPlayer.Character then
  230. if game.Players.LocalPlayer.Character:FindFirstChild("Seizure") then
  231. game:GetService'Players':Chat(("unseizure me"))
  232. wait(0.28)
  233. end
  234. end
  235. end
  236.  
  237. -- anti message crash
  238.  
  239. if nomsgcrash == true then
  240. wait(0.2)
  241. for i, v in pairs(game.Players.LocalPlayer.PlayerGui:GetDescendants()) do
  242. if v.Name == "MessageGUI" or v.Name == "HintGUI" then
  243. v:Destroy()
  244. end
  245. end
  246. end
  247.  
  248.  
  249. -- anti ivory light
  250.  
  251. if ilight == true then
  252. if game.Workspace:FindFirstChild("StarShard") then
  253. game.Workspace.StarShard:Destroy()
  254. end
  255. if game.Workspace:FindFirstChild("Part") then
  256. if game.Workspace.Part:FindFirstChild("Twinkle") then
  257. game.Workspace.Part:Destroy()
  258. end
  259. end
  260. end
  261.  
  262. end
  263. end
  264.  
  265.  
  266. local function rjn ()
  267. local place = game:GetService("TeleportService")
  268. local playur = game:GetService("Players").LocalPlayer
  269. place:Teleport(game.PlaceId, playur)
  270. end
  271.  
  272. local function regen ()
  273. fireclickdetector(game:GetService("Workspace").Terrain["_Game"].Admin.Regen.ClickDetector, 0)
  274. end
  275.  
  276. local function killanti(msg)
  277. local plrname = string.sub(msg, 11)
  278. local GetPlayers = game:GetService("Players")
  279. local all = GetPlayers:GetPlayers()
  280.  
  281. while ak == true do
  282. wait(0)
  283.  
  284. for i, player in pairs(all) do
  285. if player.Name == plrname then
  286. if player.Character then
  287. if player.Character.Humanoid.Health == 0 then
  288. game:GetService'Players':Chat(("reset "..plrname))
  289. wait(0.28)
  290. end
  291. end
  292. end
  293. end
  294. end
  295. end
  296.  
  297. local function antiforall(msg)
  298. local GetPlayers = game:GetService("Players")
  299. local allplr = GetPlayers:GetPlayers()
  300.  
  301. while liall == true do
  302. wait(0)
  303. if game.Players.PlayerAdded then
  304. allplr = GetPlayers:GetPlayers()
  305. end
  306. for i, player in pairs(allplr) do
  307. if player.Character then
  308. if player.Character.Humanoid.Health == 0 then
  309. local plrname = player.Name
  310. game:GetService'Players':Chat(("reset "..plrname))
  311. wait(0.28)
  312. end -- if
  313. end -- other if
  314. end -- for
  315. end -- while
  316. end -- function
  317.  
  318. -- Animation Functions
  319. ------------------------------------------------------------------------------------------------------------------------
  320. local function armturbine ()
  321. for i,v in pairs(game.Players:GetPlayers()) do
  322. AnimationId = "259438880"
  323. local Anim = Instance.new("Animation")
  324. Anim.AnimationId = "rbxassetid://"..AnimationId
  325. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  326. k:Play()
  327. k:AdjustSpeed(100)
  328. end
  329. end
  330. local function loopheadd ()
  331. for i,v in pairs(game.Players:GetPlayers()) do
  332. AnimationId = "35154961"
  333. local Anim = Instance.new("Animation")
  334. Anim.AnimationId = "rbxassetid://"..AnimationId
  335. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  336. while wait(0.00703125) do
  337. k:Play()
  338. k:AdjustSpeed(640)
  339. end
  340. end
  341. end
  342. local function laydown ()
  343. for i,v in pairs(game.Players:GetPlayers()) do
  344. AnimationId = "282574440"
  345. local Anim = Instance.new("Animation")
  346. Anim.AnimationId = "rbxassetid://"..AnimationId
  347. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  348. k:Play()
  349. k:AdjustSpeed(1)
  350. end
  351. end
  352. local function dabb ()
  353. for i,v in pairs(game.Players:GetPlayers()) do
  354. AnimationId = "248263260"
  355. local Anim = Instance.new("Animation")
  356. Anim.AnimationId = "rbxassetid://"..AnimationId
  357. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  358. k:Play()
  359. k:AdjustSpeed(1)
  360. end
  361. end
  362. local function hmmm ()
  363. for i,v in pairs(game.Players:GetPlayers()) do
  364. AnimationId = "148840371"
  365. local Anim = Instance.new("Animation")
  366. Anim.AnimationId = "rbxassetid://"..AnimationId
  367. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  368. k:Play()
  369. k:AdjustSpeed(1)
  370. end
  371. end
  372. local function screamm ()
  373. for i,v in pairs(game.Players:GetPlayers()) do
  374. AnimationId = "180611870"
  375. local Anim = Instance.new("Animation")
  376. Anim.AnimationId = "rbxassetid://"..AnimationId
  377. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  378. k:Play()
  379. k:AdjustSpeed(1)
  380. end
  381. end
  382. local function headthrow ()
  383. for i,v in pairs(game.Players:GetPlayers()) do
  384. AnimationId = "35154961"
  385. local Anim = Instance.new("Animation")
  386. Anim.AnimationId = "rbxassetid://"..AnimationId
  387. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  388. k:Play()
  389. k:AdjustSpeed(1)
  390. end
  391. end
  392. local function raisehead ()
  393. for i,v in pairs(game.Players:GetPlayers()) do
  394. AnimationId = "121572214"
  395. local Anim = Instance.new("Animation")
  396. Anim.AnimationId = "rbxassetid://"..AnimationId
  397. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  398. k:Play()
  399. k:AdjustSpeed(1)
  400. end
  401. end
  402. local function crouchh ()
  403. for i,v in pairs(game.Players:GetPlayers()) do
  404. AnimationId = "182724289"
  405. local Anim = Instance.new("Animation")
  406. Anim.AnimationId = "rbxassetid://"..AnimationId
  407. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  408. k:Play()
  409. k:AdjustSpeed(1)
  410. end
  411. end
  412. local function MovingDance ()
  413. for i,v in pairs(game.Players:GetPlayers()) do
  414. AnimationId = "429703734"
  415. local Anim = Instance.new("Animation")
  416. Anim.AnimationId = "rbxassetid://"..AnimationId
  417. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  418. k:Play()
  419. k:AdjustSpeed(1)
  420. end
  421. end
  422. ------------------------------------------------------------------------------------------------------------------------
  423.  
  424. local function clors(msg)
  425.  
  426. while ccolor == true do
  427. wait(0)
  428. game:GetService'Players':Chat(("colorshifttop 10000 0 0"))
  429. wait(0.005)
  430. game:GetService'Players':Chat(("colorshiftbottom 10000 0 0"))
  431. wait(0.005)
  432. game:GetService'Players':Chat(("colorshifttop 0 10000 0"))
  433. wait(0.005)
  434. game:GetService'Players':Chat(("colorshiftbottom 0 10000 0"))
  435. wait(0.005)
  436. game:GetService'Players':Chat(("colorshifttop 0 0 10000"))
  437. wait(0.005)
  438. game:GetService'Players':Chat(("colorshiftbottom 0 0 10000"))
  439. wait(0.005)
  440. end
  441.  
  442. while bcolor == true do
  443. wait(0)
  444. game:GetService'Players':Chat(("colorshiftbottom 10000 0 0"))
  445. wait(0.005)
  446. game:GetService'Players':Chat(("colorshiftbottom 0 10000 0"))
  447. wait(0.005)
  448. game:GetService'Players':Chat(("colorshiftbottom 0 0 10000"))
  449. wait(0.005)
  450. end
  451.  
  452. while acolor == true do
  453. wait(0)
  454. game:GetService'Players':Chat(("colorshifttop 10000 0 0"))
  455. wait(0.005)
  456. game:GetService'Players':Chat(("colorshifttop 0 10000 0"))
  457. wait(0.005)
  458. game:GetService'Players':Chat(("colorshifttop 0 0 10000"))
  459. wait(0.005)
  460. end
  461.  
  462. while rhell == true do
  463. wait(0)
  464. game:GetService'Players':Chat(("colorshifttop 10000 0 0"))
  465. wait(0.125)
  466. game:GetService'Players':Chat(("colorshiftbottom 10000 0 0"))
  467. wait(0.125)
  468. game:GetService'Players':Chat(("colorshifttop 100000000 1000000000 10000000000000"))
  469. wait(0.125)
  470. game:GetService'Players':Chat(("colorshiftbottom 100000000 1000000000 10000000000000"))
  471. wait(0.125)
  472. game:GetService'Players':Chat(("time 0"))
  473. wait(0.125)
  474. end
  475.  
  476. end
  477.  
  478.  
  479. local function antiff(msg)
  480. local GetPlayers = game:GetService("Players")
  481. local allplr = GetPlayers:GetPlayers()
  482.  
  483. while ffanti == true do
  484. wait(0)
  485. if game.Players.PlayerAdded then
  486. allplr = GetPlayers:GetPlayers()
  487. end
  488. for i, player in pairs(allplr) do
  489. if player.Character then
  490. if not player.Character:FindFirstChild("ForceField") then
  491. local plrname = player.Name
  492. game:GetService'Players':Chat(("ff "..plrname))
  493. wait(0.28)
  494. end -- character check
  495. end -- ff check
  496. end -- for
  497. end -- while
  498. end -- function
  499.  
  500. local function rainbow(msg)
  501.  
  502. while multi == true do
  503. wait(0)
  504. game:GetService'Players':Chat(("colorshifttop 0 0 10000"))
  505. wait(0.05)
  506. game:GetService'Players':Chat(("colorshiftbottom 0 0 10000"))
  507. wait(0.05)
  508. game:GetService'Players':Chat(("colorshifttop 0 10000 0"))
  509. wait(0.05)
  510. game:GetService'Players':Chat(("colorshiftbottom 0 10000 0"))
  511. wait(0.05)
  512. game:GetService'Players':Chat(("colorshifttop 10000 0 0"))
  513. wait(0.05)
  514. game:GetService'Players':Chat(("colorshiftbottom 10000 0 0"))
  515. wait(0.05)
  516. game:GetService'Players':Chat(("colorshifttop 15000 10603 0"))
  517. wait(0.005)
  518. game:GetService'Players':Chat(("colorshiftbottom 15000 10603 0"))
  519. wait(0.05)
  520. game:GetService'Players':Chat(("colorshifttop 10000 9000 5000"))
  521. wait(0.05)
  522. game:GetService'Players':Chat(("colorshiftbottom 10000 9000 5000"))
  523. wait(0.05)
  524. game:GetService'Players':Chat(("colorshifttop 10000 0 14135"))
  525. wait(0.05)
  526. game:GetService'Players':Chat(("colorshiftbottom 10000 0 14135"))
  527. wait(0.05)
  528. game:GetService'Players':Chat(("colorshifttop 10000 0 12000"))
  529. wait(0.05)
  530. game:GetService'Players':Chat(("colorshiftbottom 10000 0 12000"))
  531. wait(0.05)
  532. game:GetService'Players':Chat(("colorshifttop 10610 7496 0"))
  533. wait(0.05)
  534. game:GetService'Players':Chat(("colorshiftbottom 10610 7496 0"))
  535. wait(0.05)
  536. game:GetService'Players':Chat(("colorshifttop 100000000000000000 0 0"))
  537. wait(0.05)
  538. game:GetService'Players':Chat(("colorshiftbottom 100000000000000000 0 0"))
  539. wait(0.05)
  540. game:GetService'Players':Chat(("colorshifttop 10000000 10000000 10000000"))
  541. wait(0.05)
  542. game:GetService'Players':Chat(("colorshiftbottom 10000000 10000000 10000000"))
  543. wait(0.05)
  544. end
  545.  
  546. end
  547.  
  548. local wlholder = {}
  549.  
  550. local function whitelist(msg)
  551. for i,v in pairs(game.Players:GetPlayers()) do
  552. if v.Name:lower():sub(1,#wluser) == wluser:lower() then
  553. wluser = v.Name
  554. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(wluser .. " has been Whitelisted!", "All")
  555. wait(1)
  556. if not table.find(wlholder, v.Name) then
  557. table.insert(wlholder, v.Name)
  558. wait(1)
  559. v.Chatted:connect(function(msg)
  560. if v.Name == wluser then
  561.  
  562. -- Teleport commands
  563. ----------------------------------
  564. if string.sub(msg, 1, 6) == ":house" then
  565. if string.sub(msg, 8, 9) == "me" or string.sub(msg, 8, 8) == "" then
  566. game:GetService'Players':Chat((":house "..wluser))
  567. elseif string.sub(msg, 8, 13) ~= "others" then
  568. local plrname = string.sub(msg, 8)
  569. game:GetService'Players':Chat((":house "..plrname))
  570. end
  571. end
  572.  
  573. if string.sub(msg, 1, 7) == ":uhouse" then
  574. if string.sub(msg, 9, 10) == "me" or string.sub(msg, 9, 9) == "" then
  575. game:GetService'Players':Chat((":uhouse "..wluser))
  576. elseif string.sub(msg, 9, 14) ~= "others" then
  577. local plrname = string.sub(msg, 9)
  578. game:GetService'Players':Chat((":uhouse "..plrname))
  579. end
  580. end
  581.  
  582. if string.sub(msg, 1, 5) == ":obby" then
  583. if string.sub(msg, 7, 8) == "me" or string.sub(msg, 7, 7) == "" then
  584. game:GetService'Players':Chat((":obby "..wluser))
  585. elseif string.sub(msg, 7, 12) ~= "others" then
  586. local plrname = string.sub(msg, 7)
  587. game:GetService'Players':Chat((":obby "..plrname))
  588. end
  589. end
  590.  
  591. if string.sub(msg, 1, 7) == ":blocks" then
  592. if string.sub(msg, 9, 10) == "me" or string.sub(msg, 9, 9) == "" then
  593. game:GetService'Players':Chat((":blocks "..wluser))
  594. elseif string.sub(msg, 9, 14) ~= "others" then
  595. local plrname = string.sub(msg, 9)
  596. game:GetService'Players':Chat((":blocks "..plrname))
  597. end
  598. end
  599.  
  600. if string.sub(msg, 1, 5) == ":pads" then
  601. if string.sub(msg, 7, 8) == "me" or string.sub(msg, 7, 7) == "" then
  602. game:GetService'Players':Chat((":pads "..wluser))
  603. elseif string.sub(msg, 7, 12) ~= "others" then
  604. local plrname = string.sub(msg, 7)
  605. game:GetService'Players':Chat((":pads "..plrname))
  606. end
  607. end
  608. ----------------------------------
  609.  
  610. -- Kits commands
  611. ----------------------------------
  612. if string.sub(msg, 1, 9) == ":kit omni" then
  613. if string.sub(msg, 11, 12) == "me" or string.sub(msg, 11, 11) == "" then
  614. game:GetService'Players':Chat((":kit omni "..wluser))
  615. elseif string.sub(msg, 11, 16) ~= "others" then
  616. local plrname = string.sub(msg, 11)
  617. game:GetService'Players':Chat((":kit omni "..plrname))
  618. end
  619. end
  620.  
  621. if string.sub(msg, 1, 8) == ":kit god" then
  622. if string.sub(msg, 10, 11) == "me" or string.sub(msg, 10, 10) == "" then
  623. game:GetService'Players':Chat((":kit god "..wluser))
  624. elseif string.sub(msg, 10, 15) ~= "others" then
  625. local plrname = string.sub(msg, 10)
  626. game:GetService'Players':Chat((":kit god "..plrname))
  627. end
  628. end
  629.  
  630. if string.sub(msg, 1, 8) == ":kit gun" then
  631. if string.sub(msg, 10, 11) == "me" or string.sub(msg, 10, 10) == "" then
  632. game:GetService'Players':Chat((":kit gun "..wluser))
  633. elseif string.sub(msg, 10, 15) ~= "others" then
  634. local plrname = string.sub(msg, 10)
  635. game:GetService'Players':Chat((":kit gun "..plrname))
  636. end
  637. end
  638.  
  639. if string.sub(msg, 1, 10) == ":kit troll" then
  640. if string.sub(msg, 12, 14) == "me" or string.sub(msg, 12, 12) == "" then
  641. game:GetService'Players':Chat((":kit troll "..wluser))
  642. elseif string.sub(msg, 12, 17) ~= "others" then
  643. local plrname = string.sub(msg, 12)
  644. game:GetService'Players':Chat((":kit troll "..plrname))
  645. end
  646. end
  647.  
  648. if string.sub(msg, 1, 9) == ":kit bomb" then
  649. if string.sub(msg, 11, 12) == "me" or string.sub(msg, 11, 11) == "" then
  650. game:GetService'Players':Chat((":kit bomb "..wluser))
  651. elseif string.sub(msg, 11, 16) ~= "others" then
  652. local plrname = string.sub(msg, 10)
  653. game:GetService'Players':Chat((":kit bomb "..plrname))
  654. end
  655. end
  656.  
  657. if string.sub(msg, 1, 10) == ":kit sword" then
  658. if string.sub(msg, 12, 14) == "me" or string.sub(msg, 12, 12) == "" then
  659. game:GetService'Players':Chat((":kit sword "..wluser))
  660. elseif string.sub(msg, 12, 17) ~= "others" then
  661. local plrname = string.sub(msg, 12)
  662. game:GetService'Players':Chat((":kit sword "..plrname))
  663. end
  664. end
  665.  
  666. if string.sub(msg, 1, 8) == ":kit bow" then
  667. if string.sub(msg, 10, 11) == "me" or string.sub(msg, 10, 10) == "" then
  668. game:GetService'Players':Chat((":kit bow "..wluser))
  669. elseif string.sub(msg, 10, 15) ~= "others" then
  670. local plrname = string.sub(msg, 10)
  671. game:GetService'Players':Chat((":kit bow "..plrname))
  672. end
  673. end
  674. ----------------------------------
  675.  
  676. end -- username check
  677. end) -- message function
  678. end -- table
  679. end -- get entire user
  680. end -- get players
  681. end -- functions
  682.  
  683. local function Spam(msg)
  684. local plyr = string.sub(msg, 6)
  685. while Non == true do
  686. wait(abc)
  687. game:GetService'Players':Chat((plyr))
  688. end
  689. end
  690.  
  691. local function Stop(msg)
  692. while stop == true do
  693. wait(0.0005)
  694. game:GetService'Players':Chat(("unfly all"))
  695. wait(0.0005)
  696. game:GetService'Players':Chat(("removetools all"))
  697. wait(0.0005)
  698. game:GetService'Players':Chat(("setgrav all 1250"))
  699. wait(0.0005)
  700. game:GetService'Players':Chat(("speed all 0"))
  701. wait(0.0005)
  702. game:GetService'Players':Chat(("outdoorambient 239 20 20"))
  703. end
  704. end
  705.  
  706. -- Hotkey Variables
  707.  
  708. local hotkeyf = nil
  709. local keyfcmd1 = nil
  710. local keyfcmd2 = nil
  711. local keyfcmd3 = nil
  712. local hotkeyg = nil
  713. local keygcmd1 = nil
  714. local keygcmd2 = nil
  715. local keygcmd3 = nil
  716. local hotkeyh = nil
  717. local keyhcmd1 = nil
  718. local keyhcmd2 = nil
  719. local keyhcmd3 = nil
  720. local hotkeyt = nil
  721. local keytcmd1 = nil
  722. local keytcmd2 = nil
  723. local keytcmd3 = nil
  724. local hotkeyy = nil
  725. local keyycmd1 = nil
  726. local keyycmd2 = nil
  727. local keyycmd3 = nil
  728. local check1 = 0
  729. local lastcmd = nil
  730.  
  731. -- HotKey Function
  732.  
  733. lp = game.Players.LocalPlayer
  734. ms = lp:GetMouse()
  735. ms.KeyDown:connect(function(key)
  736.  
  737. -- Hot Keys
  738.  
  739. if check1 == 0 then
  740.  
  741. if key == "z" then
  742. game:GetService'Players':Chat(("fly me"))
  743.  
  744. elseif key == "x" then
  745. game:GetService'Players':Chat(("ff me"))
  746.  
  747. elseif key == "c" then
  748. game:GetService'Players':Chat(("reset me"))
  749.  
  750. elseif key == "v" then
  751. game:GetService'Players':Chat(("respawn me"))
  752.  
  753. elseif key == "b" then
  754. SPos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  755.  
  756. elseif key == "n" then
  757. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = SPos
  758.  
  759. elseif key == "m" then
  760. game:GetService'Players':Chat((lastcmd))
  761.  
  762. elseif key == "f" then
  763.  
  764. if keyfcmd1 ~= nil then
  765. game:GetService'Players':Chat((keyfcmd1))
  766. end
  767. if keyfcmd2 ~= nil then
  768. game:GetService'Players':Chat((keyfcmd2))
  769. end
  770. if keyfcmd3 ~= nil then
  771. game:GetService'Players':Chat((keyfcmd3))
  772. end
  773.  
  774. elseif key == "g" then
  775. if keygcmd1 ~= nil then
  776. game:GetService'Players':Chat((keygcmd1))
  777. end
  778. if keygcmd2 ~= nil then
  779. game:GetService'Players':Chat((keygcmd2))
  780. end
  781. if keygcmd3 ~= nil then
  782. game:GetService'Players':Chat((keygcmd3))
  783. end
  784.  
  785. elseif key == "h" then
  786. if keyhcmd1 ~= nil then
  787. game:GetService'Players':Chat((keyhcmd1))
  788. end
  789. if keyhcmd2 ~= nil then
  790. game:GetService'Players':Chat((keyhcmd2))
  791. end
  792. if keyhcmd3 ~= nil then
  793. game:GetService'Players':Chat((keyhcmd3))
  794. end
  795.  
  796. elseif key == "t" then
  797. if keytcmd1 ~= nil then
  798. game:GetService'Players':Chat((keytcmd1))
  799. end
  800. if keytcmd2 ~= nil then
  801. game:GetService'Players':Chat((keytcmd2))
  802. end
  803. if keytcmd3 ~= nil then
  804. game:GetService'Players':Chat((keytcmd3))
  805. end
  806.  
  807. elseif key == "y" then
  808. if keyycmd1 ~= nil then
  809. game:GetService'Players':Chat((keyycmd1))
  810. end
  811. if keyycmd2 ~= nil then
  812. game:GetService'Players':Chat((keyycmd2))
  813. end
  814. if keyycmd3 ~= nil then
  815. game:GetService'Players':Chat((keyycmd3))
  816. end
  817. end
  818.  
  819. end
  820.  
  821. if key == "j" then
  822.  
  823. check1 = check1 + 1
  824.  
  825. if check1 == 2 then
  826. check1 = 0
  827. end
  828. end
  829.  
  830. end)
  831.  
  832.  
  833.  
  834. game.Players.LocalPlayer.Chatted:connect(function(msg)
  835. time = string.sub(msg, 9)
  836.  
  837. if string.sub(msg, 1, math.huge) == "" then
  838. lastcmd = string.sub(msg, 1)
  839. end
  840.  
  841. if string.sub(msg, 1, 9) == "hkfcmd1 =" then
  842. keyfcmd1 = string.sub(msg, 11)
  843. elseif string.sub(msg, 1, 9) == "hkfcmd2 =" then
  844. keyfcmd2 = string.sub(msg, 11)
  845. elseif string.sub(msg, 1, 9) == "hkfcmd3 =" then
  846. keyfcmd3 = string.sub(msg, 11)
  847.  
  848. elseif string.sub(msg, 1, 9) == "hkgcmd1 =" then
  849. keygcmd1 = string.sub(msg, 11)
  850. elseif string.sub(msg, 1, 9) == "hkgcmd2 =" then
  851. keygcmd2 = string.sub(msg, 11)
  852. elseif string.sub(msg, 1, 9) == "hkgcmd3 =" then
  853. keygcmd3 = string.sub(msg, 11)
  854.  
  855. elseif string.sub(msg, 1, 9) == "hkhcmd1 =" then
  856. keyhcmd1 = string.sub(msg, 11)
  857. elseif string.sub(msg, 1, 9) == "hkhcmd2 =" then
  858. keyhcmd2 = string.sub(msg, 11)
  859. elseif string.sub(msg, 1, 9) == "hkhcmd3 =" then
  860. keyhcmd3 = string.sub(msg, 11)
  861.  
  862. elseif string.sub(msg, 1, 9) == "hktcmd1 =" then
  863. keytcmd1 = string.sub(msg, 11)
  864. elseif string.sub(msg, 1, 9) == "hktcmd2 =" then
  865. keytcmd2 = string.sub(msg, 11)
  866. elseif string.sub(msg, 1, 9) == "hktcmd3 =" then
  867. keytcmd3 = string.sub(msg, 11)
  868.  
  869. elseif string.sub(msg, 1, 9) == "hkycmd1 =" then
  870. keyycmd1 = string.sub(msg, 11)
  871. elseif string.sub(msg, 1, 9) == "hkycmd2 =" then
  872. keyycmd2 = string.sub(msg, 11)
  873. elseif string.sub(msg, 1, 9) == "hkycmd3 =" then
  874. keyycmd3 = string.sub(msg, 11)
  875.  
  876. end
  877.  
  878. if string.sub(msg, 1, 7) == ":wait =" then
  879. abc = time
  880. end
  881.  
  882. if string.sub(msg, 1, 9) == ":amount =" then
  883. amn = string.sub(msg, 11)
  884. end
  885.  
  886. if msg == "lol = 0" then
  887. lol = 0
  888. end
  889. if msg == "lol = 1" then
  890. lol = 1
  891. end
  892. -- Kit Commands
  893.  
  894. if string.sub(msg, 1, 9) == ":kit omni" then
  895.  
  896. local plrname = string.sub(msg, 11)
  897.  
  898. for i = 1,10 do
  899. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000159229806"))
  900. end
  901.  
  902. for i = 1,10 do
  903. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000093136802"))
  904. end
  905.  
  906. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000108158379"))
  907. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000073829193"))
  908. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000069499437"))
  909. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000080661504"))
  910. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000120307951"))
  911. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000099119240"))
  912. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000094794774"))
  913. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000071037101"))
  914. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000093136746"))
  915.  
  916. end
  917.  
  918. if string.sub(msg, 1, 8) == ":kit god" then
  919.  
  920. local plrname = string.sub(msg, 10)
  921.  
  922. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000159229806"))
  923. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000093136802"))
  924. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000108158379"))
  925. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000073829193"))
  926. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000069499437"))
  927. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000080661504"))
  928. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000120307951"))
  929. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000099119240"))
  930. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000094794774"))
  931. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000071037101"))
  932. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000093136746"))
  933.  
  934. end
  935.  
  936. if msg == ":kit dark" then
  937. game:GetService'Players':Chat(("paint me black"))
  938. game:GetService'Players':Chat(("cape me black"))
  939. game:GetService'Players':Chat(("removehats me"))
  940. game:GetService'Players':Chat(("removeface me"))
  941. game:GetService'Players':Chat(("name me "))
  942. game:GetService'Players':Chat(("speed me 32"))
  943. game:GetService'Players':Chat(("trail me black"))
  944. game:GetService'Players':Chat(("gear me 000000000000000000108149175"))
  945. end
  946.  
  947. if string.sub(msg, 1, 8) == ":kit gun" then
  948.  
  949. local plrname = string.sub(msg, 10)
  950.  
  951. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000094233344"))
  952. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000094233286"))
  953. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000095354288"))
  954. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000097885552"))
  955. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000116693764"))
  956. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000097885508"))
  957. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000130113146"))
  958.  
  959. end
  960.  
  961. if string.sub(msg, 1, 10) == ":kit knife" then
  962. local plrname = string.sub(msg, 12)
  963. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000121946387"))
  964. game:GetService'Players':Chat(("gear "..plrname.." 0000000000000000001215515248"))
  965. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000208659586"))
  966. end
  967.  
  968. if string.sub(msg, 1, 11) == ":kit dagger" then
  969. local plrname = string.sub(msg, 13)
  970. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000062350856"))
  971. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000065079090"))
  972. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000064220952"))
  973. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000071037101"))
  974. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000168142394"))
  975. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000051760061"))
  976. end
  977.  
  978. if string.sub(msg, 1, 8) == ":kit bow" then
  979. local plrname = string.sub(msg, 10)
  980. game:GetService'Players':Chat(("gear "..plrname.." 0000000000000000001180418251"))
  981. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000092142841"))
  982. game:GetService'Players':Chat(("gear "..plrname.." 0000000000000000002136389582"))
  983. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000346687267"))
  984. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000356213494"))
  985. game:GetService'Players':Chat(("gear "..plrname.." 0000000000000000002568113462"))
  986. end
  987.  
  988. if string.sub(msg, 1, 13) == ":kit crossbow" then
  989. local plrname = string.sub(msg, 15)
  990. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000174752245"))
  991. game:GetService'Players':Chat(("gear "..plrname.." 0000000000000000001587175338"))
  992. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000206566653"))
  993. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000178076831"))
  994. game:GetService'Players':Chat(("gear "..plrname.." 0000000000000000002163551089"))
  995. end
  996.  
  997. if string.sub(msg, 1, 10) == ":kit magic" then
  998. local plrname = string.sub(msg, 12)
  999. game:GetService'Players':Chat(("gear "..plrname.." 0000000000000000002316760298"))
  1000. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000127506105"))
  1001. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000010760425"))
  1002. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000066416616"))
  1003. game:GetService'Players':Chat(("gear "..plrname.." 0000000000000000002261167878"))
  1004. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000027860496"))
  1005. end
  1006.  
  1007. if string.sub(msg, 1, 10) == ":kit sword" then
  1008. local plrname = string.sub(msg, 12)
  1009. game:GetService'Players':Chat(("gear "..plrname.." 0000000000000000001981813154"))
  1010. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000077443461"))
  1011. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000077443491"))
  1012. game:GetService'Players':Chat(("gear "..plrname.." 0000000000000000001340206957"))
  1013. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000155661985"))
  1014. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000532254782"))
  1015. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000088885481"))
  1016. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000093136746"))
  1017. end
  1018.  
  1019. if string.sub(msg, 1, 11) == ":kit scythe" then
  1020. local plrname = string.sub(msg, 13)
  1021. game:GetService'Players':Chat(("gear "..plrname.." 0000000000000000001609498185"))
  1022. game:GetService'Players':Chat(("gear "..plrname.." 0000000000000000002506365260"))
  1023. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000028275809"))
  1024. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000846792499"))
  1025. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000095951330"))
  1026. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000218631128"))
  1027. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000050938765"))
  1028. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000517827255"))
  1029.  
  1030. end
  1031.  
  1032. if string.sub(msg, 1, 10) == ":kit ninja" then
  1033. local plrname = string.sub(msg, 12)
  1034. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000086494914"))
  1035. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000011377306"))
  1036. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000011115851"))
  1037. game:GetService'Players':Chat(("gear "..plrname.." 0000000000000000001304339797"))
  1038. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000051346336"))
  1039. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000233519998"))
  1040.  
  1041. end
  1042.  
  1043. if string.sub(msg, 1, 11) == ":kit potion" then
  1044. local plrname = string.sub(msg, 13)
  1045. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000011450664"))
  1046. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000056561593"))
  1047. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000055917420"))
  1048. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000065082246"))
  1049. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000011419319"))
  1050. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000047597835"))
  1051.  
  1052. end
  1053.  
  1054. if string.sub(msg, 1, 11) == ":kit flying" then
  1055. local plrname = string.sub(msg, 13)
  1056. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000225921000"))
  1057. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000031314966"))
  1058. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000477910063"))
  1059. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000511930668"))
  1060. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000223785473"))
  1061. end
  1062.  
  1063. if string.sub(msg, 1, 9) == ":kit bomb" then
  1064. local plrname = string.sub(msg, 11)
  1065. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000011999247"))
  1066. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000012890798"))
  1067. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000243788010"))
  1068. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000088885539"))
  1069. end
  1070.  
  1071. if string.sub(msg, 1, 10) == ":kit troll" then
  1072. local plrname = string.sub(msg, 12)
  1073. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000082357101"))
  1074. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000094794847"))
  1075. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000243788010"))
  1076. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000268586231"))
  1077. end
  1078.  
  1079. if string.sub(msg, 1, 9) == ":kit heal" then
  1080. local plrname = string.sub(msg, 11)
  1081. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000011419319"))
  1082. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000061916132"))
  1083. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000115377964"))
  1084. game:GetService'Players':Chat(("gear "..plrname.." 0000000000000000002316760298"))
  1085. game:GetService'Players':Chat(("gear "..plrname.." 0000000000000000002103276507"))
  1086. end
  1087.  
  1088. -- Teleport Commands
  1089.  
  1090. if msg == "clicktp" then
  1091. -- Notifications
  1092. local function notify(title, text)
  1093. game:GetService("StarterGui"):SetCore("SendNotification", {
  1094. Title = title;
  1095. Text = text;
  1096. Duration = 1;
  1097. })
  1098. end
  1099.  
  1100. -- Tool-Check
  1101. local Check = game.Players.LocalPlayer.Backpack:FindFirstChild("Sprint")
  1102. local Check2 = game.Players.LocalPlayer.Character:FindFirstChild("Sprint")
  1103. if Check or Check2 then
  1104. notify("TP and Sprint Was Found", "Check Inventory")
  1105. wait(0.5)
  1106.  
  1107. elseif not Check and not Check2 then
  1108. notify("TP and Sprint Not Found", "Adding to Inventory...")
  1109. wait(0.5)
  1110.  
  1111. plr = game.Players.LocalPlayer
  1112. mouse = plr:GetMouse()
  1113. hum = plr.Character.HumanoidRootPart
  1114. local tptool = Instance.new("Tool", plr.Backpack)
  1115. local sptool = Instance.new("Tool", plr.Backpack)
  1116. local dftool = Instance.new("Tool", plr.Backpack)
  1117.  
  1118. tptool.Name = "ClickTP"
  1119. tptool.CanBeDropped = false
  1120. tptool.RequiresHandle = false
  1121.  
  1122. sptool.Name = "Sprint"
  1123. sptool.CanBeDropped = false
  1124. sptool.RequiresHandle = false
  1125.  
  1126. dftool.Name = "Default"
  1127. dftool.CanBeDropped = false
  1128. dftool.RequiresHandle = false
  1129.  
  1130. tptool.Activated:Connect(function()
  1131. if mouse.Target then
  1132. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  1133. end
  1134. end)
  1135.  
  1136. sptool.Activated:Connect(function()
  1137. plr.Character.Humanoid.JumpPower = 150
  1138. plr.Character.Humanoid.WalkSpeed = 50
  1139. end)
  1140.  
  1141. dftool.Activated:Connect(function()
  1142. plr.Character.Humanoid.JumpPower = 50
  1143. plr.Character.Humanoid.WalkSpeed = 16
  1144. end)
  1145.  
  1146.  
  1147. wait(0.5)
  1148. notify("TP and Sprint Has been Added", "Check Your Inventory...")
  1149. end
  1150. end
  1151.  
  1152. if string.sub(msg, 1, 3) == ":wl" then
  1153. if wluser == nil then
  1154. wluser = string.sub(msg, 5)
  1155. whitelist(msg)
  1156. end
  1157. end
  1158.  
  1159. if string.sub(msg, 1, 5) == ":unwl" then
  1160. if wluser ~= nil then
  1161. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(wluser .. " is no longer Whitelisted!", "All")
  1162. wluser = nil
  1163. end
  1164. end
  1165.  
  1166. if msg == ":here" then
  1167. LPos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1168. end
  1169.  
  1170. if msg == ":back" then
  1171. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = LPos
  1172. end
  1173.  
  1174. if msg == ";spawn1" then
  1175. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-29, 3.70000005, -25.5900116))
  1176. end
  1177.  
  1178. if msg == ";spawn2" then
  1179. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-41, 3.70000005, -25.5899963))
  1180. end
  1181.  
  1182. if msg == ";spawn3" then
  1183. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-52.9998322, 3.70000005, -25.5902348))
  1184. end
  1185.  
  1186.  
  1187. if string.sub(msg, 1, 5) == ":pads" then
  1188. if string.sub(msg, 7, 8) == "me" or string.sub(msg, 7, 7) == "" then
  1189. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-30.6439133, 8.22999954, 90.8547668))
  1190. elseif string.sub(msg, 7, 9) == "all" then
  1191. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-30.6439133, 8.22999954, 90.8547668))
  1192. wait(0.25)
  1193. game:GetService'Players':Chat(("tp all me"))
  1194. else
  1195. local plrname = string.sub(msg, 7)
  1196. local loc = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1197. wait(0.125)
  1198. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-30.6439133, 8.22999954, 90.8547668))
  1199. wait(0.25)
  1200. game:GetService'Players':Chat(("tp "..plrname.." me"))
  1201. wait(0.25)
  1202. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = loc
  1203. end
  1204. end
  1205.  
  1206. if string.sub(msg, 1, 6) == ":house" then
  1207. if string.sub(msg, 8, 9) == "me" or string.sub(msg, 8, 8) == "" then
  1208. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-23.4106693, 8.22999954, 63.2581749))
  1209. elseif string.sub(msg, 8, 10) == "all" then
  1210. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-23.4106693, 8.22999954, 63.2581749))
  1211. wait(0.25)
  1212. game:GetService'Players':Chat(("tp all me"))
  1213. else
  1214. local plrname = string.sub(msg, 8)
  1215. local loc = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1216. wait(0.125)
  1217. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-23.4106693, 8.22999954, 63.2581749))
  1218. wait(0.25)
  1219. game:GetService'Players':Chat(("tp "..plrname.." me"))
  1220. wait(0.25)
  1221. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = loc
  1222. end
  1223. end
  1224.  
  1225. if string.sub(msg, 1, 7) == ":uhouse" then
  1226. if string.sub(msg, 9, 10) == "me" or string.sub(msg, 9, 9) == "" then
  1227. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-29.954174, 41.8300018, 60.291275))
  1228. elseif string.sub(msg, 9, 11) == "all" then
  1229. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-29.954174, 41.8300018, 60.291275))
  1230. wait(0.25)
  1231. game:GetService'Players':Chat(("tp all me"))
  1232. else
  1233. local plrname = string.sub(msg, 9)
  1234. local loc = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1235. wait(0.125)
  1236. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-29.954174, 41.8300018, 60.291275))
  1237. wait(0.25)
  1238. game:GetService'Players':Chat(("tp "..plrname.." me"))
  1239. wait(0.25)
  1240. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = loc
  1241. end
  1242. end
  1243.  
  1244. if string.sub(msg, 1, 5) == ":obby" then
  1245. if string.sub(msg, 7, 8) == "me" or string.sub(msg, 7, 7) == "" then
  1246. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-52.2587738, 3.70000005, 38.5809517))
  1247. elseif string.sub(msg, 7, 9) == "all" then
  1248. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-52.2587738, 3.70000005, 38.5809517))
  1249. wait(0.25)
  1250. game:GetService'Players':Chat(("tp all me"))
  1251. else
  1252. local plrname = string.sub(msg, 7)
  1253. local loc = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1254. wait(0.125)
  1255. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-52.2587738, 3.70000005, 38.5809517))
  1256. wait(0.25)
  1257. game:GetService'Players':Chat(("tp "..plrname.." me"))
  1258. wait(0.25)
  1259. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = loc
  1260. end
  1261. end
  1262.  
  1263. if string.sub(msg, 1, 7) == ":blocks" or string.sub(msg, 1, 7) == ":bricks" then
  1264. if string.sub(msg, 9, 10) == "me" or string.sub(msg, 9, 9) == "" then
  1265. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-74.0005112, 12.1000004, 6.67828035))
  1266. elseif string.sub(msg, 9, 11) == "all" then
  1267. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-74.0005112, 12.1000004, 6.67828035))
  1268. wait(0.25)
  1269. game:GetService'Players':Chat(("tp all me"))
  1270. local plrname = string.sub(msg, 9)
  1271. local loc = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1272. wait(0.125)
  1273. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-74.0005112, 12.1000004, 6.67828035))
  1274. wait(0.25)
  1275. game:GetService'Players':Chat(("tp "..plrname.." me"))
  1276. wait(0.25)
  1277. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = loc
  1278. end
  1279. end
  1280.  
  1281. -- Emote Commands
  1282.  
  1283. if msg == ":hmm" then
  1284. hmmm()
  1285. end
  1286. if msg == ":headtoss" then
  1287. headthrow()
  1288. end
  1289. if msg == ":armspin" then
  1290. armturbine()
  1291. end
  1292. if msg == ":loophead" then
  1293. loopheadd()
  1294. end
  1295. if msg == ":scream" then
  1296. screamm()
  1297. end
  1298. if msg == ":headraise" then
  1299. raisehead()
  1300. end
  1301. if msg == ":dab" then
  1302. dabb()
  1303. end
  1304. if msg == ":crawl" then
  1305. laydown()
  1306. end
  1307. if msg == ":crouch" then
  1308. crouchh()
  1309. end
  1310. if msg == ":dance" then
  1311. MovingDance()
  1312. end
  1313.  
  1314. -- Music Commands
  1315.  
  1316. if msg == "play mwd" then
  1317. game:GetService'Players':Chat(("h Playing Miss Wanna Die"))
  1318. wait(0.125)
  1319. game:GetService'Players':Chat(("music 0000000000000000003118721479"))
  1320. end
  1321.  
  1322. -- Morph Commands
  1323.  
  1324. if msg == ":Dark_Lord" then
  1325. game:GetService'Players':Chat(("unpackage me"))
  1326. game:GetService'Players':Chat(("removehats me"))
  1327. game:GetService'Players':Chat(("paint me black"))
  1328. wait(0.25)
  1329. game:GetService'Players':Chat(("pants me 1279747525"))
  1330. game:GetService'Players':Chat(("shirt me 1233857398"))
  1331. game:GetService'Players':Chat(("hat me 4238305136"))
  1332. game:GetService'Players':Chat(("hat me 745790335"))
  1333. game:GetService'Players':Chat(("hat me 99860652"))
  1334. game:GetService'Players':Chat(("hat me 244160766"))
  1335. game:GetService'Players':Chat(("hat me 19380685"))
  1336. game:GetService'Players':Chat(("hat me 4087527067"))
  1337. end
  1338.  
  1339. if msg == ":Aka" or msg == ":aka" then
  1340. game:GetService'Players':Chat(("unpackage me"))
  1341. game:GetService'Players':Chat(("paint me pastel brown"))
  1342. game:GetService'Players':Chat(("removehats me"))
  1343. wait(0.25)
  1344. game:GetService'Players':Chat(("hat me 4708970652"))
  1345. game:GetService'Players':Chat(("hat me 4660425043"))
  1346. game:GetService'Players':Chat(("hat me 4524990267"))
  1347. game:GetService'Players':Chat(("hat me 4524481392"))
  1348. game:GetService'Players':Chat(("shirt me 4150240898"))
  1349. game:GetService'Players':Chat(("pants me 4240325953"))
  1350. game:GetService'Players':Chat(("hat me 106709021"))
  1351. game:GetService'Players':Chat(("face me 402304145"))
  1352. end
  1353.  
  1354. if msg == ":Jester" or msg == ":jester" then
  1355. game:GetService'Players':Chat(("unpackage me"))
  1356. game:GetService'Players':Chat(("paint me white"))
  1357. game:GetService'Players':Chat(("removehats me"))
  1358. wait(0.125)
  1359. game:GetService'Players':Chat(("hat me 1301377743"))
  1360. game:GetService'Players':Chat(("hat me 13702134"))
  1361. game:GetService'Players':Chat(("shirt me 1304485340"))
  1362. game:GetService'Players':Chat(("pants me 1304482618"))
  1363. wait(0.125)
  1364. game:GetService'Players':Chat(("gear me 000000000000000000120749528"))
  1365. game:GetService'Players':Chat(("gear me 000000000000000000746687364"))
  1366. end
  1367.  
  1368. if msg == ":joy" or msg == ":Joy" then
  1369. game:GetService'Players':Chat(("removehats me"))
  1370. game:GetService'Players':Chat(("paint me white"))
  1371. game:GetService'Players':Chat(("hat me 4904151381"))
  1372. end
  1373.  
  1374. if msg == ":raja" then
  1375. Point = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1376. wait(0.125)
  1377. game:GetService'Players':Chat(("char me 86670779"))
  1378. wait(0.125)
  1379. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Point
  1380. end
  1381.  
  1382. -- Super Commands
  1383.  
  1384. if string.sub(msg, 1, 6) == ":super" then
  1385. local plrname = string.sub(msg, 7)
  1386. for i = 1,250 do
  1387. game:GetService'Players':Chat((plrname))
  1388. end
  1389. end
  1390.  
  1391. -- Spam Commands
  1392.  
  1393. if string.sub(msg, 1, 5) == ":spam" then
  1394. Non = true
  1395. Spam(msg)
  1396. end
  1397.  
  1398. if msg == ":stop" then
  1399. Non = false
  1400. acolor = false
  1401. bcolor = false
  1402. ccolor = false
  1403. rhell = false
  1404. multi = false
  1405. end
  1406.  
  1407. -- Other Commands
  1408.  
  1409. if string.sub(msg, 1, 8) == ":boombox" then
  1410.  
  1411. local plrname = string.sub(msg, 10)
  1412. game:GetService'Players':Chat(("gear "..plrname.." 000000000212641536"))
  1413. end
  1414.  
  1415. if msg == ":blink" then
  1416. game:GetService'Players':Chat(("blind all"))
  1417. wait(0.35)
  1418. game:GetService'Players':Chat(("unblind all"))
  1419. end
  1420.  
  1421.  
  1422. if string.sub(msg, 1, 9) == ":antikill" then
  1423. ak = true
  1424. killanti(msg)
  1425. end
  1426.  
  1427. if string.sub(msg, 1, 9) == "!antikill" then
  1428. liall = true
  1429. antiforall(msg)
  1430. end
  1431.  
  1432. if string.sub(msg, 1, 7) == "!autoff" then
  1433. ffanti = true
  1434. antiff(msg)
  1435. end
  1436.  
  1437. if msg == ":unanti" then
  1438. multianti = false
  1439. ak = false
  1440. liall = false
  1441. ffanti = false
  1442. end
  1443.  
  1444. -- Local Commands
  1445.  
  1446.  
  1447. if string.sub(msg, 1, 5) == ":swap" then
  1448. local plr1 = string.sub(msg, 7,10)
  1449. local plr2 = string.sub(msg, 11, 13)
  1450. local mylocation = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1451. game:GetService'Players':Chat(("invis me"))
  1452. wait(0.20)
  1453. game:GetService'Players':Chat(("tp me "..plr1))
  1454. wait(0.20)
  1455. game:GetService'Players':Chat(("tp ".. plr1 .. plr2))
  1456. wait(0.20)
  1457. game:GetService'Players':Chat(("tp "..plr2.." me"))
  1458. wait(0.125)
  1459. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = mylocation
  1460. game:GetService'Players':Chat(("vis me"))
  1461. end
  1462.  
  1463. if string.sub(msg, 1, 8) == ";swap me" then
  1464. local plyr1 = string.sub(msg, 10)
  1465. local myloc1 = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1466. game:GetService'Players':Chat(("invis me"))
  1467. wait(0.20)
  1468. game:GetService'Players':Chat(("tp me "..plyr1))
  1469. wait(0.20)
  1470. local myloc2 = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1471. wait(0.20)
  1472. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = myloc1
  1473. wait(0.20)
  1474. game:GetService'Players':Chat(("tp "..plyr1.." me"))
  1475. wait(0.20)
  1476. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = myloc2
  1477. game:GetService'Players':Chat(("vis me"))
  1478. end
  1479.  
  1480. if string.sub(msg, 1, 7) == ":random" then
  1481. local xvalue = math.random(-495,495)
  1482. local zvalue = math.random(-495,495)
  1483. local plrname = string.sub(msg, 9)
  1484. local myloc = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1485. wait(0.125)
  1486. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(xvalue, 3, zvalue))
  1487. wait(0.25)
  1488. game:GetService'Players':Chat(("tp "..plrname.." me"))
  1489. wait(0.25)
  1490. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = myloc
  1491. end
  1492.  
  1493. if string.sub(msg, 1, 6) == ":throw" then
  1494. local plrname = string.sub(msg, 8)
  1495. game:GetService'Players':Chat(("fling "..plrname))
  1496. end
  1497.  
  1498. if msg == ":sky" then
  1499. game:GetService'Players':Chat(("gear me 212641536"))
  1500. wait(0.125)
  1501. game:GetService'Players':Chat(("fly me"))
  1502. for i = 1,10 do
  1503. game:GetService'Players':Chat(("skydive me"))
  1504. end
  1505. wait(0.125)
  1506. game:GetService'Players':Chat(("jail me"))
  1507. wait(0.25)
  1508. game:GetService'Players':Chat(("unfly me"))
  1509. wait(0.5)
  1510. game:GetService'Players':Chat(("jail me"))
  1511.  
  1512. end
  1513.  
  1514. if string.sub(msg, 1, 7) == ":acolor" then
  1515. acolor = true
  1516. bcolor = false
  1517. ccolor = false
  1518. rhell = false
  1519. clors(msg)
  1520. end
  1521.  
  1522. if string.sub(msg, 1, 7) == ":bcolor" then
  1523. bcolor = true
  1524. acolor = false
  1525. ccolor = false
  1526. rhell = false
  1527. clors(msg)
  1528. end
  1529.  
  1530. if string.sub(msg, 1, 7) == ":ccolor" then
  1531. ccolor = true
  1532. acolor = false
  1533. bcolor = false
  1534. rhell = false
  1535. clors(msg)
  1536. end
  1537.  
  1538. if string.sub(msg, 1, 8) == ":redhell" then
  1539. rhell = true
  1540. ccolor = false
  1541. acolor = false
  1542. bcolor = false
  1543. clors(msg)
  1544. end
  1545.  
  1546. if msg == ":rainbow" then
  1547. multi = true
  1548. rainbow(msg)
  1549. end
  1550.  
  1551. if msg == ":map" then
  1552. wait(0.25)
  1553. game:GetService'Players':Chat(("sit me"))
  1554. wait(1.25)
  1555. game:GetService'Players':Chat(("punish me"))
  1556. wait(1.25)
  1557. game:GetService'Players':Chat(("unpunish me"))
  1558. end
  1559. if string.sub(msg, 1, 6) == ":regen" then
  1560. regen()
  1561. end
  1562.  
  1563. if msg == ":Stop" then
  1564. stop = true
  1565. Stop(msg)
  1566.  
  1567. end
  1568.  
  1569. if msg == ":Go" then
  1570. stop = false
  1571. wait(0.25)
  1572. game:GetService'Players':Chat(("speed all 16"))
  1573. game:GetService'Players':Chat(("grav all"))
  1574. game:GetService'Players':Chat(("fix"))
  1575. end
  1576.  
  1577.  
  1578. if msg == ":loadout 1" then
  1579. game:GetService'Players':Chat(("normal me"))
  1580. game:GetService'Players':Chat(("ff me"))
  1581. game:GetService'Players':Chat(("fly me"))
  1582.  
  1583. end
  1584.  
  1585. if string.sub(msg, 1, 5) == ":snap" then
  1586. local plrname = string.sub(msg, 7)
  1587. game:GetService'Players':Chat(("music 862198133"))
  1588. wait(2.50)
  1589. game:GetService'Players':Chat(("speed "..plrname.." inf"))
  1590. wait(0.125)
  1591. game:GetService'Players':Chat(("music "))
  1592. end
  1593.  
  1594. if msg == ":ls" then
  1595. game:GetService'Players':Chat(("logs"))
  1596. end
  1597.  
  1598. if msg == ":ms" then
  1599. local rlog = math.random(1,5)
  1600.  
  1601. if rlog == 1 then
  1602. for i = 1,100 do
  1603. game:GetService'Players':Chat(("ff use your own stuff"))
  1604. end
  1605. end
  1606.  
  1607. if rlog == 2 then
  1608. for i = 1,100 do
  1609. game:GetService'Players':Chat(("ff stop looking :/"))
  1610. end
  1611. end
  1612.  
  1613. if rlog == 3 then
  1614. for i = 1,100 do
  1615. game:GetService'Players':Chat(("ff viewing logs I see"))
  1616. end
  1617. end
  1618.  
  1619. if rlog == 4 then
  1620. for i = 1,100 do
  1621. game:GetService'Players':Chat(("ff no stealing please"))
  1622. end
  1623. end
  1624.  
  1625. if rlog == 5 then
  1626. for i = 1,100 do
  1627. game:GetService'Players':Chat(("ff checking logs I see"))
  1628. end
  1629. end
  1630.  
  1631. end
  1632.  
  1633. if string.sub(msg, 1) == ":rejoin" then
  1634. rjn()
  1635. game:GetService("TeleportService"):Teleport(game.PlaceId, playur)
  1636. end
  1637.  
  1638.  
  1639. if msg == ":zawarudo" then
  1640. game.Players:Chat("music 304787933")
  1641. wait(2)
  1642. game.Players:Chat("freeze all")
  1643. game.Players:Chat("ambient 0 63.75 0")
  1644. wait(.25)
  1645. game.Players:Chat("ambient 0 127.5 0")
  1646. wait(.25)
  1647. game.Players:Chat("ambient 0 191.25 0")
  1648. wait(.25)
  1649. game.Players:Chat("ambient 0 255 0")
  1650. wait(.25)
  1651. game.Players:Chat("stopmusic")
  1652. wait(1.5)
  1653. game.Players:Chat("music 384043882")
  1654. for i = 1,20 do
  1655. game.Players:Chat("freeze all")
  1656. game.Players:Chat("ambient 0 255 0")
  1657. wait(.5)
  1658. end
  1659. game.Players:Chat("music 676242549")
  1660. wait(2.5)
  1661. game.Players:Chat("stopmusic")
  1662. game.Players:Chat("thaw all")
  1663. game.Players:Chat("ambient 0 255 0")
  1664. wait(.25)
  1665. game.Players:Chat("ambient 0 191.25 0")
  1666. wait(.25)
  1667. game.Players:Chat("ambient 0 127.5 0")
  1668. wait(.25)
  1669. game.Players:Chat("ambient 0 63.75 0")
  1670. end
  1671.  
  1672. if msg == ":purge" then
  1673. game.Players:Chat("music 232554097")
  1674. game.Players:Chat("fogend 150")
  1675. game.Players:Chat("time 2")
  1676. game.Players:Chat("fogcolor 0 0 0")
  1677. game.Players:Chat("brightness 5")
  1678. end
  1679.  
  1680. -- Gear Commands
  1681.  
  1682. if string.sub(msg, 1, 13) == ":g hyperlaser" then
  1683. local plrname = string.sub(msg, 15)
  1684. for i = 1,amn do
  1685. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000130113146"))
  1686. end
  1687. end
  1688.  
  1689. if string.sub(msg, 1, 7) == ":g mine" then
  1690. local plrname = string.sub(msg, 9)
  1691. for i = 1,amn do
  1692. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000033383241"))
  1693. end
  1694. end
  1695.  
  1696. if string.sub(msg, 1, 6) == ":g dsd" then
  1697. local plrname = string.sub(msg, 8)
  1698. for i = 1,amn do
  1699. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000071037101"))
  1700. end
  1701. end
  1702.  
  1703. if string.sub(msg, 1, 11) == ":g cresendo" then
  1704. local plrname = string.sub(msg, 13)
  1705. for i = 1,amn do
  1706. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000094794774"))
  1707. end
  1708. end
  1709.  
  1710. if string.sub(msg, 1, 10) == ":g rainbow" then
  1711. local plrname = string.sub(msg, 12)
  1712. for i = 1,amn do
  1713. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000159229806"))
  1714. end
  1715. end
  1716.  
  1717. if string.sub(msg, 1, 8) == ":g ivory" then
  1718. local plrname = string.sub(msg, 10)
  1719. for i = 1,amn do
  1720. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000108158379"))
  1721. end
  1722. end
  1723.  
  1724. if string.sub(msg, 1, 8) == ":g azure" then
  1725. local plrname = string.sub(msg, 10)
  1726. for i = 1,amn do
  1727. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000069499437"))
  1728. end
  1729. end
  1730.  
  1731. if string.sub(msg, 1, 10) == ":g crimson" then
  1732. local plrname = string.sub(msg, 12)
  1733. for i = 1,amn do
  1734. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000099119240"))
  1735. end
  1736. end
  1737.  
  1738. if string.sub(msg, 1, 13) == ":g chartreuse" then
  1739. local plrname = string.sub(msg, 15)
  1740. for i = 1,amn do
  1741. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000080661504"))
  1742. end
  1743. end
  1744.  
  1745. if string.sub(msg, 1, 11) == ":g amethyst" then
  1746. local plrname = string.sub(msg, 13)
  1747. for i = 1,amn do
  1748. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000093136802"))
  1749. end
  1750. end
  1751.  
  1752. if string.sub(msg, 1, 7) == ":g noir" then
  1753. local plrname = string.sub(msg, 9)
  1754. for i = 1,amn do
  1755. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000120307951"))
  1756. end
  1757. end
  1758.  
  1759. if string.sub(msg, 1, 11) == ":g grimgold" then
  1760. local plrname = string.sub(msg, 13)
  1761. for i = 1,amn do
  1762. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000073829193"))
  1763. end
  1764. end
  1765.  
  1766. if string.sub(msg, 1, 15) == ":g sledgehammer" then
  1767. local plrname = string.sub(msg, 17)
  1768. for i = 1,amn do
  1769. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000045177979"))
  1770. end
  1771. end
  1772.  
  1773. if string.sub(msg, 1, 9) == ":g carpet" then
  1774. local plrname = string.sub(msg, 11)
  1775. for i = 1,amn do
  1776. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000225921000"))
  1777. end
  1778. end
  1779.  
  1780. if string.sub(msg, 1, 16) == ":g dualdarkheart" then
  1781. local plrname = string.sub(msg, 18)
  1782. for i = 1,amn do
  1783. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000108149175"))
  1784. end
  1785. end
  1786.  
  1787. if string.sub(msg, 1, 12) == ":g darkheart" then
  1788. local plrname = string.sub(msg, 14)
  1789. for i = 1,amn do
  1790. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000016895215"))
  1791. end
  1792. end
  1793.  
  1794. if string.sub(msg, 1, 15) == ":g dualillumina" then
  1795. local plrname = string.sub(msg, 17)
  1796. for i = 1,amn do
  1797. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000101191388"))
  1798. end
  1799. end
  1800.  
  1801. if string.sub(msg, 1, 11) == ":g illumina" then
  1802. local plrname = string.sub(msg, 13)
  1803. for i = 1,amn do
  1804. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000016641274"))
  1805. end
  1806. end
  1807.  
  1808. if string.sub(msg, 1, 8) == ":g tommy" then
  1809. local plrname = string.sub(msg, 10)
  1810. for i = 1,amn do
  1811. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000116693764"))
  1812. end
  1813. end
  1814.  
  1815. if string.sub(msg, 1, 5) == ":g M1" then
  1816. local plrname = string.sub(msg, 7)
  1817. for i = 1,amn do
  1818. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000130113146"))
  1819. end
  1820. end
  1821.  
  1822. if string.sub(msg, 1, 8) == ":g luger" then
  1823. local plrname = string.sub(msg, 10)
  1824. for i = 1,amn do
  1825. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000095354288"))
  1826. end
  1827. end
  1828.  
  1829. if string.sub(msg, 1, 11) == ":g mauser" then
  1830. local plrname = string.sub(msg, 13)
  1831. for i = 1,amn do
  1832. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000097885552"))
  1833. end
  1834. end
  1835.  
  1836. if string.sub(msg, 1, 11) == ":g revolver" then
  1837. local plrname = string.sub(msg, 13)
  1838. for i = 1,amn do
  1839. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000097885508"))
  1840. end
  1841. end
  1842.  
  1843. if string.sub(msg, 1, 7) == ":g whip" then
  1844. local plrname = string.sub(msg, 9)
  1845. for i = 1,amn do
  1846. game:GetService'Players':Chat(("gear "..plrname.." 000000000000000000255800146"))
  1847. end
  1848. end
  1849.  
  1850. if string.sub(msg, 1, 10) == ":g jetpack" then
  1851. local plrname = string.sub(msg, 12)
  1852. for i = 1,amn do
  1853. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000031314966"))
  1854. end
  1855. end
  1856.  
  1857. if string.sub(msg, 1, 9) == ":g katana" then
  1858. local plrname = string.sub(msg, 11)
  1859. for i = 1,amn do
  1860. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000011453385"))
  1861. end
  1862. end
  1863.  
  1864. if string.sub(msg, 1, 8) == ":g chaos" then
  1865. local plrname = string.sub(msg, 10)
  1866. for i = 1,amn do
  1867. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000093136746"))
  1868. end
  1869. end
  1870.  
  1871. if string.sub(msg, 1, 7) == ":g lock" then
  1872. local plrname = string.sub(msg, 9)
  1873. for i = 1,amn do
  1874. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000082357101"))
  1875. end
  1876. end
  1877.  
  1878. if string.sub(msg, 1, 5) == ":g ld" then
  1879. local plrname = string.sub(msg, 7)
  1880. for i = 1,amn do
  1881. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000077443461"))
  1882. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000077443491"))
  1883. end
  1884. end
  1885.  
  1886. if string.sub(msg, 1, 8) == ":g light" then
  1887. local plrname = string.sub(msg, 10)
  1888. for i = 1,amn do
  1889. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000077443461"))
  1890. end
  1891. end
  1892.  
  1893. if string.sub(msg, 1, 7) == ":g dark" then
  1894. local plrname = string.sub(msg, 9)
  1895. for i = 1,amn do
  1896. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000077443491"))
  1897. end
  1898. end
  1899.  
  1900. if string.sub(msg, 1, 11) == ":g batsword" then
  1901. local plrname = string.sub(msg, 13)
  1902. for i = 1,amn do
  1903. game:GetService'Players':Chat(("gear "..plrname.." 00000000000000000017680660"))
  1904. end
  1905. end
  1906.  
  1907. if msg == ":wh" then
  1908. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-12.8988581, 40029.3047, -31.0650883))
  1909. end
  1910.  
  1911. if msg == ":idk" then
  1912. game:GetService'Players':Chat((":spam;house"))
  1913. game:GetService'Players':Chat((":spam;uhouse"))
  1914. game:GetService'Players':Chat((":spam;blocks"))
  1915. game:GetService'Players':Chat((":spam;spawn1"))
  1916. game:GetService'Players':Chat((":spam;spawn2"))
  1917. game:GetService'Players':Chat((":spam;spawn3"))
  1918. game:GetService'Players':Chat((":spam;obby"))
  1919. game:GetService'Players':Chat((":spam;pads"))
  1920. end
  1921.  
  1922. if msg == ";random" then
  1923. local xvalue = math.random(-495,495)
  1924. local zvalue = math.random(-495,495)
  1925. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(xvalue, 3, zvalue))
  1926. end
  1927.  
  1928. if string.sub(msg, 1, 5) == ":trap" then
  1929. local plr = string.sub(msg, 7)
  1930. game:GetService'Players':Chat(("freeze "..plr))
  1931. wait(0.10)
  1932. game:GetService'Players':Chat(("name "..plr.." "))
  1933. wait(0.10)
  1934. game:GetService'Players':Chat(("thaw "..plr))
  1935. end
  1936.  
  1937. if msg == ":skh" then
  1938. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-35.2523956, 1000001.63, 46.7573242, 0.999997735, -0.000349402428, 0.00207597017, 0.000349551439, 0.99999994, -8.17775726e-05, -0.00207591057, 8.2463026e-05, 0.999997854))
  1939. end
  1940.  
  1941. if msg == ":removeobbykill" then
  1942. game:GetService("Workspace").Terrain["_Game"].Workspace.Obby.Jump.TouchInterest:destroy()
  1943. game:GetService("Workspace").Terrain["_Game"].Workspace.Obby.Jump1.TouchInterest:destroy()
  1944. game:GetService("Workspace").Terrain["_Game"].Workspace.Obby.Jump2.TouchInterest:destroy()
  1945. game:GetService("Workspace").Terrain["_Game"].Workspace.Obby.Jump3.TouchInterest:destroy()
  1946. game:GetService("Workspace").Terrain["_Game"].Workspace.Obby.Jump4.TouchInterest:destroy()
  1947. game:GetService("Workspace").Terrain["_Game"].Workspace.Obby.Jump5.TouchInterest:destroy()
  1948. game:GetService("Workspace").Terrain["_Game"].Workspace.Obby.Jump6.TouchInterest:destroy()
  1949. game:GetService("Workspace").Terrain["_Game"].Workspace.Obby.Jump7.TouchInterest:destroy()
  1950. game:GetService("Workspace").Terrain["_Game"].Workspace.Obby.Jump8.TouchInterest:destroy()
  1951. game:GetService("Workspace").Terrain["_Game"].Workspace.Obby.Jump9.TouchInterest:destroy()
  1952. end
  1953.  
  1954. if msg == ":invertfix" then
  1955. for i = 1,25 do
  1956. game.Workspace.CurrentCamera.GrayScale:Destroy()
  1957. end
  1958. end
  1959.  
  1960. if msg == ":allanti" then
  1961. multianti = true
  1962. ultanti(msg)
  1963. end
  1964.  
  1965. if msg == ":alldefault" then
  1966. nopunish = true
  1967. healauto = true
  1968. noexp = true
  1969. nokill = false
  1970. noblind = true
  1971. nojail = true
  1972. nomusic = false
  1973. nodog = true
  1974. nosmoke = true
  1975. noswag = true
  1976. nosparkles = false
  1977. nofire = true
  1978. nospeed = false
  1979. noskydive = true
  1980. nocrash = true
  1981. noice = true
  1982. noseizure = true
  1983. noff = false
  1984. nomsgcrash = false
  1985. ilight = true
  1986. end
  1987.  
  1988. if msg == ":enableall" then
  1989. nopunish = true
  1990. healauto = true
  1991. noexp = true
  1992. nokill = true
  1993. noblind = true
  1994. nojail = true
  1995. nomusic = true
  1996. nodog = true
  1997. nosmoke = true
  1998. noswag = true
  1999. nosparkles = true
  2000. nofire = true
  2001. nospeed = true
  2002. noskydive = true
  2003. nocrash = true
  2004. noice = true
  2005. noseizure = true
  2006. noff = true
  2007. nomsgcrash = true
  2008. ilight = true
  2009. end
  2010.  
  2011.  
  2012. if msg == ":disableall" then
  2013. nopunish = false
  2014. healauto = false
  2015. noexp = false
  2016. nokill = false
  2017. noblind = false
  2018. nojail = false
  2019. nomusic = false
  2020. nodog = false
  2021. nosmoke = false
  2022. noswag = false
  2023. nosparkles = false
  2024. nofire = false
  2025. nospeed = false
  2026. noskydive = false
  2027. nocrash = false
  2028. noice = false
  2029. noseizure = false
  2030. noff = false
  2031. nomsgcrash = false
  2032. ilight = false
  2033. end
  2034.  
  2035. if msg == ":disablekill" then
  2036. nokill = false
  2037. end
  2038. if msg == ":disablepunish" then
  2039. nopunish = false
  2040. end
  2041. if msg == ":disableautoheal" then
  2042. healauto = false
  2043. end
  2044. if msg == ":disablejail" then
  2045. nojail = false
  2046. end
  2047. if msg == ":disablemusic" then
  2048. nomusic = false
  2049. end
  2050. if msg == ":disabledog" then
  2051. nodog = false
  2052. end
  2053. if msg == ":disablesparkles" then
  2054. nosparkles = false
  2055. end
  2056. if msg == ":disablesmoke" then
  2057. nosmoke = false
  2058. end
  2059. if msg == ":disableexp" then
  2060. noexp = false
  2061. end
  2062. if msg == ":disablespeed" then
  2063. nospeed = false
  2064. end
  2065. if msg == ":disablefire" then
  2066. nofire = false
  2067. end
  2068. if msg == ":disableswag" then
  2069. noswag = false
  2070. end
  2071. if msg == ":disableblind" then
  2072. noblind = false
  2073. end
  2074.  
  2075. if msg == ":disableskydive" then
  2076. noskydive = false
  2077. end
  2078.  
  2079. if msg == ":disablecrash" then
  2080. nocrash = false
  2081. end
  2082.  
  2083. if msg == ":disableice" then
  2084. noice = false
  2085. end
  2086.  
  2087. if msg == ":disableseizure" then
  2088. noseizure = false
  2089. end
  2090.  
  2091. if msg == ":disableff" then
  2092. noff = false
  2093. end
  2094.  
  2095. if msg == ":disablemsgcrash" then
  2096. nomsgcrash = false
  2097. end
  2098.  
  2099. if msg == ":disablenolight" then
  2100. ilight = false
  2101. end
  2102.  
  2103. if msg == ":enablekill" then
  2104. nokill = true
  2105. end
  2106. if msg == ":enablepunish" then
  2107. nopunish = true
  2108. end
  2109. if msg == ":enableautoheal" then
  2110. healauto =true
  2111. end
  2112. if msg == ":enablejail" then
  2113. nojail = true
  2114. end
  2115. if msg == ":enablemusic" then
  2116. nomusic = true
  2117. end
  2118. if msg == ":enabledog" then
  2119. nodog = true
  2120. end
  2121. if msg == ":enablesparkles" then
  2122. nosparkles = true
  2123. end
  2124. if msg == ":enablesmoke" then
  2125. nosmoke = true
  2126. end
  2127. if msg == ":enableexp" then
  2128. noexp = true
  2129. end
  2130. if msg == ":enablespeed" then
  2131. nospeed = true
  2132. end
  2133. if msg == ":enablefire" then
  2134. nofire = true
  2135. end
  2136. if msg == ":enableswag" then
  2137. noswag = true
  2138. end
  2139. if msg == ":enableblind" then
  2140. noblind = true
  2141. end
  2142.  
  2143. if msg == ":enableskydive" then
  2144. noskydive = true
  2145. end
  2146.  
  2147. if msg == ":enablecrash" then
  2148. nocrash = true
  2149. end
  2150.  
  2151. if msg == ":enableice" then
  2152. noice = true
  2153. end
  2154.  
  2155. if msg == ":enableseizure" then
  2156. noseizure = true
  2157. end
  2158.  
  2159. if msg == ":enableff" then
  2160. noff = true
  2161. end
  2162.  
  2163. if msg == ":enablemsgcrash" then
  2164. nomsgcrash = true
  2165. end
  2166.  
  2167. if msg == ":enablenolight" then
  2168. ilight = true
  2169. end
  2170.  
  2171. if msg == ":allpads" then
  2172. local pads = game:GetService("Workspace").Terrain["_Game"].Admin.Pads:GetChildren("Head")
  2173.  
  2174. for i, pad in pairs(pads) do
  2175. pad.PrimaryPart = pad:FindFirstChild("Head")
  2176. local pos = pad.PrimaryPart.CFrame
  2177. wait(0)
  2178. pad.PrimaryPart.CanCollide = false
  2179. pad:SetPrimaryPartCFrame(game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame)
  2180. wait(0)
  2181. pad:SetPrimaryPartCFrame(pos)
  2182. pad.PrimaryPart.CanCollide = true
  2183. end
  2184. end
  2185.  
  2186. end)
  2187.  
  2188. local function system(text)
  2189. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  2190. Text = text;
  2191. Font = Enum.Font.SourceSansLight;
  2192. Color = Color3.new(255, 255, 255);
  2193. FontSize = Enum.FontSize.Size8;
  2194. })
  2195. end
  2196.  
  2197. -- Gui to Lua
  2198. -- Version: 3.2
  2199.  
  2200. -- Instances:
  2201.  
  2202. local ScreenGui = {
  2203. ScreenGui = Instance.new("ScreenGui"),
  2204. main = Instance.new("Frame"),
  2205. title = Instance.new("TextLabel"),
  2206. page1 = Instance.new("Frame"),
  2207. rightarrow = Instance.new("TextButton"),
  2208. teleport = Instance.new("TextButton"),
  2209. spam = Instance.new("TextButton"),
  2210. super = Instance.new("TextButton"),
  2211. kits = Instance.new("TextButton"),
  2212. cmds = Instance.new("TextButton"),
  2213. pgnum = Instance.new("TextLabel"),
  2214. page2 = Instance.new("Frame"),
  2215. rightarrow_2 = Instance.new("TextButton"),
  2216. other = Instance.new("TextButton"),
  2217. anti = Instance.new("TextButton"),
  2218. colors = Instance.new("TextButton"),
  2219. gear = Instance.new("TextButton"),
  2220. animation = Instance.new("TextButton"),
  2221. leftarrow = Instance.new("TextButton"),
  2222. pgnum_2 = Instance.new("TextLabel"),
  2223. page3 = Instance.new("Frame"),
  2224. whiltelist = Instance.new("TextButton"),
  2225. hk = Instance.new("TextButton"),
  2226. leftarrow_2 = Instance.new("TextButton"),
  2227. Credits = Instance.new("TextButton"),
  2228. morph = Instance.new("TextButton"),
  2229. serverpro = Instance.new("TextButton"),
  2230. pgnum_3 = Instance.new("TextLabel"),
  2231. bg = Instance.new("TextLabel"),
  2232. tabholder = Instance.new("Frame"),
  2233. spamtab = Instance.new("Frame"),
  2234. title_2 = Instance.new("TextLabel"),
  2235. line = Instance.new("TextLabel"),
  2236. delay = Instance.new("TextBox"),
  2237. waittitle = Instance.new("TextLabel"),
  2238. start = Instance.new("TextButton"),
  2239. stop = Instance.new("TextButton"),
  2240. cmdhere = Instance.new("TextBox"),
  2241. cmdtitle = Instance.new("TextLabel"),
  2242. supertab = Instance.new("Frame"),
  2243. title_3 = Instance.new("TextLabel"),
  2244. line_2 = Instance.new("TextLabel"),
  2245. supertitle = Instance.new("TextLabel"),
  2246. start_2 = Instance.new("TextButton"),
  2247. cmdhere_2 = Instance.new("TextBox"),
  2248. kittab = Instance.new("ScrollingFrame"),
  2249. title_4 = Instance.new("TextLabel"),
  2250. line_3 = Instance.new("TextLabel"),
  2251. god = Instance.new("TextButton"),
  2252. omni = Instance.new("TextButton"),
  2253. gun = Instance.new("TextButton"),
  2254. dark = Instance.new("TextButton"),
  2255. dagger = Instance.new("TextButton"),
  2256. bow = Instance.new("TextButton"),
  2257. crossbow = Instance.new("TextButton"),
  2258. knife = Instance.new("TextButton"),
  2259. ninja = Instance.new("TextButton"),
  2260. scythe = Instance.new("TextButton"),
  2261. sword = Instance.new("TextButton"),
  2262. magic = Instance.new("TextButton"),
  2263. flying = Instance.new("TextButton"),
  2264. troll = Instance.new("TextButton"),
  2265. potion = Instance.new("TextButton"),
  2266. bomb = Instance.new("TextButton"),
  2267. heal = Instance.new("TextButton"),
  2268. teleporttab = Instance.new("Frame"),
  2269. title_5 = Instance.new("TextLabel"),
  2270. line_4 = Instance.new("TextLabel"),
  2271. obby = Instance.new("TextButton"),
  2272. house = Instance.new("TextButton"),
  2273. uhouse = Instance.new("TextButton"),
  2274. blocks = Instance.new("TextButton"),
  2275. spawn2 = Instance.new("TextButton"),
  2276. pads = Instance.new("TextButton"),
  2277. spawn3 = Instance.new("TextButton"),
  2278. spawn1 = Instance.new("TextButton"),
  2279. antitab = Instance.new("ScrollingFrame"),
  2280. title_6 = Instance.new("TextLabel"),
  2281. line_5 = Instance.new("TextLabel"),
  2282. kill = Instance.new("TextButton"),
  2283. onofftext = Instance.new("TextLabel"),
  2284. punish = Instance.new("TextButton"),
  2285. onofftext_2 = Instance.new("TextLabel"),
  2286. on = Instance.new("TextButton"),
  2287. onofftext_3 = Instance.new("TextLabel"),
  2288. off = Instance.new("TextButton"),
  2289. jail = Instance.new("TextButton"),
  2290. onofftext_4 = Instance.new("TextLabel"),
  2291. heal_2 = Instance.new("TextButton"),
  2292. onofftext_5 = Instance.new("TextLabel"),
  2293. dog = Instance.new("TextButton"),
  2294. onofftext_6 = Instance.new("TextLabel"),
  2295. music = Instance.new("TextButton"),
  2296. onofftext_7 = Instance.new("TextLabel"),
  2297. smoke = Instance.new("TextButton"),
  2298. onofftext_8 = Instance.new("TextLabel"),
  2299. sparkles = Instance.new("TextButton"),
  2300. onofftext_9 = Instance.new("TextLabel"),
  2301. speed = Instance.new("TextButton"),
  2302. onofftext_10 = Instance.new("TextLabel"),
  2303. explode = Instance.new("TextButton"),
  2304. onofftext_11 = Instance.new("TextLabel"),
  2305. swag = Instance.new("TextButton"),
  2306. onofftext_12 = Instance.new("TextLabel"),
  2307. fire = Instance.new("TextButton"),
  2308. onofftext_13 = Instance.new("TextLabel"),
  2309. skydive = Instance.new("TextButton"),
  2310. onofftext_14 = Instance.new("TextLabel"),
  2311. blind = Instance.new("TextButton"),
  2312. onofftext_15 = Instance.new("TextLabel"),
  2313. ice = Instance.new("TextButton"),
  2314. onofftext_16 = Instance.new("TextLabel"),
  2315. crash = Instance.new("TextButton"),
  2316. onofftext_17 = Instance.new("TextLabel"),
  2317. ff = Instance.new("TextButton"),
  2318. onofftext_18 = Instance.new("TextLabel"),
  2319. seizure = Instance.new("TextButton"),
  2320. onofftext_19 = Instance.new("TextLabel"),
  2321. light = Instance.new("TextButton"),
  2322. onofftext_20 = Instance.new("TextLabel"),
  2323. msgcrash = Instance.new("TextButton"),
  2324. onofftext_21 = Instance.new("TextLabel"),
  2325. colortab = Instance.new("Frame"),
  2326. title_7 = Instance.new("TextLabel"),
  2327. line_6 = Instance.new("TextLabel"),
  2328. acolor = Instance.new("TextButton"),
  2329. bcolor = Instance.new("TextButton"),
  2330. redhell = Instance.new("TextButton"),
  2331. ccolor = Instance.new("TextButton"),
  2332. a = Instance.new("TextButton"),
  2333. rainbow = Instance.new("TextButton"),
  2334. a_2 = Instance.new("TextButton"),
  2335. a_3 = Instance.new("TextButton"),
  2336. stop_2 = Instance.new("TextButton"),
  2337. geartab = Instance.new("ScrollingFrame"),
  2338. title_8 = Instance.new("TextLabel"),
  2339. line_7 = Instance.new("TextLabel"),
  2340. laser = Instance.new("TextButton"),
  2341. dagger_2 = Instance.new("TextButton"),
  2342. cresendo = Instance.new("TextButton"),
  2343. rainbow_2 = Instance.new("TextButton"),
  2344. azure = Instance.new("TextButton"),
  2345. crimson = Instance.new("TextButton"),
  2346. chart = Instance.new("TextButton"),
  2347. ivory = Instance.new("TextButton"),
  2348. sledge = Instance.new("TextButton"),
  2349. grim = Instance.new("TextButton"),
  2350. noir = Instance.new("TextButton"),
  2351. amethy = Instance.new("TextButton"),
  2352. dualill = Instance.new("TextButton"),
  2353. dualdark = Instance.new("TextButton"),
  2354. carpet = Instance.new("TextButton"),
  2355. chaos = Instance.new("TextButton"),
  2356. katana = Instance.new("TextButton"),
  2357. jetpack = Instance.new("TextButton"),
  2358. batsword = Instance.new("TextButton"),
  2359. othertab = Instance.new("Frame"),
  2360. title_9 = Instance.new("TextLabel"),
  2361. line_8 = Instance.new("TextLabel"),
  2362. zawarudo = Instance.new("TextButton"),
  2363. purge = Instance.new("TextButton"),
  2364. green = Instance.new("TextButton"),
  2365. red = Instance.new("TextButton"),
  2366. obbykill = Instance.new("TextButton"),
  2367. regen = Instance.new("TextButton"),
  2368. rejoin = Instance.new("TextButton"),
  2369. invert = Instance.new("TextButton"),
  2370. skh = Instance.new("TextButton"),
  2371. allpad = Instance.new("TextButton"),
  2372. animationtab = Instance.new("Frame"),
  2373. title_10 = Instance.new("TextLabel"),
  2374. line_9 = Instance.new("TextLabel"),
  2375. hmm = Instance.new("TextButton"),
  2376. tosshead = Instance.new("TextButton"),
  2377. headloop = Instance.new("TextButton"),
  2378. spinarm = Instance.new("TextButton"),
  2379. headraise = Instance.new("TextButton"),
  2380. scream = Instance.new("TextButton"),
  2381. crawl = Instance.new("TextButton"),
  2382. dab = Instance.new("TextButton"),
  2383. dance = Instance.new("TextButton"),
  2384. crouch = Instance.new("TextButton"),
  2385. whitelisttab = Instance.new("Frame"),
  2386. title_11 = Instance.new("TextLabel"),
  2387. line_10 = Instance.new("TextLabel"),
  2388. namehere = Instance.new("TextBox"),
  2389. wlhelp = Instance.new("TextLabel"),
  2390. wlstart = Instance.new("TextButton"),
  2391. wlstop = Instance.new("TextButton"),
  2392. wlcmds = Instance.new("TextButton"),
  2393. serverprotecttab = Instance.new("Frame"),
  2394. title_12 = Instance.new("TextLabel"),
  2395. line_11 = Instance.new("TextLabel"),
  2396. enable = Instance.new("TextButton"),
  2397. disable = Instance.new("TextButton"),
  2398. antikill = Instance.new("TextButton"),
  2399. autoff = Instance.new("TextButton"),
  2400. sphelp = Instance.new("TextLabel"),
  2401. creditstab = Instance.new("Frame"),
  2402. title_13 = Instance.new("TextLabel"),
  2403. line_12 = Instance.new("TextLabel"),
  2404. credithelp0 = Instance.new("TextLabel"),
  2405. credithelp1 = Instance.new("TextLabel"),
  2406. credithelp2 = Instance.new("TextLabel"),
  2407. Morphtab = Instance.new("Frame"),
  2408. title_14 = Instance.new("TextLabel"),
  2409. line_13 = Instance.new("TextLabel"),
  2410. joy = Instance.new("TextButton"),
  2411. aka = Instance.new("TextButton"),
  2412. jester = Instance.new("TextButton"),
  2413. raja = Instance.new("TextButton"),
  2414. darklord = Instance.new("TextButton"),
  2415. hktab = Instance.new("Frame"),
  2416. title_15 = Instance.new("TextLabel"),
  2417. line_14 = Instance.new("TextLabel"),
  2418. credithelp0_2 = Instance.new("TextLabel"),
  2419. openclose = Instance.new("TextButton"),
  2420. commandtab = Instance.new("ScrollingFrame"),
  2421. cmds_2 = Instance.new("TextLabel"),
  2422. title_16 = Instance.new("TextLabel"),
  2423. line_15 = Instance.new("TextLabel"),
  2424. cmdopenclose = Instance.new("TextButton"),
  2425. wlcmdtab = Instance.new("Frame"),
  2426. wlcmdtabtitle = Instance.new("TextLabel"),
  2427. wlcmdtabline = Instance.new("TextLabel"),
  2428. wlcmdtabcmdlist = Instance.new("TextLabel"),
  2429. wlcmdtabclose = Instance.new("TextButton"),
  2430. }
  2431.  
  2432. --Properties:
  2433.  
  2434. ScreenGui.ScreenGui.Parent = game.CoreGui
  2435.  
  2436. ScreenGui.main.Name = "main"
  2437. ScreenGui.main.Parent = ScreenGui.ScreenGui
  2438. ScreenGui.main.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  2439. ScreenGui.main.BackgroundTransparency = 1.000
  2440. ScreenGui.main.BorderSizePixel = 0
  2441. ScreenGui.main.Position = UDim2.new(0.142798111, 0, 0.270096481, 0)
  2442. ScreenGui.main.Size = UDim2.new(0, 156, 0, 285)
  2443. ScreenGui.main.Visible = true
  2444. ScreenGui.main.Active = true
  2445. ScreenGui.main.Draggable = true
  2446.  
  2447. ScreenGui.title.Name = "title"
  2448. ScreenGui.title.Parent = ScreenGui.main
  2449. ScreenGui.title.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  2450. ScreenGui.title.BorderSizePixel = 0
  2451. ScreenGui.title.Size = UDim2.new(0, 156, 0, 31)
  2452. ScreenGui.title.Font = Enum.Font.Gotham
  2453. ScreenGui.title.Text = "AdminJoy V2"
  2454. ScreenGui.title.TextColor3 = Color3.fromRGB(255, 255, 255)
  2455. ScreenGui.title.TextSize = 16.000
  2456. ScreenGui.title.TextWrapped = true
  2457. ScreenGui.title.TextXAlignment = Enum.TextXAlignment.Left
  2458.  
  2459. ScreenGui.page1.Name = "page1"
  2460. ScreenGui.page1.Parent = ScreenGui.main
  2461. ScreenGui.page1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2462. ScreenGui.page1.BackgroundTransparency = 1.000
  2463. ScreenGui.page1.BorderSizePixel = 0
  2464. ScreenGui.page1.Position = UDim2.new(0, 0, 0.105263159, 0)
  2465. ScreenGui.page1.Size = UDim2.new(0, 156, 0, 255)
  2466. ScreenGui.page1.Visible = false
  2467.  
  2468. ScreenGui.rightarrow.Name = "right arrow"
  2469. ScreenGui.rightarrow.Parent = ScreenGui.page1
  2470. ScreenGui.rightarrow.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  2471. ScreenGui.rightarrow.BorderColor3 = Color3.fromRGB(26, 26, 26)
  2472. ScreenGui.rightarrow.BorderSizePixel = 3
  2473. ScreenGui.rightarrow.Position = UDim2.new(0.756410241, 0, 0.866615057, 0)
  2474. ScreenGui.rightarrow.Size = UDim2.new(0, 32, 0, 25)
  2475. ScreenGui.rightarrow.Font = Enum.Font.Gotham
  2476. ScreenGui.rightarrow.Text = ">"
  2477. ScreenGui.rightarrow.TextColor3 = Color3.fromRGB(255, 255, 255)
  2478. ScreenGui.rightarrow.TextSize = 18.000
  2479. ScreenGui.rightarrow.MouseButton1Down:connect(function()
  2480. ScreenGui.page1.Visible = false
  2481. ScreenGui.page2.Visible = true
  2482. end)
  2483.  
  2484. ScreenGui.teleport.Name = "teleport"
  2485. ScreenGui.teleport.Parent = ScreenGui.page1
  2486. ScreenGui.teleport.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  2487. ScreenGui.teleport.BorderColor3 = Color3.fromRGB(26, 26, 26)
  2488. ScreenGui.teleport.BorderSizePixel = 3
  2489. ScreenGui.teleport.Position = UDim2.new(0.0320513248, 0, 0.544427276, 0)
  2490. ScreenGui.teleport.Size = UDim2.new(0, 145, 0, 29)
  2491. ScreenGui.teleport.Font = Enum.Font.Gotham
  2492. ScreenGui.teleport.Text = "Teleports!"
  2493. ScreenGui.teleport.TextColor3 = Color3.fromRGB(255, 255, 255)
  2494. ScreenGui.teleport.TextSize = 18.000
  2495. ScreenGui.teleport.MouseButton1Down:connect(function()
  2496. ScreenGui.Morphtab.Visible = false
  2497. ScreenGui.animationtab.Visible = false
  2498. ScreenGui.antitab.Visible = false
  2499. ScreenGui.colortab.Visible = false
  2500. ScreenGui.creditstab.Visible = false
  2501. ScreenGui.geartab.Visible = false
  2502. ScreenGui.hktab.Visible = false
  2503. ScreenGui.kittab.Visible = false
  2504. ScreenGui.othertab.Visible = false
  2505. ScreenGui.serverprotecttab.Visible = false
  2506. ScreenGui.spamtab.Visible = false
  2507. ScreenGui.supertab.Visible = false
  2508. ScreenGui.teleporttab.Visible = not ScreenGui.teleporttab.Visible
  2509. if ScreenGui.teleporttab.Visible == false then
  2510. ScreenGui.tabholder.Visible = false
  2511. end
  2512. if ScreenGui.teleporttab.Visible == true then
  2513. ScreenGui.tabholder.Visible = true
  2514. end
  2515. ScreenGui.whitelisttab.Visible = false
  2516. end)
  2517.  
  2518. ScreenGui.spam.Name = "spam"
  2519. ScreenGui.spam.Parent = ScreenGui.page1
  2520. ScreenGui.spam.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  2521. ScreenGui.spam.BorderColor3 = Color3.fromRGB(26, 26, 26)
  2522. ScreenGui.spam.BorderSizePixel = 3
  2523. ScreenGui.spam.Position = UDim2.new(0.0320513248, 0, 0.0484520122, 0)
  2524. ScreenGui.spam.Size = UDim2.new(0, 145, 0, 29)
  2525. ScreenGui.spam.Font = Enum.Font.Gotham
  2526. ScreenGui.spam.Text = "Spam!"
  2527. ScreenGui.spam.TextColor3 = Color3.fromRGB(255, 255, 255)
  2528. ScreenGui.spam.TextSize = 18.000
  2529. ScreenGui.spam.MouseButton1Down:connect(function()
  2530. ScreenGui.Morphtab.Visible = false
  2531. ScreenGui.animationtab.Visible = false
  2532. ScreenGui.antitab.Visible = false
  2533. ScreenGui.colortab.Visible = false
  2534. ScreenGui.creditstab.Visible = false
  2535. ScreenGui.geartab.Visible = false
  2536. ScreenGui.hktab.Visible = false
  2537. ScreenGui.kittab.Visible = false
  2538. ScreenGui.othertab.Visible = false
  2539. ScreenGui.serverprotecttab.Visible = false
  2540. ScreenGui.spamtab.Visible = not ScreenGui.spamtab.Visible
  2541. if ScreenGui.spamtab.Visible == false then
  2542. ScreenGui.tabholder.Visible = false
  2543. end
  2544. if ScreenGui.spamtab.Visible == true then
  2545. ScreenGui.tabholder.Visible = true
  2546. end
  2547. ScreenGui.supertab.Visible = false
  2548. ScreenGui.teleporttab.Visible = false
  2549. ScreenGui.whitelisttab.Visible = false
  2550. end)
  2551.  
  2552. ScreenGui.super.Name = "super"
  2553. ScreenGui.super.Parent = ScreenGui.page1
  2554. ScreenGui.super.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  2555. ScreenGui.super.BorderColor3 = Color3.fromRGB(26, 26, 26)
  2556. ScreenGui.super.BorderSizePixel = 3
  2557. ScreenGui.super.Position = UDim2.new(0.0320513248, 0, 0.216666698, 0)
  2558. ScreenGui.super.Size = UDim2.new(0, 145, 0, 29)
  2559. ScreenGui.super.Font = Enum.Font.Gotham
  2560. ScreenGui.super.Text = "Super"
  2561. ScreenGui.super.TextColor3 = Color3.fromRGB(255, 255, 255)
  2562. ScreenGui.super.TextSize = 18.000
  2563. ScreenGui.super.MouseButton1Down:connect(function()
  2564. ScreenGui.Morphtab.Visible = false
  2565. ScreenGui.animationtab.Visible = false
  2566. ScreenGui.antitab.Visible = false
  2567. ScreenGui.colortab.Visible = false
  2568. ScreenGui.creditstab.Visible = false
  2569. ScreenGui.geartab.Visible = false
  2570. ScreenGui.hktab.Visible = false
  2571. ScreenGui.kittab.Visible = false
  2572. ScreenGui.othertab.Visible = false
  2573. ScreenGui.serverprotecttab.Visible = false
  2574. ScreenGui.spamtab.Visible = false
  2575. ScreenGui.supertab.Visible = not ScreenGui.supertab.Visible
  2576. if ScreenGui.supertab.Visible == false then
  2577. ScreenGui.tabholder.Visible = false
  2578. end
  2579. if ScreenGui.supertab.Visible == true then
  2580. ScreenGui.tabholder.Visible = true
  2581. end
  2582. ScreenGui.teleporttab.Visible = false
  2583. ScreenGui.whitelisttab.Visible = false
  2584. end)
  2585.  
  2586. ScreenGui.kits.Name = "kits"
  2587. ScreenGui.kits.Parent = ScreenGui.page1
  2588. ScreenGui.kits.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  2589. ScreenGui.kits.BorderColor3 = Color3.fromRGB(26, 26, 26)
  2590. ScreenGui.kits.BorderSizePixel = 3
  2591. ScreenGui.kits.Position = UDim2.new(0.0320513248, 0, 0.384055763, 0)
  2592. ScreenGui.kits.Size = UDim2.new(0, 145, 0, 29)
  2593. ScreenGui.kits.Font = Enum.Font.Gotham
  2594. ScreenGui.kits.Text = "Kits"
  2595. ScreenGui.kits.TextColor3 = Color3.fromRGB(255, 255, 255)
  2596. ScreenGui.kits.TextSize = 18.000
  2597. ScreenGui.kits.MouseButton1Down:connect(function()
  2598. ScreenGui.Morphtab.Visible = false
  2599. ScreenGui.animationtab.Visible = false
  2600. ScreenGui.antitab.Visible = false
  2601. ScreenGui.colortab.Visible = false
  2602. ScreenGui.creditstab.Visible = false
  2603. ScreenGui.geartab.Visible = false
  2604. ScreenGui.hktab.Visible = false
  2605. ScreenGui.kittab.Visible = not ScreenGui.kittab.Visible
  2606. if ScreenGui.kittab.Visible == false then
  2607. ScreenGui.tabholder.Visible = false
  2608. end
  2609. if ScreenGui.kittab.Visible == true then
  2610. ScreenGui.tabholder.Visible = true
  2611. end
  2612. ScreenGui.othertab.Visible = false
  2613. ScreenGui.serverprotecttab.Visible = false
  2614. ScreenGui.spamtab.Visible = false
  2615. ScreenGui.supertab.Visible = false
  2616. ScreenGui.teleporttab.Visible = false
  2617. ScreenGui.whitelisttab.Visible = false
  2618. end)
  2619.  
  2620. ScreenGui.cmds.Name = "cmds"
  2621. ScreenGui.cmds.Parent = ScreenGui.page1
  2622. ScreenGui.cmds.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  2623. ScreenGui.cmds.BorderColor3 = Color3.fromRGB(26, 26, 26)
  2624. ScreenGui.cmds.BorderSizePixel = 3
  2625. ScreenGui.cmds.Position = UDim2.new(0.0320513248, 0, 0.704798818, 0)
  2626. ScreenGui.cmds.Size = UDim2.new(0, 145, 0, 29)
  2627. ScreenGui.cmds.Font = Enum.Font.Gotham
  2628. ScreenGui.cmds.Text = "Commands!"
  2629. ScreenGui.cmds.TextColor3 = Color3.fromRGB(255, 255, 255)
  2630. ScreenGui.cmds.TextSize = 18.000
  2631. ScreenGui.cmds.MouseButton1Down:connect(function()
  2632. ScreenGui.commandtab.Visible = not ScreenGui.commandtab.Visible
  2633. end)
  2634.  
  2635. ScreenGui.pgnum.Name = "pgnum"
  2636. ScreenGui.pgnum.Parent = ScreenGui.page1
  2637. ScreenGui.pgnum.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  2638. ScreenGui.pgnum.BackgroundTransparency = 1.000
  2639. ScreenGui.pgnum.BorderSizePixel = 0
  2640. ScreenGui.pgnum.Position = UDim2.new(0.339743584, 0, 0.866615057, 0)
  2641. ScreenGui.pgnum.Size = UDim2.new(0, 50, 0, 25)
  2642. ScreenGui.pgnum.Font = Enum.Font.Gotham
  2643. ScreenGui.pgnum.Text = "Page 1"
  2644. ScreenGui.pgnum.TextColor3 = Color3.fromRGB(255, 255, 255)
  2645. ScreenGui.pgnum.TextSize = 16.000
  2646. ScreenGui.pgnum.TextWrapped = true
  2647.  
  2648. ScreenGui.page2.Name = "page2"
  2649. ScreenGui.page2.Parent = ScreenGui.main
  2650. ScreenGui.page2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2651. ScreenGui.page2.BackgroundTransparency = 1.000
  2652. ScreenGui.page2.BorderSizePixel = 0
  2653. ScreenGui.page2.Position = UDim2.new(0, 0, 0.105263159, 0)
  2654. ScreenGui.page2.Size = UDim2.new(0, 156, 0, 255)
  2655. ScreenGui.page2.Visible = false
  2656.  
  2657. ScreenGui.rightarrow_2.Name = "rightarrow"
  2658. ScreenGui.rightarrow_2.Parent = ScreenGui.page2
  2659. ScreenGui.rightarrow_2.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  2660. ScreenGui.rightarrow_2.BorderColor3 = Color3.fromRGB(26, 26, 26)
  2661. ScreenGui.rightarrow_2.BorderSizePixel = 3
  2662. ScreenGui.rightarrow_2.Position = UDim2.new(0.756410241, 0, 0.866615057, 0)
  2663. ScreenGui.rightarrow_2.Size = UDim2.new(0, 32, 0, 25)
  2664. ScreenGui.rightarrow_2.Font = Enum.Font.Gotham
  2665. ScreenGui.rightarrow_2.Text = ">"
  2666. ScreenGui.rightarrow_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  2667. ScreenGui.rightarrow_2.TextSize = 18.000
  2668. ScreenGui.rightarrow_2.MouseButton1Down:connect(function()
  2669. ScreenGui.page2.Visible = false
  2670. ScreenGui.page3.Visible = true
  2671. end)
  2672.  
  2673. ScreenGui.other.Name = "other"
  2674. ScreenGui.other.Parent = ScreenGui.page2
  2675. ScreenGui.other.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  2676. ScreenGui.other.BorderColor3 = Color3.fromRGB(26, 26, 26)
  2677. ScreenGui.other.BorderSizePixel = 3
  2678. ScreenGui.other.Position = UDim2.new(0.0320513248, 0, 0.544427276, 0)
  2679. ScreenGui.other.Size = UDim2.new(0, 145, 0, 29)
  2680. ScreenGui.other.Font = Enum.Font.Gotham
  2681. ScreenGui.other.Text = "Other"
  2682. ScreenGui.other.TextColor3 = Color3.fromRGB(255, 255, 255)
  2683. ScreenGui.other.TextSize = 18.000
  2684. ScreenGui.other.MouseButton1Down:connect(function()
  2685. ScreenGui.Morphtab.Visible = false
  2686. ScreenGui.animationtab.Visible = false
  2687. ScreenGui.antitab.Visible = false
  2688. ScreenGui.colortab.Visible = false
  2689. ScreenGui.creditstab.Visible = false
  2690. ScreenGui.geartab.Visible = false
  2691. ScreenGui.hktab.Visible = false
  2692. ScreenGui.kittab.Visible = false
  2693. ScreenGui.othertab.Visible = not ScreenGui.othertab.Visible
  2694. if ScreenGui.othertab.Visible == false then
  2695. ScreenGui.tabholder.Visible = false
  2696. end
  2697. if ScreenGui.othertab.Visible == true then
  2698. ScreenGui.tabholder.Visible = true
  2699. end
  2700. ScreenGui.serverprotecttab.Visible = false
  2701. ScreenGui.spamtab.Visible = false
  2702. ScreenGui.supertab.Visible = false
  2703. ScreenGui.teleporttab.Visible = false
  2704. ScreenGui.whitelisttab.Visible = false
  2705. end)
  2706.  
  2707. ScreenGui.anti.Name = "anti"
  2708. ScreenGui.anti.Parent = ScreenGui.page2
  2709. ScreenGui.anti.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  2710. ScreenGui.anti.BorderColor3 = Color3.fromRGB(26, 26, 26)
  2711. ScreenGui.anti.BorderSizePixel = 3
  2712. ScreenGui.anti.Position = UDim2.new(0.0320513248, 0, 0.0484520122, 0)
  2713. ScreenGui.anti.Size = UDim2.new(0, 145, 0, 29)
  2714. ScreenGui.anti.Font = Enum.Font.Gotham
  2715. ScreenGui.anti.Text = "Anti"
  2716. ScreenGui.anti.TextColor3 = Color3.fromRGB(255, 255, 255)
  2717. ScreenGui.anti.TextSize = 18.000
  2718. ScreenGui.anti.MouseButton1Down:connect(function()
  2719. ScreenGui.Morphtab.Visible = false
  2720. ScreenGui.animationtab.Visible = false
  2721. ScreenGui.antitab.Visible = not ScreenGui.antitab.Visible
  2722. if ScreenGui.antitab.Visible == false then
  2723. ScreenGui.tabholder.Visible = false
  2724. end
  2725. if ScreenGui.antitab.Visible == true then
  2726. ScreenGui.tabholder.Visible = true
  2727. end
  2728. ScreenGui.colortab.Visible = false
  2729. ScreenGui.creditstab.Visible = false
  2730. ScreenGui.geartab.Visible = false
  2731. ScreenGui.hktab.Visible = false
  2732. ScreenGui.kittab.Visible = false
  2733. ScreenGui.othertab.Visible = false
  2734. ScreenGui.serverprotecttab.Visible = false
  2735. ScreenGui.spamtab.Visible = false
  2736. ScreenGui.supertab.Visible = false
  2737. ScreenGui.teleporttab.Visible = false
  2738. ScreenGui.whitelisttab.Visible = false
  2739. end)
  2740.  
  2741. ScreenGui.colors.Name = "colors"
  2742. ScreenGui.colors.Parent = ScreenGui.page2
  2743. ScreenGui.colors.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  2744. ScreenGui.colors.BorderColor3 = Color3.fromRGB(26, 26, 26)
  2745. ScreenGui.colors.BorderSizePixel = 3
  2746. ScreenGui.colors.Position = UDim2.new(0.0320513248, 0, 0.216666698, 0)
  2747. ScreenGui.colors.Size = UDim2.new(0, 145, 0, 29)
  2748. ScreenGui.colors.Font = Enum.Font.Gotham
  2749. ScreenGui.colors.Text = "Colors!"
  2750. ScreenGui.colors.TextColor3 = Color3.fromRGB(255, 255, 255)
  2751. ScreenGui.colors.TextSize = 18.000
  2752. ScreenGui.colors.MouseButton1Down:connect(function()
  2753. ScreenGui.Morphtab.Visible = false
  2754. ScreenGui.animationtab.Visible = false
  2755. ScreenGui.antitab.Visible = false
  2756. ScreenGui.colortab.Visible = not ScreenGui.colortab.Visible
  2757. if ScreenGui.colortab.Visible == false then
  2758. ScreenGui.tabholder.Visible = false
  2759. end
  2760. if ScreenGui.colortab.Visible == true then
  2761. ScreenGui.tabholder.Visible = true
  2762. end
  2763. ScreenGui.creditstab.Visible = false
  2764. ScreenGui.geartab.Visible = false
  2765. ScreenGui.hktab.Visible = false
  2766. ScreenGui.kittab.Visible = false
  2767. ScreenGui.othertab.Visible = false
  2768. ScreenGui.serverprotecttab.Visible = false
  2769. ScreenGui.spamtab.Visible = false
  2770. ScreenGui.supertab.Visible = false
  2771. ScreenGui.teleporttab.Visible = false
  2772. ScreenGui.whitelisttab.Visible = false
  2773. end)
  2774.  
  2775. ScreenGui.gear.Name = "gear"
  2776. ScreenGui.gear.Parent = ScreenGui.page2
  2777. ScreenGui.gear.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  2778. ScreenGui.gear.BorderColor3 = Color3.fromRGB(26, 26, 26)
  2779. ScreenGui.gear.BorderSizePixel = 3
  2780. ScreenGui.gear.Position = UDim2.new(0.0320513248, 0, 0.384055763, 0)
  2781. ScreenGui.gear.Size = UDim2.new(0, 145, 0, 29)
  2782. ScreenGui.gear.Font = Enum.Font.Gotham
  2783. ScreenGui.gear.Text = "Gear"
  2784. ScreenGui.gear.TextColor3 = Color3.fromRGB(255, 255, 255)
  2785. ScreenGui.gear.TextSize = 18.000
  2786. ScreenGui.gear.MouseButton1Down:connect(function()
  2787. ScreenGui.Morphtab.Visible = false
  2788. ScreenGui.animationtab.Visible = false
  2789. ScreenGui.antitab.Visible = false
  2790. ScreenGui.colortab.Visible = false
  2791. ScreenGui.creditstab.Visible = false
  2792. ScreenGui.geartab.Visible = not ScreenGui.geartab.Visible
  2793. if ScreenGui.geartab.Visible == false then
  2794. ScreenGui.tabholder.Visible = false
  2795. end
  2796. if ScreenGui.geartab.Visible == true then
  2797. ScreenGui.tabholder.Visible = true
  2798. end
  2799. ScreenGui.hktab.Visible = false
  2800. ScreenGui.kittab.Visible = false
  2801. ScreenGui.othertab.Visible = false
  2802. ScreenGui.serverprotecttab.Visible = false
  2803. ScreenGui.spamtab.Visible = false
  2804. ScreenGui.supertab.Visible = false
  2805. ScreenGui.teleporttab.Visible = false
  2806. ScreenGui.whitelisttab.Visible = false
  2807. end)
  2808.  
  2809. ScreenGui.animation.Name = "animation"
  2810. ScreenGui.animation.Parent = ScreenGui.page2
  2811. ScreenGui.animation.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  2812. ScreenGui.animation.BorderColor3 = Color3.fromRGB(26, 26, 26)
  2813. ScreenGui.animation.BorderSizePixel = 3
  2814. ScreenGui.animation.Position = UDim2.new(0.0320513248, 0, 0.704798818, 0)
  2815. ScreenGui.animation.Size = UDim2.new(0, 145, 0, 29)
  2816. ScreenGui.animation.Font = Enum.Font.Gotham
  2817. ScreenGui.animation.Text = "Animations!"
  2818. ScreenGui.animation.TextColor3 = Color3.fromRGB(255, 255, 255)
  2819. ScreenGui.animation.TextSize = 18.000
  2820. ScreenGui.animation.MouseButton1Down:connect(function()
  2821. ScreenGui.Morphtab.Visible = false
  2822. ScreenGui.animationtab.Visible = not ScreenGui.animationtab.Visible
  2823. if ScreenGui.animationtab.Visible == false then
  2824. ScreenGui.tabholder.Visible = false
  2825. end
  2826. if ScreenGui.animationtab.Visible == true then
  2827. ScreenGui.tabholder.Visible = true
  2828. end
  2829. ScreenGui.antitab.Visible = false
  2830. ScreenGui.colortab.Visible = false
  2831. ScreenGui.creditstab.Visible = false
  2832. ScreenGui.geartab.Visible = false
  2833. ScreenGui.hktab.Visible = false
  2834. ScreenGui.kittab.Visible = false
  2835. ScreenGui.othertab.Visible = false
  2836. ScreenGui.serverprotecttab.Visible = false
  2837. ScreenGui.spamtab.Visible = false
  2838. ScreenGui.supertab.Visible = false
  2839. ScreenGui.teleporttab.Visible = false
  2840. ScreenGui.whitelisttab.Visible = false
  2841. end)
  2842.  
  2843. ScreenGui.leftarrow.Name = "leftarrow"
  2844. ScreenGui.leftarrow.Parent = ScreenGui.page2
  2845. ScreenGui.leftarrow.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  2846. ScreenGui.leftarrow.BorderColor3 = Color3.fromRGB(26, 26, 26)
  2847. ScreenGui.leftarrow.BorderSizePixel = 3
  2848. ScreenGui.leftarrow.Position = UDim2.new(0.0320512652, 0, 0.866615057, 0)
  2849. ScreenGui.leftarrow.Size = UDim2.new(0, 32, 0, 25)
  2850. ScreenGui.leftarrow.Font = Enum.Font.Gotham
  2851. ScreenGui.leftarrow.Text = "<"
  2852. ScreenGui.leftarrow.TextColor3 = Color3.fromRGB(255, 255, 255)
  2853. ScreenGui.leftarrow.TextSize = 18.000
  2854. ScreenGui.leftarrow.MouseButton1Down:connect(function()
  2855. ScreenGui.page2.Visible = false
  2856. ScreenGui.page1.Visible = true
  2857. end)
  2858.  
  2859.  
  2860. ScreenGui.pgnum_2.Name = "pgnum"
  2861. ScreenGui.pgnum_2.Parent = ScreenGui.page2
  2862. ScreenGui.pgnum_2.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  2863. ScreenGui.pgnum_2.BackgroundTransparency = 1.000
  2864. ScreenGui.pgnum_2.BorderSizePixel = 0
  2865. ScreenGui.pgnum_2.Position = UDim2.new(0.307692319, 0, 0.866615057, 0)
  2866. ScreenGui.pgnum_2.Size = UDim2.new(0, 60, 0, 25)
  2867. ScreenGui.pgnum_2.Font = Enum.Font.Gotham
  2868. ScreenGui.pgnum_2.Text = "Page 2"
  2869. ScreenGui.pgnum_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  2870. ScreenGui.pgnum_2.TextSize = 16.000
  2871. ScreenGui.pgnum_2.TextWrapped = true
  2872.  
  2873. ScreenGui.page3.Name = "page3"
  2874. ScreenGui.page3.Parent = ScreenGui.main
  2875. ScreenGui.page3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2876. ScreenGui.page3.BackgroundTransparency = 1.000
  2877. ScreenGui.page3.BorderSizePixel = 0
  2878. ScreenGui.page3.Position = UDim2.new(0, 0, 0.105263159, 0)
  2879. ScreenGui.page3.Size = UDim2.new(0, 156, 0, 255)
  2880. ScreenGui.page3.Visible = false
  2881.  
  2882. ScreenGui.whiltelist.Name = "whiltelist"
  2883. ScreenGui.whiltelist.Parent = ScreenGui.page3
  2884. ScreenGui.whiltelist.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  2885. ScreenGui.whiltelist.BorderColor3 = Color3.fromRGB(26, 26, 26)
  2886. ScreenGui.whiltelist.BorderSizePixel = 3
  2887. ScreenGui.whiltelist.Position = UDim2.new(0.0320513248, 0, 0.0484520122, 0)
  2888. ScreenGui.whiltelist.Size = UDim2.new(0, 145, 0, 29)
  2889. ScreenGui.whiltelist.Font = Enum.Font.Gotham
  2890. ScreenGui.whiltelist.Text = "Whitelist!"
  2891. ScreenGui.whiltelist.TextColor3 = Color3.fromRGB(255, 255, 255)
  2892. ScreenGui.whiltelist.TextSize = 18.000
  2893. ScreenGui.whiltelist.MouseButton1Down:connect(function()
  2894. ScreenGui.Morphtab.Visible = false
  2895. ScreenGui.animationtab.Visible = false
  2896. ScreenGui.antitab.Visible = false
  2897. ScreenGui.colortab.Visible = false
  2898. ScreenGui.creditstab.Visible = false
  2899. ScreenGui.geartab.Visible = false
  2900. ScreenGui.hktab.Visible = false
  2901. ScreenGui.kittab.Visible = false
  2902. ScreenGui.othertab.Visible = false
  2903. ScreenGui.serverprotecttab.Visible = false
  2904. ScreenGui.spamtab.Visible = false
  2905. ScreenGui.supertab.Visible = false
  2906. ScreenGui.teleporttab.Visible = false
  2907. ScreenGui.whitelisttab.Visible = not ScreenGui.whitelisttab.Visible
  2908. if ScreenGui.whitelisttab.Visible == false then
  2909. ScreenGui.tabholder.Visible = false
  2910. end
  2911. if ScreenGui.whitelisttab.Visible == true then
  2912. ScreenGui.tabholder.Visible = true
  2913. end
  2914. end)
  2915.  
  2916. ScreenGui.hk.Name = "hk"
  2917. ScreenGui.hk.Parent = ScreenGui.page3
  2918. ScreenGui.hk.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  2919. ScreenGui.hk.BorderColor3 = Color3.fromRGB(26, 26, 26)
  2920. ScreenGui.hk.BorderSizePixel = 3
  2921. ScreenGui.hk.Position = UDim2.new(0.0320513248, 0, 0.216666698, 0)
  2922. ScreenGui.hk.Size = UDim2.new(0, 145, 0, 29)
  2923. ScreenGui.hk.Font = Enum.Font.Gotham
  2924. ScreenGui.hk.Text = "HotKeys"
  2925. ScreenGui.hk.TextColor3 = Color3.fromRGB(255, 255, 255)
  2926. ScreenGui.hk.TextSize = 18.000
  2927. ScreenGui.hk.MouseButton1Down:connect(function()
  2928. ScreenGui.Morphtab.Visible = false
  2929. ScreenGui.animationtab.Visible = false
  2930. ScreenGui.antitab.Visible = false
  2931. ScreenGui.colortab.Visible = false
  2932. ScreenGui.creditstab.Visible = false
  2933. ScreenGui.geartab.Visible = false
  2934. ScreenGui.hktab.Visible = not ScreenGui.hktab.Visible
  2935. if ScreenGui.hktab.Visible == false then
  2936. ScreenGui.tabholder.Visible = false
  2937. end
  2938. if ScreenGui.hktab.Visible == true then
  2939. ScreenGui.tabholder.Visible = true
  2940. end
  2941. ScreenGui.kittab.Visible = false
  2942. ScreenGui.othertab.Visible = false
  2943. ScreenGui.serverprotecttab.Visible = false
  2944. ScreenGui.spamtab.Visible = false
  2945. ScreenGui.supertab.Visible = false
  2946. ScreenGui.teleporttab.Visible = false
  2947. ScreenGui.whitelisttab.Visible = false
  2948. end)
  2949.  
  2950. ScreenGui.leftarrow_2.Name = "leftarrow"
  2951. ScreenGui.leftarrow_2.Parent = ScreenGui.page3
  2952. ScreenGui.leftarrow_2.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  2953. ScreenGui.leftarrow_2.BorderColor3 = Color3.fromRGB(26, 26, 26)
  2954. ScreenGui.leftarrow_2.BorderSizePixel = 3
  2955. ScreenGui.leftarrow_2.Position = UDim2.new(0.0320512652, 0, 0.866615057, 0)
  2956. ScreenGui.leftarrow_2.Size = UDim2.new(0, 32, 0, 25)
  2957. ScreenGui.leftarrow_2.Font = Enum.Font.Gotham
  2958. ScreenGui.leftarrow_2.Text = "<"
  2959. ScreenGui.leftarrow_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  2960. ScreenGui.leftarrow_2.TextSize = 18.000
  2961. ScreenGui.leftarrow_2.MouseButton1Down:connect(function()
  2962. ScreenGui.page3.Visible = false
  2963. ScreenGui.page2.Visible = true
  2964. end)
  2965.  
  2966. ScreenGui.Credits.Name = "Credits"
  2967. ScreenGui.Credits.Parent = ScreenGui.page3
  2968. ScreenGui.Credits.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  2969. ScreenGui.Credits.BorderColor3 = Color3.fromRGB(26, 26, 26)
  2970. ScreenGui.Credits.BorderSizePixel = 3
  2971. ScreenGui.Credits.Position = UDim2.new(0.0320513248, 0, 0.704798818, 0)
  2972. ScreenGui.Credits.Size = UDim2.new(0, 145, 0, 29)
  2973. ScreenGui.Credits.Font = Enum.Font.Gotham
  2974. ScreenGui.Credits.Text = "Credits!"
  2975. ScreenGui.Credits.TextColor3 = Color3.fromRGB(255, 255, 255)
  2976. ScreenGui.Credits.TextSize = 18.000
  2977. ScreenGui.Credits.MouseButton1Down:connect(function()
  2978. ScreenGui.Morphtab.Visible = false
  2979. ScreenGui.animationtab.Visible = false
  2980. ScreenGui.antitab.Visible = false
  2981. ScreenGui.colortab.Visible = false
  2982. ScreenGui.creditstab.Visible = not ScreenGui.creditstab.Visible
  2983. if ScreenGui.creditstab.Visible == false then
  2984. ScreenGui.tabholder.Visible = false
  2985. end
  2986. if ScreenGui.creditstab.Visible == true then
  2987. ScreenGui.tabholder.Visible = true
  2988. end
  2989. ScreenGui.geartab.Visible = false
  2990. ScreenGui.hktab.Visible = false
  2991. ScreenGui.kittab.Visible = false
  2992. ScreenGui.othertab.Visible = false
  2993. ScreenGui.serverprotecttab.Visible = false
  2994. ScreenGui.spamtab.Visible = false
  2995. ScreenGui.supertab.Visible = false
  2996. ScreenGui.teleporttab.Visible = false
  2997. ScreenGui.whitelisttab.Visible = false
  2998. end)
  2999.  
  3000. ScreenGui.morph.Name = "morph"
  3001. ScreenGui.morph.Parent = ScreenGui.page3
  3002. ScreenGui.morph.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3003. ScreenGui.morph.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3004. ScreenGui.morph.BorderSizePixel = 3
  3005. ScreenGui.morph.Position = UDim2.new(0.0320513248, 0, 0.544427276, 0)
  3006. ScreenGui.morph.Size = UDim2.new(0, 145, 0, 29)
  3007. ScreenGui.morph.Font = Enum.Font.Gotham
  3008. ScreenGui.morph.Text = "Morphs"
  3009. ScreenGui.morph.TextColor3 = Color3.fromRGB(255, 255, 255)
  3010. ScreenGui.morph.TextSize = 18.000
  3011. ScreenGui.morph.MouseButton1Down:connect(function()
  3012. ScreenGui.Morphtab.Visible = not ScreenGui.Morphtab.Visible
  3013. if ScreenGui.Morphtab.Visible == false then
  3014. ScreenGui.tabholder.Visible = false
  3015. end
  3016. if ScreenGui.Morphtab.Visible == true then
  3017. ScreenGui.tabholder.Visible = true
  3018. end
  3019. ScreenGui.animationtab.Visible = false
  3020. ScreenGui.antitab.Visible = false
  3021. ScreenGui.colortab.Visible = false
  3022. ScreenGui.creditstab.Visible = false
  3023. ScreenGui.geartab.Visible = false
  3024. ScreenGui.hktab.Visible = false
  3025. ScreenGui.kittab.Visible = false
  3026. ScreenGui.othertab.Visible = false
  3027. ScreenGui.serverprotecttab.Visible = false
  3028. ScreenGui.spamtab.Visible = false
  3029. ScreenGui.supertab.Visible = false
  3030. ScreenGui.teleporttab.Visible = false
  3031. ScreenGui.whitelisttab.Visible = false
  3032. end)
  3033.  
  3034. ScreenGui.serverpro.Name = "serverpro"
  3035. ScreenGui.serverpro.Parent = ScreenGui.page3
  3036. ScreenGui.serverpro.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3037. ScreenGui.serverpro.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3038. ScreenGui.serverpro.BorderSizePixel = 3
  3039. ScreenGui.serverpro.Position = UDim2.new(0.0320513248, 0, 0.384055763, 0)
  3040. ScreenGui.serverpro.Size = UDim2.new(0, 145, 0, 29)
  3041. ScreenGui.serverpro.Font = Enum.Font.Gotham
  3042. ScreenGui.serverpro.Text = "Server Protection!"
  3043. ScreenGui.serverpro.TextColor3 = Color3.fromRGB(255, 255, 255)
  3044. ScreenGui.serverpro.TextScaled = true
  3045. ScreenGui.serverpro.TextSize = 18.000
  3046. ScreenGui.serverpro.TextWrapped = true
  3047. ScreenGui.serverpro.MouseButton1Down:connect(function()
  3048. ScreenGui.Morphtab.Visible = false
  3049. ScreenGui.animationtab.Visible = false
  3050. ScreenGui.antitab.Visible = false
  3051. ScreenGui.colortab.Visible = false
  3052. ScreenGui.creditstab.Visible = false
  3053. ScreenGui.geartab.Visible = false
  3054. ScreenGui.hktab.Visible = false
  3055. ScreenGui.kittab.Visible = false
  3056. ScreenGui.othertab.Visible = false
  3057. ScreenGui.serverprotecttab.Visible = not ScreenGui.serverprotecttab.Visible
  3058. if ScreenGui.serverprotecttab.Visible == false then
  3059. ScreenGui.tabholder.Visible = false
  3060. end
  3061. if ScreenGui.serverprotecttab.Visible == true then
  3062. ScreenGui.tabholder.Visible = true
  3063. end
  3064. ScreenGui.spamtab.Visible = false
  3065. ScreenGui.supertab.Visible = false
  3066. ScreenGui.teleporttab.Visible = false
  3067. ScreenGui.whitelisttab.Visible = false
  3068. end)
  3069.  
  3070. ScreenGui.pgnum_3.Name = "pgnum"
  3071. ScreenGui.pgnum_3.Parent = ScreenGui.page3
  3072. ScreenGui.pgnum_3.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  3073. ScreenGui.pgnum_3.BackgroundTransparency = 1.000
  3074. ScreenGui.pgnum_3.BorderSizePixel = 0
  3075. ScreenGui.pgnum_3.Position = UDim2.new(0.320512801, 0, 0.866615057, 0)
  3076. ScreenGui.pgnum_3.Size = UDim2.new(0, 55, 0, 25)
  3077. ScreenGui.pgnum_3.Font = Enum.Font.Gotham
  3078. ScreenGui.pgnum_3.Text = "Page 3"
  3079. ScreenGui.pgnum_3.TextColor3 = Color3.fromRGB(255, 255, 255)
  3080. ScreenGui.pgnum_3.TextSize = 16.000
  3081. ScreenGui.pgnum_3.TextWrapped = true
  3082.  
  3083. ScreenGui.bg.Name = "bg"
  3084. ScreenGui.bg.Parent = ScreenGui.main
  3085. ScreenGui.bg.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  3086. ScreenGui.bg.BackgroundTransparency = 1.000
  3087. ScreenGui.bg.BorderSizePixel = 0
  3088. ScreenGui.bg.Position = UDim2.new(0, 0, 0.108771928, 0)
  3089. ScreenGui.bg.Size = UDim2.new(0, 156, 0, 254)
  3090. ScreenGui.bg.ZIndex = 0
  3091. ScreenGui.bg.Font = Enum.Font.SourceSans
  3092. ScreenGui.bg.Text = ""
  3093. ScreenGui.bg.TextColor3 = Color3.fromRGB(0, 0, 0)
  3094. ScreenGui.bg.TextSize = 14.000
  3095.  
  3096. ScreenGui.tabholder.Name = "tabholder"
  3097. ScreenGui.tabholder.Parent = ScreenGui.main
  3098. ScreenGui.tabholder.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  3099. ScreenGui.tabholder.BackgroundTransparency = 0.010
  3100. ScreenGui.tabholder.BorderColor3 = Color3.fromRGB(35, 35, 35)
  3101. ScreenGui.tabholder.BorderSizePixel = 0
  3102. ScreenGui.tabholder.Position = UDim2.new(1, 0, 0.108771935, 0)
  3103. ScreenGui.tabholder.Size = UDim2.new(0, 156, 0, 254)
  3104. ScreenGui.tabholder.Visible = false
  3105.  
  3106. ScreenGui.spamtab.Name = "spamtab"
  3107. ScreenGui.spamtab.Parent = ScreenGui.tabholder
  3108. ScreenGui.spamtab.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  3109. ScreenGui.spamtab.BackgroundTransparency = 1.000
  3110. ScreenGui.spamtab.Size = UDim2.new(0, 156, 0, 254)
  3111. ScreenGui.spamtab.Visible = false
  3112.  
  3113. ScreenGui.title_2.Name = "title"
  3114. ScreenGui.title_2.Parent = ScreenGui.spamtab
  3115. ScreenGui.title_2.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  3116. ScreenGui.title_2.BackgroundTransparency = 1.000
  3117. ScreenGui.title_2.BorderSizePixel = 0
  3118. ScreenGui.title_2.Position = UDim2.new(0.256000012, 0, 0, 5)
  3119. ScreenGui.title_2.Size = UDim2.new(0, 75, 0, 22)
  3120. ScreenGui.title_2.Font = Enum.Font.Gotham
  3121. ScreenGui.title_2.Text = "Spam"
  3122. ScreenGui.title_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  3123. ScreenGui.title_2.TextSize = 16.000
  3124. ScreenGui.title_2.TextWrapped = true
  3125.  
  3126. ScreenGui.line.Name = "line"
  3127. ScreenGui.line.Parent = ScreenGui.spamtab
  3128. ScreenGui.line.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  3129. ScreenGui.line.BorderSizePixel = 0
  3130. ScreenGui.line.Position = UDim2.new(0.0897435844, 0, 0.106299214, 0)
  3131. ScreenGui.line.Size = UDim2.new(0, 125, 0, 1)
  3132. ScreenGui.line.Font = Enum.Font.SourceSans
  3133. ScreenGui.line.Text = ""
  3134. ScreenGui.line.TextColor3 = Color3.fromRGB(0, 0, 0)
  3135. ScreenGui.line.TextSize = 14.000
  3136.  
  3137. ScreenGui.delay.Name = "delay"
  3138. ScreenGui.delay.Parent = ScreenGui.spamtab
  3139. ScreenGui.delay.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  3140. ScreenGui.delay.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3141. ScreenGui.delay.BorderSizePixel = 3
  3142. ScreenGui.delay.Position = UDim2.new(0.0897435918, 0, 0.26968503, 0)
  3143. ScreenGui.delay.Size = UDim2.new(0, 125, 0, 25)
  3144. ScreenGui.delay.Font = Enum.Font.Gotham
  3145. ScreenGui.delay.PlaceholderColor3 = Color3.fromRGB(255, 255, 255)
  3146. ScreenGui.delay.PlaceholderText = "Enter Wait time Here!"
  3147. ScreenGui.delay.Text = ""
  3148. ScreenGui.delay.TextColor3 = Color3.fromRGB(255, 255, 255)
  3149. ScreenGui.delay.TextScaled = true
  3150. ScreenGui.delay.TextSize = 14.000
  3151. ScreenGui.delay.TextWrapped = true
  3152.  
  3153. ScreenGui.waittitle.Name = "waittitle"
  3154. ScreenGui.waittitle.Parent = ScreenGui.spamtab
  3155. ScreenGui.waittitle.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  3156. ScreenGui.waittitle.BackgroundTransparency = 1.000
  3157. ScreenGui.waittitle.BorderSizePixel = 0
  3158. ScreenGui.waittitle.Position = UDim2.new(0.256000042, 0, 0.137795269, 5)
  3159. ScreenGui.waittitle.Size = UDim2.new(0, 75, 0, 20)
  3160. ScreenGui.waittitle.Font = Enum.Font.Gotham
  3161. ScreenGui.waittitle.Text = "Wait:"
  3162. ScreenGui.waittitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  3163. ScreenGui.waittitle.TextSize = 16.000
  3164. ScreenGui.waittitle.TextWrapped = true
  3165.  
  3166. ScreenGui.start.Name = "start"
  3167. ScreenGui.start.Parent = ScreenGui.spamtab
  3168. ScreenGui.start.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3169. ScreenGui.start.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3170. ScreenGui.start.BorderSizePixel = 3
  3171. ScreenGui.start.Position = UDim2.new(0.0897435993, 0, 0.75019753, 0)
  3172. ScreenGui.start.Size = UDim2.new(0, 50, 0, 25)
  3173. ScreenGui.start.Font = Enum.Font.Gotham
  3174. ScreenGui.start.Text = "Start"
  3175. ScreenGui.start.TextColor3 = Color3.fromRGB(255, 255, 255)
  3176. ScreenGui.start.TextSize = 18.000
  3177.  
  3178. local function spamloop()
  3179. while loopcheck == true do
  3180. wait(delayval)
  3181. game:GetService'Players':Chat((cmd2spam))
  3182. end
  3183. end
  3184.  
  3185. ScreenGui.start.MouseButton1Down:connect(function()
  3186. delayval = ScreenGui.delay.Text
  3187. cmd2spam = ScreenGui.cmdhere.Text
  3188. loopcheck = true
  3189. spamloop()
  3190. end)
  3191.  
  3192. ScreenGui.stop.Name = "stop"
  3193. ScreenGui.stop.Parent = ScreenGui.spamtab
  3194. ScreenGui.stop.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3195. ScreenGui.stop.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3196. ScreenGui.stop.BorderSizePixel = 3
  3197. ScreenGui.stop.Position = UDim2.new(0.570512831, 0, 0.75019747, 0)
  3198. ScreenGui.stop.Size = UDim2.new(0, 50, 0, 25)
  3199. ScreenGui.stop.Font = Enum.Font.Gotham
  3200. ScreenGui.stop.Text = "Stop"
  3201. ScreenGui.stop.TextColor3 = Color3.fromRGB(255, 255, 255)
  3202. ScreenGui.stop.TextSize = 18.000
  3203. ScreenGui.stop.MouseButton1Down:connect(function()
  3204. loopcheck = false
  3205. end)
  3206.  
  3207. ScreenGui.cmdhere.Name = "cmdhere"
  3208. ScreenGui.cmdhere.Parent = ScreenGui.spamtab
  3209. ScreenGui.cmdhere.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  3210. ScreenGui.cmdhere.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3211. ScreenGui.cmdhere.BorderSizePixel = 3
  3212. ScreenGui.cmdhere.Position = UDim2.new(0.0897435918, 0, 0.564960659, 0)
  3213. ScreenGui.cmdhere.Size = UDim2.new(0, 125, 0, 25)
  3214. ScreenGui.cmdhere.Font = Enum.Font.Gotham
  3215. ScreenGui.cmdhere.PlaceholderColor3 = Color3.fromRGB(255, 255, 255)
  3216. ScreenGui.cmdhere.PlaceholderText = "Enter Cmd Here!"
  3217. ScreenGui.cmdhere.Text = ""
  3218. ScreenGui.cmdhere.TextColor3 = Color3.fromRGB(255, 255, 255)
  3219. ScreenGui.cmdhere.TextScaled = true
  3220. ScreenGui.cmdhere.TextSize = 14.000
  3221. ScreenGui.cmdhere.TextWrapped = true
  3222. local beep = false
  3223. ScreenGui.cmdtitle.Name = "cmdtitle"
  3224. ScreenGui.cmdtitle.Parent = ScreenGui.spamtab
  3225. ScreenGui.cmdtitle.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  3226. ScreenGui.cmdtitle.BackgroundTransparency = 1.000
  3227. ScreenGui.cmdtitle.BorderSizePixel = 0
  3228. ScreenGui.cmdtitle.Position = UDim2.new(0.256000042, 0, 0.44094488, 5)
  3229. ScreenGui.cmdtitle.Size = UDim2.new(0, 75, 0, 20)
  3230. ScreenGui.cmdtitle.Font = Enum.Font.Gotham
  3231. ScreenGui.cmdtitle.Text = "Command:"
  3232. ScreenGui.cmdtitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  3233. ScreenGui.cmdtitle.TextScaled = true
  3234. ScreenGui.cmdtitle.TextSize = 16.000
  3235. ScreenGui.cmdtitle.TextWrapped = true
  3236.  
  3237. ScreenGui.supertab.Name = "supertab"
  3238. ScreenGui.supertab.Parent = ScreenGui.tabholder
  3239. ScreenGui.supertab.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  3240. ScreenGui.supertab.BackgroundTransparency = 1.000
  3241. ScreenGui.supertab.Size = UDim2.new(0, 156, 0, 254)
  3242. ScreenGui.supertab.Visible = false
  3243.  
  3244. ScreenGui.title_3.Name = "title"
  3245. ScreenGui.title_3.Parent = ScreenGui.supertab
  3246. ScreenGui.title_3.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  3247. ScreenGui.title_3.BackgroundTransparency = 1.000
  3248. ScreenGui.title_3.BorderSizePixel = 0
  3249. ScreenGui.title_3.Position = UDim2.new(0.256000012, 0, 0, 5)
  3250. ScreenGui.title_3.Size = UDim2.new(0, 75, 0, 22)
  3251. ScreenGui.title_3.Font = Enum.Font.Gotham
  3252. ScreenGui.title_3.Text = "Super"
  3253. ScreenGui.title_3.TextColor3 = Color3.fromRGB(255, 255, 255)
  3254. ScreenGui.title_3.TextSize = 16.000
  3255. ScreenGui.title_3.TextWrapped = true
  3256.  
  3257. ScreenGui.line_2.Name = "line"
  3258. ScreenGui.line_2.Parent = ScreenGui.supertab
  3259. ScreenGui.line_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  3260. ScreenGui.line_2.BorderSizePixel = 0
  3261. ScreenGui.line_2.Position = UDim2.new(0.0897435844, 0, 0.106299214, 0)
  3262. ScreenGui.line_2.Size = UDim2.new(0, 125, 0, 1)
  3263. ScreenGui.line_2.Font = Enum.Font.SourceSans
  3264. ScreenGui.line_2.Text = ""
  3265. ScreenGui.line_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  3266. ScreenGui.line_2.TextSize = 14.000
  3267.  
  3268. ScreenGui.supertitle.Name = "supertitle"
  3269. ScreenGui.supertitle.Parent = ScreenGui.supertab
  3270. ScreenGui.supertitle.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  3271. ScreenGui.supertitle.BackgroundTransparency = 1.000
  3272. ScreenGui.supertitle.BorderSizePixel = 0
  3273. ScreenGui.supertitle.Position = UDim2.new(0.249589786, 0, 0.228346467, 5)
  3274. ScreenGui.supertitle.Size = UDim2.new(0, 75, 0, 20)
  3275. ScreenGui.supertitle.Font = Enum.Font.Gotham
  3276. ScreenGui.supertitle.Text = "Super:"
  3277. ScreenGui.supertitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  3278. ScreenGui.supertitle.TextSize = 16.000
  3279. ScreenGui.supertitle.TextWrapped = true
  3280.  
  3281. ScreenGui.start_2.Name = "start"
  3282. ScreenGui.start_2.Parent = ScreenGui.supertab
  3283. ScreenGui.start_2.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3284. ScreenGui.start_2.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3285. ScreenGui.start_2.BorderSizePixel = 3
  3286. ScreenGui.start_2.Position = UDim2.new(0.0961538479, 0, 0.620276213, 0)
  3287. ScreenGui.start_2.Size = UDim2.new(0, 125, 0, 25)
  3288. ScreenGui.start_2.Font = Enum.Font.Gotham
  3289. ScreenGui.start_2.Text = "Execute"
  3290. ScreenGui.start_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  3291. ScreenGui.start_2.TextSize = 18.000
  3292. ScreenGui.start_2.MouseButton1Down:connect(function()
  3293. local cmdstr = ScreenGui.cmdhere_2.Text
  3294. for i = 1,250 do
  3295. game:GetService'Players':Chat((cmdstr))
  3296. end
  3297. end)
  3298.  
  3299. ScreenGui.cmdhere_2.Name = "cmdhere"
  3300. ScreenGui.cmdhere_2.Parent = ScreenGui.supertab
  3301. ScreenGui.cmdhere_2.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  3302. ScreenGui.cmdhere_2.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3303. ScreenGui.cmdhere_2.BorderSizePixel = 3
  3304. ScreenGui.cmdhere_2.Position = UDim2.new(0.0961538479, 0, 0.360236228, 0)
  3305. ScreenGui.cmdhere_2.Size = UDim2.new(0, 125, 0, 25)
  3306. ScreenGui.cmdhere_2.Font = Enum.Font.Gotham
  3307. ScreenGui.cmdhere_2.PlaceholderColor3 = Color3.fromRGB(255, 255, 255)
  3308. ScreenGui.cmdhere_2.PlaceholderText = "Enter Cmd Here!"
  3309. ScreenGui.cmdhere_2.Text = ""
  3310. ScreenGui.cmdhere_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  3311. ScreenGui.cmdhere_2.TextScaled = true
  3312. ScreenGui.cmdhere_2.TextSize = 14.000
  3313. ScreenGui.cmdhere_2.TextWrapped = true
  3314.  
  3315. ScreenGui.kittab.Name = "kittab"
  3316. ScreenGui.kittab.Parent = ScreenGui.tabholder
  3317. ScreenGui.kittab.Active = true
  3318. ScreenGui.kittab.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  3319. ScreenGui.kittab.BackgroundTransparency = 1.000
  3320. ScreenGui.kittab.BorderSizePixel = 0
  3321. ScreenGui.kittab.Size = UDim2.new(0, 156, 0, 254)
  3322. ScreenGui.kittab.Visible = false
  3323. ScreenGui.kittab.CanvasSize = UDim2.new(0, 0, 3, 0)
  3324. ScreenGui.kittab.ScrollBarThickness = 4
  3325. ScreenGui.kittab.VerticalScrollBarPosition = Enum.VerticalScrollBarPosition.Left
  3326.  
  3327. ScreenGui.title_4.Name = "title"
  3328. ScreenGui.title_4.Parent = ScreenGui.kittab
  3329. ScreenGui.title_4.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  3330. ScreenGui.title_4.BackgroundTransparency = 1.000
  3331. ScreenGui.title_4.BorderSizePixel = 0
  3332. ScreenGui.title_4.Position = UDim2.new(0.256000012, 0, 0, 5)
  3333. ScreenGui.title_4.Size = UDim2.new(0, 75, 0, 22)
  3334. ScreenGui.title_4.Font = Enum.Font.Gotham
  3335. ScreenGui.title_4.Text = "Kits"
  3336. ScreenGui.title_4.TextColor3 = Color3.fromRGB(255, 255, 255)
  3337. ScreenGui.title_4.TextSize = 16.000
  3338. ScreenGui.title_4.TextWrapped = true
  3339.  
  3340. ScreenGui.line_3.Name = "line"
  3341. ScreenGui.line_3.Parent = ScreenGui.kittab
  3342. ScreenGui.line_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  3343. ScreenGui.line_3.BorderSizePixel = 0
  3344. ScreenGui.line_3.Position = UDim2.new(0.0897435844, 0, 0.0354330689, 0)
  3345. ScreenGui.line_3.Size = UDim2.new(0, 125, 0, 1)
  3346. ScreenGui.line_3.Font = Enum.Font.SourceSans
  3347. ScreenGui.line_3.Text = ""
  3348. ScreenGui.line_3.TextColor3 = Color3.fromRGB(0, 0, 0)
  3349. ScreenGui.line_3.TextSize = 14.000
  3350.  
  3351. ScreenGui.god.Name = "god"
  3352. ScreenGui.god.Parent = ScreenGui.kittab
  3353. ScreenGui.god.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3354. ScreenGui.god.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3355. ScreenGui.god.BorderSizePixel = 3
  3356. ScreenGui.god.Position = UDim2.new(0.179487184, 0, 0.0511176884, 0)
  3357. ScreenGui.god.Size = UDim2.new(0, 100, 0, 25)
  3358. ScreenGui.god.Font = Enum.Font.Gotham
  3359. ScreenGui.god.Text = ":kit god"
  3360. ScreenGui.god.TextColor3 = Color3.fromRGB(255, 255, 255)
  3361. ScreenGui.god.TextSize = 18.000
  3362. ScreenGui.god.MouseButton1Down:connect(function()
  3363. game:GetService'Players':Chat((":kit god me"))
  3364. end)
  3365.  
  3366. ScreenGui.omni.Name = "omni"
  3367. ScreenGui.omni.Parent = ScreenGui.kittab
  3368. ScreenGui.omni.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3369. ScreenGui.omni.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3370. ScreenGui.omni.BorderSizePixel = 3
  3371. ScreenGui.omni.Position = UDim2.new(0.179487184, 0, 0.0996741205, 0)
  3372. ScreenGui.omni.Size = UDim2.new(0, 100, 0, 25)
  3373. ScreenGui.omni.Font = Enum.Font.Gotham
  3374. ScreenGui.omni.Text = ":kit omni"
  3375. ScreenGui.omni.TextColor3 = Color3.fromRGB(255, 255, 255)
  3376. ScreenGui.omni.TextSize = 18.000
  3377. ScreenGui.omni.MouseButton1Down:connect(function()
  3378. game:GetService'Players':Chat((":kit omni me"))
  3379. end)
  3380.  
  3381. ScreenGui.gun.Name = "gun"
  3382. ScreenGui.gun.Parent = ScreenGui.kittab
  3383. ScreenGui.gun.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3384. ScreenGui.gun.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3385. ScreenGui.gun.BorderSizePixel = 3
  3386. ScreenGui.gun.Position = UDim2.new(0.179487184, 0, 0.149542883, 0)
  3387. ScreenGui.gun.Size = UDim2.new(0, 100, 0, 25)
  3388. ScreenGui.gun.Font = Enum.Font.Gotham
  3389. ScreenGui.gun.Text = ":kit gun"
  3390. ScreenGui.gun.TextColor3 = Color3.fromRGB(255, 255, 255)
  3391. ScreenGui.gun.TextSize = 18.000
  3392. ScreenGui.gun.MouseButton1Down:connect(function()
  3393. game:GetService'Players':Chat((":kit gun me"))
  3394. end)
  3395.  
  3396. ScreenGui.dark.Name = "dark"
  3397. ScreenGui.dark.Parent = ScreenGui.kittab
  3398. ScreenGui.dark.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3399. ScreenGui.dark.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3400. ScreenGui.dark.BorderSizePixel = 3
  3401. ScreenGui.dark.Position = UDim2.new(0.179487184, 0, 0.196786985, 0)
  3402. ScreenGui.dark.Size = UDim2.new(0, 100, 0, 25)
  3403. ScreenGui.dark.Font = Enum.Font.Gotham
  3404. ScreenGui.dark.Text = ":kit dark"
  3405. ScreenGui.dark.TextColor3 = Color3.fromRGB(255, 255, 255)
  3406. ScreenGui.dark.TextSize = 18.000
  3407. ScreenGui.dark.MouseButton1Down:connect(function()
  3408. game:GetService'Players':Chat((":kit dark"))
  3409. end)
  3410.  
  3411. ScreenGui.dagger.Name = "dagger"
  3412. ScreenGui.dagger.Parent = ScreenGui.kittab
  3413. ScreenGui.dagger.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3414. ScreenGui.dagger.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3415. ScreenGui.dagger.BorderSizePixel = 3
  3416. ScreenGui.dagger.Position = UDim2.new(0.179487169, 0, 0.295212179, 0)
  3417. ScreenGui.dagger.Size = UDim2.new(0, 100, 0, 25)
  3418. ScreenGui.dagger.Font = Enum.Font.Gotham
  3419. ScreenGui.dagger.Text = ":kit dagger"
  3420. ScreenGui.dagger.TextColor3 = Color3.fromRGB(255, 255, 255)
  3421. ScreenGui.dagger.TextSize = 18.000
  3422. ScreenGui.dagger.MouseButton1Down:connect(function()
  3423. game:GetService'Players':Chat((":kit dagger me"))
  3424. end)
  3425.  
  3426. ScreenGui.bow.Name = "bow"
  3427. ScreenGui.bow.Parent = ScreenGui.kittab
  3428. ScreenGui.bow.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3429. ScreenGui.bow.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3430. ScreenGui.bow.BorderSizePixel = 3
  3431. ScreenGui.bow.Position = UDim2.new(0.179487169, 0, 0.345080942, 0)
  3432. ScreenGui.bow.Size = UDim2.new(0, 100, 0, 25)
  3433. ScreenGui.bow.Font = Enum.Font.Gotham
  3434. ScreenGui.bow.Text = ":kit bow"
  3435. ScreenGui.bow.TextColor3 = Color3.fromRGB(255, 255, 255)
  3436. ScreenGui.bow.TextSize = 18.000
  3437. ScreenGui.bow.MouseButton1Down:connect(function()
  3438. game:GetService'Players':Chat((":kit bow me"))
  3439. end)
  3440.  
  3441. ScreenGui.crossbow.Name = "crossbow"
  3442. ScreenGui.crossbow.Parent = ScreenGui.kittab
  3443. ScreenGui.crossbow.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3444. ScreenGui.crossbow.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3445. ScreenGui.crossbow.BorderSizePixel = 3
  3446. ScreenGui.crossbow.Position = UDim2.new(0.179487169, 0, 0.392325044, 0)
  3447. ScreenGui.crossbow.Size = UDim2.new(0, 100, 0, 25)
  3448. ScreenGui.crossbow.Font = Enum.Font.Gotham
  3449. ScreenGui.crossbow.Text = ":kit crossbow"
  3450. ScreenGui.crossbow.TextColor3 = Color3.fromRGB(255, 255, 255)
  3451. ScreenGui.crossbow.TextScaled = true
  3452. ScreenGui.crossbow.TextSize = 18.000
  3453. ScreenGui.crossbow.TextWrapped = true
  3454. ScreenGui.crossbow.MouseButton1Down:connect(function()
  3455. game:GetService'Players':Chat((":kit crossbow me"))
  3456. end)
  3457.  
  3458. ScreenGui.knife.Name = "knife"
  3459. ScreenGui.knife.Parent = ScreenGui.kittab
  3460. ScreenGui.knife.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3461. ScreenGui.knife.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3462. ScreenGui.knife.BorderSizePixel = 3
  3463. ScreenGui.knife.Position = UDim2.new(0.179487169, 0, 0.246655762, 0)
  3464. ScreenGui.knife.Size = UDim2.new(0, 100, 0, 25)
  3465. ScreenGui.knife.Font = Enum.Font.Gotham
  3466. ScreenGui.knife.Text = ":kit knife"
  3467. ScreenGui.knife.TextColor3 = Color3.fromRGB(255, 255, 255)
  3468. ScreenGui.knife.TextSize = 18.000
  3469. ScreenGui.knife.MouseButton1Down:connect(function()
  3470. game:GetService'Players':Chat((":kit knife me"))
  3471. end)
  3472.  
  3473. ScreenGui.ninja.Name = "ninja"
  3474. ScreenGui.ninja.Parent = ScreenGui.kittab
  3475. ScreenGui.ninja.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3476. ScreenGui.ninja.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3477. ScreenGui.ninja.BorderSizePixel = 3
  3478. ScreenGui.ninja.Position = UDim2.new(0.179487169, 0, 0.587863088, 0)
  3479. ScreenGui.ninja.Size = UDim2.new(0, 100, 0, 25)
  3480. ScreenGui.ninja.Font = Enum.Font.Gotham
  3481. ScreenGui.ninja.Text = ":kit ninja"
  3482. ScreenGui.ninja.TextColor3 = Color3.fromRGB(255, 255, 255)
  3483. ScreenGui.ninja.TextSize = 18.000
  3484. ScreenGui.ninja.MouseButton1Down:connect(function()
  3485. game:GetService'Players':Chat((":kit ninja me"))
  3486. end)
  3487.  
  3488. ScreenGui.scythe.Name = "scythe"
  3489. ScreenGui.scythe.Parent = ScreenGui.kittab
  3490. ScreenGui.scythe.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3491. ScreenGui.scythe.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3492. ScreenGui.scythe.BorderSizePixel = 3
  3493. ScreenGui.scythe.Position = UDim2.new(0.179487169, 0, 0.540619016, 0)
  3494. ScreenGui.scythe.Size = UDim2.new(0, 100, 0, 25)
  3495. ScreenGui.scythe.Font = Enum.Font.Gotham
  3496. ScreenGui.scythe.Text = ":kit scythe"
  3497. ScreenGui.scythe.TextColor3 = Color3.fromRGB(255, 255, 255)
  3498. ScreenGui.scythe.TextSize = 18.000
  3499. ScreenGui.scythe.MouseButton1Down:connect(function()
  3500. game:GetService'Players':Chat((":kit scythe me"))
  3501. end)
  3502.  
  3503. ScreenGui.sword.Name = "sword"
  3504. ScreenGui.sword.Parent = ScreenGui.kittab
  3505. ScreenGui.sword.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3506. ScreenGui.sword.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3507. ScreenGui.sword.BorderSizePixel = 3
  3508. ScreenGui.sword.Position = UDim2.new(0.179487169, 0, 0.490750223, 0)
  3509. ScreenGui.sword.Size = UDim2.new(0, 100, 0, 25)
  3510. ScreenGui.sword.Font = Enum.Font.Gotham
  3511. ScreenGui.sword.Text = ":kit sword"
  3512. ScreenGui.sword.TextColor3 = Color3.fromRGB(255, 255, 255)
  3513. ScreenGui.sword.TextSize = 18.000
  3514. ScreenGui.sword.MouseButton1Down:connect(function()
  3515. game:GetService'Players':Chat((":kit sword me"))
  3516. end)
  3517.  
  3518. ScreenGui.magic.Name = "magic"
  3519. ScreenGui.magic.Parent = ScreenGui.kittab
  3520. ScreenGui.magic.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3521. ScreenGui.magic.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3522. ScreenGui.magic.BorderSizePixel = 3
  3523. ScreenGui.magic.Position = UDim2.new(0.179487169, 0, 0.442193806, 0)
  3524. ScreenGui.magic.Size = UDim2.new(0, 100, 0, 25)
  3525. ScreenGui.magic.Font = Enum.Font.Gotham
  3526. ScreenGui.magic.Text = ":kit magic"
  3527. ScreenGui.magic.TextColor3 = Color3.fromRGB(255, 255, 255)
  3528. ScreenGui.magic.TextSize = 18.000
  3529. ScreenGui.magic.MouseButton1Down:connect(function()
  3530. game:GetService'Players':Chat((":kit magic me"))
  3531. end)
  3532.  
  3533. ScreenGui.flying.Name = "flying"
  3534. ScreenGui.flying.Parent = ScreenGui.kittab
  3535. ScreenGui.flying.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3536. ScreenGui.flying.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3537. ScreenGui.flying.BorderSizePixel = 3
  3538. ScreenGui.flying.Position = UDim2.new(0.179487169, 0, 0.737469375, 0)
  3539. ScreenGui.flying.Size = UDim2.new(0, 100, 0, 25)
  3540. ScreenGui.flying.Font = Enum.Font.Gotham
  3541. ScreenGui.flying.Text = ":kit flying"
  3542. ScreenGui.flying.TextColor3 = Color3.fromRGB(255, 255, 255)
  3543. ScreenGui.flying.TextSize = 18.000
  3544. ScreenGui.flying.MouseButton1Down:connect(function()
  3545. game:GetService'Players':Chat(("gear me 000000000000000000225921000"))
  3546. game:GetService'Players':Chat(("gear me 00000000000000000031314966"))
  3547. game:GetService'Players':Chat(("gear me 000000000000000000477910063"))
  3548. game:GetService'Players':Chat(("gear me 000000000000000000511930668"))
  3549. game:GetService'Players':Chat(("gear me 000000000000000000223785473"))
  3550. end)
  3551.  
  3552. ScreenGui.troll.Name = "troll"
  3553. ScreenGui.troll.Parent = ScreenGui.kittab
  3554. ScreenGui.troll.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3555. ScreenGui.troll.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3556. ScreenGui.troll.BorderSizePixel = 3
  3557. ScreenGui.troll.Position = UDim2.new(0.179487169, 0, 0.690225303, 0)
  3558. ScreenGui.troll.Size = UDim2.new(0, 100, 0, 25)
  3559. ScreenGui.troll.Font = Enum.Font.Gotham
  3560. ScreenGui.troll.Text = ":kit troll"
  3561. ScreenGui.troll.TextColor3 = Color3.fromRGB(255, 255, 255)
  3562. ScreenGui.troll.TextSize = 18.000
  3563. ScreenGui.troll.MouseButton1Down:connect(function()
  3564. game:GetService'Players':Chat(("gear me 00000000000000000082357101"))
  3565. game:GetService'Players':Chat(("gear me 00000000000000000094794847"))
  3566. game:GetService'Players':Chat(("gear me 000000000000000000243788010"))
  3567. game:GetService'Players':Chat(("gear me 000000000000000000268586231"))
  3568. end)
  3569.  
  3570. ScreenGui.potion.Name = "potion"
  3571. ScreenGui.potion.Parent = ScreenGui.kittab
  3572. ScreenGui.potion.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3573. ScreenGui.potion.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3574. ScreenGui.potion.BorderSizePixel = 3
  3575. ScreenGui.potion.Position = UDim2.new(0.179487169, 0, 0.640356481, 0)
  3576. ScreenGui.potion.Size = UDim2.new(0, 100, 0, 25)
  3577. ScreenGui.potion.Font = Enum.Font.Gotham
  3578. ScreenGui.potion.Text = ":kit potion"
  3579. ScreenGui.potion.TextColor3 = Color3.fromRGB(255, 255, 255)
  3580. ScreenGui.potion.TextSize = 18.000
  3581. ScreenGui.potion.MouseButton1Down:connect(function()
  3582. game:GetService'Players':Chat((":kit potion me"))
  3583. end)
  3584.  
  3585. ScreenGui.bomb.Name = "bomb"
  3586. ScreenGui.bomb.Parent = ScreenGui.kittab
  3587. ScreenGui.bomb.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3588. ScreenGui.bomb.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3589. ScreenGui.bomb.BorderSizePixel = 3
  3590. ScreenGui.bomb.Position = UDim2.new(0.179487169, 0, 0.788650453, 0)
  3591. ScreenGui.bomb.Size = UDim2.new(0, 100, 0, 25)
  3592. ScreenGui.bomb.Font = Enum.Font.Gotham
  3593. ScreenGui.bomb.Text = ":kit bomb"
  3594. ScreenGui.bomb.TextColor3 = Color3.fromRGB(255, 255, 255)
  3595. ScreenGui.bomb.TextSize = 18.000
  3596. ScreenGui.bomb.MouseButton1Down:connect(function()
  3597. game:GetService'Players':Chat(("gear me 00000000000000000011999247"))
  3598. game:GetService'Players':Chat(("gear me 00000000000000000012890798"))
  3599. game:GetService'Players':Chat(("gear me 000000000000000000243788010"))
  3600. game:GetService'Players':Chat(("gear me 00000000000000000088885539"))
  3601. end)
  3602.  
  3603. ScreenGui.heal.Name = "heal"
  3604. ScreenGui.heal.Parent = ScreenGui.kittab
  3605. ScreenGui.heal.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3606. ScreenGui.heal.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3607. ScreenGui.heal.BorderSizePixel = 3
  3608. ScreenGui.heal.Position = UDim2.new(0.179487169, 0, 0.839831531, 0)
  3609. ScreenGui.heal.Size = UDim2.new(0, 100, 0, 25)
  3610. ScreenGui.heal.Font = Enum.Font.Gotham
  3611. ScreenGui.heal.Text = ":kit heal"
  3612. ScreenGui.heal.TextColor3 = Color3.fromRGB(255, 255, 255)
  3613. ScreenGui.heal.TextSize = 18.000
  3614. ScreenGui.heal.MouseButton1Down:connect(function()
  3615. game:GetService'Players':Chat(("gear me 00000000000000000011419319"))
  3616. game:GetService'Players':Chat(("gear me 00000000000000000061916132"))
  3617. game:GetService'Players':Chat(("gear me 000000000000000000115377964"))
  3618. game:GetService'Players':Chat(("gear me 0000000000000000002316760298"))
  3619. game:GetService'Players':Chat(("gear me 0000000000000000002103276507"))
  3620. end)
  3621.  
  3622. ScreenGui.teleporttab.Name = "teleporttab"
  3623. ScreenGui.teleporttab.Parent = ScreenGui.tabholder
  3624. ScreenGui.teleporttab.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  3625. ScreenGui.teleporttab.BackgroundTransparency = 1.000
  3626. ScreenGui.teleporttab.Size = UDim2.new(0, 156, 0, 254)
  3627. ScreenGui.teleporttab.Visible = false
  3628.  
  3629. ScreenGui.title_5.Name = "title"
  3630. ScreenGui.title_5.Parent = ScreenGui.teleporttab
  3631. ScreenGui.title_5.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  3632. ScreenGui.title_5.BackgroundTransparency = 1.000
  3633. ScreenGui.title_5.BorderSizePixel = 0
  3634. ScreenGui.title_5.Position = UDim2.new(0.256000012, 0, 0, 5)
  3635. ScreenGui.title_5.Size = UDim2.new(0, 75, 0, 22)
  3636. ScreenGui.title_5.Font = Enum.Font.Gotham
  3637. ScreenGui.title_5.Text = "Teleport"
  3638. ScreenGui.title_5.TextColor3 = Color3.fromRGB(255, 255, 255)
  3639. ScreenGui.title_5.TextSize = 16.000
  3640. ScreenGui.title_5.TextWrapped = true
  3641.  
  3642. ScreenGui.line_4.Name = "line"
  3643. ScreenGui.line_4.Parent = ScreenGui.teleporttab
  3644. ScreenGui.line_4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  3645. ScreenGui.line_4.BorderSizePixel = 0
  3646. ScreenGui.line_4.Position = UDim2.new(0.0897435844, 0, 0.106299214, 0)
  3647. ScreenGui.line_4.Size = UDim2.new(0, 125, 0, 1)
  3648. ScreenGui.line_4.Font = Enum.Font.SourceSans
  3649. ScreenGui.line_4.Text = ""
  3650. ScreenGui.line_4.TextColor3 = Color3.fromRGB(0, 0, 0)
  3651. ScreenGui.line_4.TextSize = 14.000
  3652.  
  3653. ScreenGui.obby.Name = "obby"
  3654. ScreenGui.obby.Parent = ScreenGui.teleporttab
  3655. ScreenGui.obby.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3656. ScreenGui.obby.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3657. ScreenGui.obby.BorderSizePixel = 3
  3658. ScreenGui.obby.Position = UDim2.new(0.0897435918, 0, 0.206890434, 0)
  3659. ScreenGui.obby.Size = UDim2.new(0, 55, 0, 25)
  3660. ScreenGui.obby.Font = Enum.Font.Gotham
  3661. ScreenGui.obby.Text = ":obby"
  3662. ScreenGui.obby.TextColor3 = Color3.fromRGB(255, 255, 255)
  3663. ScreenGui.obby.TextSize = 18.000
  3664. ScreenGui.obby.MouseButton1Down:connect(function()
  3665. game:GetService'Players':Chat((":obby"))
  3666. end)
  3667.  
  3668. ScreenGui.house.Name = "house"
  3669. ScreenGui.house.Parent = ScreenGui.teleporttab
  3670. ScreenGui.house.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3671. ScreenGui.house.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3672. ScreenGui.house.BorderSizePixel = 3
  3673. ScreenGui.house.Position = UDim2.new(0.538461566, 0, 0.206890434, 0)
  3674. ScreenGui.house.Size = UDim2.new(0, 55, 0, 25)
  3675. ScreenGui.house.Font = Enum.Font.Gotham
  3676. ScreenGui.house.Text = ":house"
  3677. ScreenGui.house.TextColor3 = Color3.fromRGB(255, 255, 255)
  3678. ScreenGui.house.TextSize = 18.000
  3679. ScreenGui.house.MouseButton1Down:connect(function()
  3680. game:GetService'Players':Chat((":house"))
  3681. end)
  3682.  
  3683. ScreenGui.uhouse.Name = "uhouse"
  3684. ScreenGui.uhouse.Parent = ScreenGui.teleporttab
  3685. ScreenGui.uhouse.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3686. ScreenGui.uhouse.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3687. ScreenGui.uhouse.BorderSizePixel = 3
  3688. ScreenGui.uhouse.Position = UDim2.new(0.538461566, 0, 0.380118787, 0)
  3689. ScreenGui.uhouse.Size = UDim2.new(0, 55, 0, 25)
  3690. ScreenGui.uhouse.Font = Enum.Font.Gotham
  3691. ScreenGui.uhouse.Text = ":uhouse"
  3692. ScreenGui.uhouse.TextColor3 = Color3.fromRGB(255, 255, 255)
  3693. ScreenGui.uhouse.TextScaled = true
  3694. ScreenGui.uhouse.TextSize = 18.000
  3695. ScreenGui.uhouse.TextWrapped = true
  3696. ScreenGui.uhouse.MouseButton1Down:connect(function()
  3697. game:GetService'Players':Chat((":uhouse"))
  3698. end)
  3699.  
  3700. ScreenGui.blocks.Name = "blocks"
  3701. ScreenGui.blocks.Parent = ScreenGui.teleporttab
  3702. ScreenGui.blocks.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3703. ScreenGui.blocks.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3704. ScreenGui.blocks.BorderSizePixel = 3
  3705. ScreenGui.blocks.Position = UDim2.new(0.0961538479, 0, 0.380118787, 0)
  3706. ScreenGui.blocks.Size = UDim2.new(0, 55, 0, 25)
  3707. ScreenGui.blocks.Font = Enum.Font.Gotham
  3708. ScreenGui.blocks.Text = ":blocks"
  3709. ScreenGui.blocks.TextColor3 = Color3.fromRGB(255, 255, 255)
  3710. ScreenGui.blocks.TextScaled = true
  3711. ScreenGui.blocks.TextSize = 18.000
  3712. ScreenGui.blocks.TextWrapped = true
  3713. ScreenGui.blocks.MouseButton1Down:connect(function()
  3714. game:GetService'Players':Chat((":blocks"))
  3715. end)
  3716.  
  3717. ScreenGui.spawn2.Name = "spawn2"
  3718. ScreenGui.spawn2.Parent = ScreenGui.teleporttab
  3719. ScreenGui.spawn2.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3720. ScreenGui.spawn2.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3721. ScreenGui.spawn2.BorderSizePixel = 3
  3722. ScreenGui.spawn2.Position = UDim2.new(0.538461566, 0, 0.557284117, 0)
  3723. ScreenGui.spawn2.Size = UDim2.new(0, 55, 0, 25)
  3724. ScreenGui.spawn2.Font = Enum.Font.Gotham
  3725. ScreenGui.spawn2.Text = ":spawn2"
  3726. ScreenGui.spawn2.TextColor3 = Color3.fromRGB(255, 255, 255)
  3727. ScreenGui.spawn2.TextScaled = true
  3728. ScreenGui.spawn2.TextSize = 18.000
  3729. ScreenGui.spawn2.TextWrapped = true
  3730. ScreenGui.spawn2.MouseButton1Down:connect(function()
  3731. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-41, 3.70000005, -25.5899963))
  3732. end)
  3733.  
  3734. ScreenGui.pads.Name = "pads"
  3735. ScreenGui.pads.Parent = ScreenGui.teleporttab
  3736. ScreenGui.pads.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3737. ScreenGui.pads.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3738. ScreenGui.pads.BorderSizePixel = 3
  3739. ScreenGui.pads.Position = UDim2.new(0.538461506, 0, 0.758071482, 0)
  3740. ScreenGui.pads.Size = UDim2.new(0, 55, 0, 25)
  3741. ScreenGui.pads.Font = Enum.Font.Gotham
  3742. ScreenGui.pads.Text = ":pads"
  3743. ScreenGui.pads.TextColor3 = Color3.fromRGB(255, 255, 255)
  3744. ScreenGui.pads.TextSize = 18.000
  3745. ScreenGui.pads.MouseButton1Down:connect(function()
  3746. game:GetService'Players':Chat((":pads"))
  3747. end)
  3748.  
  3749. ScreenGui.spawn3.Name = "spawn3"
  3750. ScreenGui.spawn3.Parent = ScreenGui.teleporttab
  3751. ScreenGui.spawn3.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3752. ScreenGui.spawn3.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3753. ScreenGui.spawn3.BorderSizePixel = 3
  3754. ScreenGui.spawn3.Position = UDim2.new(0.0961538479, 0, 0.758071482, 0)
  3755. ScreenGui.spawn3.Size = UDim2.new(0, 55, 0, 25)
  3756. ScreenGui.spawn3.Font = Enum.Font.Gotham
  3757. ScreenGui.spawn3.Text = ":spawn3"
  3758. ScreenGui.spawn3.TextColor3 = Color3.fromRGB(255, 255, 255)
  3759. ScreenGui.spawn3.TextScaled = true
  3760. ScreenGui.spawn3.TextSize = 18.000
  3761. ScreenGui.spawn3.TextWrapped = true
  3762. ScreenGui.spawn3.MouseButton1Down:connect(function()
  3763. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-52.9998322, 3.70000005, -25.5902348))
  3764. end)
  3765.  
  3766. ScreenGui.spawn1.Name = "spawn1"
  3767. ScreenGui.spawn1.Parent = ScreenGui.teleporttab
  3768. ScreenGui.spawn1.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3769. ScreenGui.spawn1.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3770. ScreenGui.spawn1.BorderSizePixel = 3
  3771. ScreenGui.spawn1.Position = UDim2.new(0.0897435918, 0, 0.557284117, 0)
  3772. ScreenGui.spawn1.Size = UDim2.new(0, 55, 0, 25)
  3773. ScreenGui.spawn1.Font = Enum.Font.Gotham
  3774. ScreenGui.spawn1.Text = ":spawn1"
  3775. ScreenGui.spawn1.TextColor3 = Color3.fromRGB(255, 255, 255)
  3776. ScreenGui.spawn1.TextScaled = true
  3777. ScreenGui.spawn1.TextSize = 18.000
  3778. ScreenGui.spawn1.TextWrapped = true
  3779. ScreenGui.spawn1.MouseButton1Down:connect(function()
  3780. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-29, 3.70000005, -25.5900116))
  3781. end)
  3782.  
  3783. ScreenGui.antitab.Name = "antitab"
  3784. ScreenGui.antitab.Parent = ScreenGui.tabholder
  3785. ScreenGui.antitab.Active = true
  3786. ScreenGui.antitab.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  3787. ScreenGui.antitab.BackgroundTransparency = 1.000
  3788. ScreenGui.antitab.BorderSizePixel = 0
  3789. ScreenGui.antitab.Size = UDim2.new(0, 156, 0, 254)
  3790. ScreenGui.antitab.Visible = false
  3791. ScreenGui.antitab.CanvasSize = UDim2.new(0, 0, 3, 0)
  3792. ScreenGui.antitab.ScrollBarThickness = 4
  3793. ScreenGui.antitab.VerticalScrollBarPosition = Enum.VerticalScrollBarPosition.Left
  3794.  
  3795. ScreenGui.title_6.Name = "title"
  3796. ScreenGui.title_6.Parent = ScreenGui.antitab
  3797. ScreenGui.title_6.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  3798. ScreenGui.title_6.BackgroundTransparency = 1.000
  3799. ScreenGui.title_6.BorderSizePixel = 0
  3800. ScreenGui.title_6.Position = UDim2.new(0.256000012, 0, 0, 5)
  3801. ScreenGui.title_6.Size = UDim2.new(0, 75, 0, 22)
  3802. ScreenGui.title_6.Font = Enum.Font.Gotham
  3803. ScreenGui.title_6.Text = "Anti's"
  3804. ScreenGui.title_6.TextColor3 = Color3.fromRGB(255, 255, 255)
  3805. ScreenGui.title_6.TextSize = 16.000
  3806. ScreenGui.title_6.TextWrapped = true
  3807.  
  3808. ScreenGui.line_5.Name = "line"
  3809. ScreenGui.line_5.Parent = ScreenGui.antitab
  3810. ScreenGui.line_5.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  3811. ScreenGui.line_5.BorderSizePixel = 0
  3812. ScreenGui.line_5.Position = UDim2.new(0.0897435844, 0, 0.0354330689, 0)
  3813. ScreenGui.line_5.Size = UDim2.new(0, 125, 0, 1)
  3814. ScreenGui.line_5.Font = Enum.Font.SourceSans
  3815. ScreenGui.line_5.Text = ""
  3816. ScreenGui.line_5.TextColor3 = Color3.fromRGB(0, 0, 0)
  3817. ScreenGui.line_5.TextSize = 14.000
  3818.  
  3819. ScreenGui.kill.Name = "kill"
  3820. ScreenGui.kill.Parent = ScreenGui.antitab
  3821. ScreenGui.kill.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3822. ScreenGui.kill.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3823. ScreenGui.kill.BorderSizePixel = 3
  3824. ScreenGui.kill.Position = UDim2.new(0.0833333358, 0, 0.186161458, 0)
  3825. ScreenGui.kill.Size = UDim2.new(0, 55, 0, 25)
  3826. ScreenGui.kill.Font = Enum.Font.Gotham
  3827. ScreenGui.kill.Text = "antikill"
  3828. ScreenGui.kill.TextColor3 = Color3.fromRGB(255, 255, 255)
  3829. ScreenGui.kill.TextScaled = true
  3830. ScreenGui.kill.TextSize = 18.000
  3831. ScreenGui.kill.TextWrapped = true
  3832. ScreenGui.kill.MouseButton1Down:connect(function()
  3833. nokill = not nokill
  3834. if nokill == true then
  3835. ScreenGui.onofftext.Text = "Enabled:"
  3836. end
  3837. if nokill == false then
  3838. ScreenGui.onofftext.Text = "Disabled:"
  3839. end
  3840. end)
  3841.  
  3842. ScreenGui.onofftext.Name = "onofftext"
  3843. ScreenGui.onofftext.Parent = ScreenGui.kill
  3844. ScreenGui.onofftext.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  3845. ScreenGui.onofftext.BackgroundTransparency = 1.000
  3846. ScreenGui.onofftext.BorderSizePixel = 0
  3847. ScreenGui.onofftext.Position = UDim2.new(0.0166060925, 0, -1.04062998, 5)
  3848. ScreenGui.onofftext.Size = UDim2.new(0, 55, 0, 15)
  3849. ScreenGui.onofftext.Font = Enum.Font.Gotham
  3850. ScreenGui.onofftext.Text = "Enabled:"
  3851. ScreenGui.onofftext.TextColor3 = Color3.fromRGB(255, 255, 255)
  3852. ScreenGui.onofftext.TextScaled = true
  3853. ScreenGui.onofftext.TextSize = 16.000
  3854. ScreenGui.onofftext.TextWrapped = true
  3855.  
  3856. ScreenGui.punish.Name = "punish"
  3857. ScreenGui.punish.Parent = ScreenGui.antitab
  3858. ScreenGui.punish.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3859. ScreenGui.punish.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3860. ScreenGui.punish.BorderSizePixel = 3
  3861. ScreenGui.punish.Position = UDim2.new(0.544871807, 0, 0.186161458, 0)
  3862. ScreenGui.punish.Size = UDim2.new(0, 55, 0, 25)
  3863. ScreenGui.punish.Font = Enum.Font.Gotham
  3864. ScreenGui.punish.Text = "antipunish"
  3865. ScreenGui.punish.TextColor3 = Color3.fromRGB(255, 255, 255)
  3866. ScreenGui.punish.TextScaled = true
  3867. ScreenGui.punish.TextSize = 18.000
  3868. ScreenGui.punish.TextWrapped = true
  3869. ScreenGui.punish.MouseButton1Down:connect(function()
  3870. nopunish = not nopunish
  3871. if nopunish == true then
  3872. ScreenGui.onofftext_2.Text = "Enabled:"
  3873. end
  3874. if nopunish == false then
  3875. ScreenGui.onofftext_2.Text = "Disabled:"
  3876. end
  3877. end)
  3878.  
  3879. ScreenGui.onofftext_2.Name = "onofftext"
  3880. ScreenGui.onofftext_2.Parent = ScreenGui.punish
  3881. ScreenGui.onofftext_2.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  3882. ScreenGui.onofftext_2.BackgroundTransparency = 1.000
  3883. ScreenGui.onofftext_2.BorderSizePixel = 0
  3884. ScreenGui.onofftext_2.Position = UDim2.new(-0.00740325451, 0, -1.04062986, 5)
  3885. ScreenGui.onofftext_2.Size = UDim2.new(0, 55, 0, 15)
  3886. ScreenGui.onofftext_2.Font = Enum.Font.Gotham
  3887. ScreenGui.onofftext_2.Text = "Enabled:"
  3888. ScreenGui.onofftext_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  3889. ScreenGui.onofftext_2.TextScaled = true
  3890. ScreenGui.onofftext_2.TextSize = 16.000
  3891. ScreenGui.onofftext_2.TextWrapped = true
  3892.  
  3893. ScreenGui.on.Name = "on"
  3894. ScreenGui.on.Parent = ScreenGui.antitab
  3895. ScreenGui.on.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3896. ScreenGui.on.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3897. ScreenGui.on.BorderSizePixel = 3
  3898. ScreenGui.on.Position = UDim2.new(0.0829231068, 0, 0.0909586847, 0)
  3899. ScreenGui.on.Size = UDim2.new(0, 55, 0, 20)
  3900. ScreenGui.on.Font = Enum.Font.Gotham
  3901. ScreenGui.on.Text = "On"
  3902. ScreenGui.on.TextColor3 = Color3.fromRGB(255, 255, 255)
  3903. ScreenGui.on.TextSize = 18.000
  3904. local onoff = false
  3905. ScreenGui.on.MouseButton1Down:connect(function()
  3906. if onoff == false then
  3907. onoff = true
  3908. ScreenGui.onofftext_3.Text = "Loop On"
  3909. game:GetService'Players':Chat((":allanti"))
  3910. end
  3911. end)
  3912.  
  3913. ScreenGui.onofftext_3.Name = "onofftext"
  3914. ScreenGui.onofftext_3.Parent = ScreenGui.antitab
  3915. ScreenGui.onofftext_3.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  3916. ScreenGui.onofftext_3.BackgroundTransparency = 1.000
  3917. ScreenGui.onofftext_3.BorderSizePixel = 0
  3918. ScreenGui.onofftext_3.Position = UDim2.new(0.3109487, 0, 0.054330714, 5)
  3919. ScreenGui.onofftext_3.Size = UDim2.new(0, 55, 0, 15)
  3920. ScreenGui.onofftext_3.Font = Enum.Font.Gotham
  3921. ScreenGui.onofftext_3.Text = "Loop Off"
  3922. ScreenGui.onofftext_3.TextColor3 = Color3.fromRGB(255, 255, 255)
  3923. ScreenGui.onofftext_3.TextScaled = true
  3924. ScreenGui.onofftext_3.TextSize = 16.000
  3925. ScreenGui.onofftext_3.TextWrapped = true
  3926.  
  3927. ScreenGui.off.Name = "off"
  3928. ScreenGui.off.Parent = ScreenGui.antitab
  3929. ScreenGui.off.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3930. ScreenGui.off.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3931. ScreenGui.off.BorderSizePixel = 3
  3932. ScreenGui.off.Position = UDim2.new(0.538051307, 0, 0.0915618911, 0)
  3933. ScreenGui.off.Size = UDim2.new(0, 55, 0, 20)
  3934. ScreenGui.off.Font = Enum.Font.Gotham
  3935. ScreenGui.off.Text = "Off"
  3936. ScreenGui.off.TextColor3 = Color3.fromRGB(255, 255, 255)
  3937. ScreenGui.off.TextSize = 18.000
  3938. ScreenGui.off.MouseButton1Down:connect(function()
  3939. onoff = false
  3940. ScreenGui.onofftext_3.Text = "Loop Off"
  3941. game:GetService'Players':Chat((":unanti"))
  3942. end)
  3943.  
  3944. ScreenGui.jail.Name = "jail"
  3945. ScreenGui.jail.Parent = ScreenGui.antitab
  3946. ScreenGui.jail.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3947. ScreenGui.jail.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3948. ScreenGui.jail.BorderSizePixel = 3
  3949. ScreenGui.jail.Position = UDim2.new(0.551282108, 0, 0.260964602, 0)
  3950. ScreenGui.jail.Size = UDim2.new(0, 55, 0, 25)
  3951. ScreenGui.jail.Font = Enum.Font.Gotham
  3952. ScreenGui.jail.Text = "antijail"
  3953. ScreenGui.jail.TextColor3 = Color3.fromRGB(255, 255, 255)
  3954. ScreenGui.jail.TextScaled = true
  3955. ScreenGui.jail.TextSize = 18.000
  3956. ScreenGui.jail.TextWrapped = true
  3957. ScreenGui.jail.MouseButton1Down:connect(function()
  3958. nojail = not nojail
  3959. if nojail == true then
  3960. ScreenGui.onofftext_4.Text = "Enabled:"
  3961. end
  3962. if nojail == false then
  3963. ScreenGui.onofftext_4.Text = "Disabled:"
  3964. end
  3965. end)
  3966.  
  3967. ScreenGui.onofftext_4.Name = "onofftext"
  3968. ScreenGui.onofftext_4.Parent = ScreenGui.jail
  3969. ScreenGui.onofftext_4.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  3970. ScreenGui.onofftext_4.BackgroundTransparency = 1.000
  3971. ScreenGui.onofftext_4.BorderSizePixel = 0
  3972. ScreenGui.onofftext_4.Position = UDim2.new(-0.00740325451, 0, -1.04062986, 5)
  3973. ScreenGui.onofftext_4.Size = UDim2.new(0, 55, 0, 15)
  3974. ScreenGui.onofftext_4.Font = Enum.Font.Gotham
  3975. ScreenGui.onofftext_4.Text = "Enabled:"
  3976. ScreenGui.onofftext_4.TextColor3 = Color3.fromRGB(255, 255, 255)
  3977. ScreenGui.onofftext_4.TextScaled = true
  3978. ScreenGui.onofftext_4.TextSize = 16.000
  3979. ScreenGui.onofftext_4.TextWrapped = true
  3980.  
  3981. ScreenGui.heal_2.Name = "heal"
  3982. ScreenGui.heal_2.Parent = ScreenGui.antitab
  3983. ScreenGui.heal_2.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  3984. ScreenGui.heal_2.BorderColor3 = Color3.fromRGB(26, 26, 26)
  3985. ScreenGui.heal_2.BorderSizePixel = 3
  3986. ScreenGui.heal_2.Position = UDim2.new(0.0897435918, 0, 0.260964602, 0)
  3987. ScreenGui.heal_2.Size = UDim2.new(0, 55, 0, 25)
  3988. ScreenGui.heal_2.Font = Enum.Font.Gotham
  3989. ScreenGui.heal_2.Text = "autoheal"
  3990. ScreenGui.heal_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  3991. ScreenGui.heal_2.TextScaled = true
  3992. ScreenGui.heal_2.TextSize = 18.000
  3993. ScreenGui.heal_2.TextWrapped = true
  3994. ScreenGui.heal_2.MouseButton1Down:connect(function()
  3995. healauto = not healauto
  3996. if healauto == true then
  3997. ScreenGui.onofftext_5.Text = "Enabled:"
  3998. end
  3999. if healauto == false then
  4000. ScreenGui.onofftext_5.Text = "Disabled:"
  4001. end
  4002. end)
  4003.  
  4004. ScreenGui.onofftext_5.Name = "onofftext"
  4005. ScreenGui.onofftext_5.Parent = ScreenGui.heal_2
  4006. ScreenGui.onofftext_5.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  4007. ScreenGui.onofftext_5.BackgroundTransparency = 1.000
  4008. ScreenGui.onofftext_5.BorderSizePixel = 0
  4009. ScreenGui.onofftext_5.Position = UDim2.new(0.0166060925, 0, -1.04062998, 5)
  4010. ScreenGui.onofftext_5.Size = UDim2.new(0, 55, 0, 15)
  4011. ScreenGui.onofftext_5.Font = Enum.Font.Gotham
  4012. ScreenGui.onofftext_5.Text = "Enabled:"
  4013. ScreenGui.onofftext_5.TextColor3 = Color3.fromRGB(255, 255, 255)
  4014. ScreenGui.onofftext_5.TextScaled = true
  4015. ScreenGui.onofftext_5.TextSize = 16.000
  4016. ScreenGui.onofftext_5.TextWrapped = true
  4017.  
  4018. ScreenGui.dog.Name = "dog"
  4019. ScreenGui.dog.Parent = ScreenGui.antitab
  4020. ScreenGui.dog.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4021. ScreenGui.dog.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4022. ScreenGui.dog.BorderSizePixel = 3
  4023. ScreenGui.dog.Position = UDim2.new(0.551282108, 0, 0.341017097, 0)
  4024. ScreenGui.dog.Size = UDim2.new(0, 55, 0, 25)
  4025. ScreenGui.dog.Font = Enum.Font.Gotham
  4026. ScreenGui.dog.Text = "antidog"
  4027. ScreenGui.dog.TextColor3 = Color3.fromRGB(255, 255, 255)
  4028. ScreenGui.dog.TextScaled = true
  4029. ScreenGui.dog.TextSize = 18.000
  4030. ScreenGui.dog.TextWrapped = true
  4031. ScreenGui.dog.MouseButton1Down:connect(function()
  4032. nodog = not nodog
  4033. if nodog == true then
  4034. ScreenGui.onofftext_6.Text = "Enabled:"
  4035. end
  4036. if nodog == false then
  4037. ScreenGui.onofftext_6.Text = "Disabled:"
  4038. end
  4039. end)
  4040.  
  4041. ScreenGui.onofftext_6.Name = "onofftext"
  4042. ScreenGui.onofftext_6.Parent = ScreenGui.dog
  4043. ScreenGui.onofftext_6.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  4044. ScreenGui.onofftext_6.BackgroundTransparency = 1.000
  4045. ScreenGui.onofftext_6.BorderSizePixel = 0
  4046. ScreenGui.onofftext_6.Position = UDim2.new(-0.00740325451, 0, -1.04062986, 5)
  4047. ScreenGui.onofftext_6.Size = UDim2.new(0, 55, 0, 15)
  4048. ScreenGui.onofftext_6.Font = Enum.Font.Gotham
  4049. ScreenGui.onofftext_6.Text = "Enabled:"
  4050. ScreenGui.onofftext_6.TextColor3 = Color3.fromRGB(255, 255, 255)
  4051. ScreenGui.onofftext_6.TextScaled = true
  4052. ScreenGui.onofftext_6.TextSize = 16.000
  4053. ScreenGui.onofftext_6.TextWrapped = true
  4054.  
  4055. ScreenGui.music.Name = "music"
  4056. ScreenGui.music.Parent = ScreenGui.antitab
  4057. ScreenGui.music.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4058. ScreenGui.music.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4059. ScreenGui.music.BorderSizePixel = 3
  4060. ScreenGui.music.Position = UDim2.new(0.0897435918, 0, 0.341017097, 0)
  4061. ScreenGui.music.Size = UDim2.new(0, 55, 0, 25)
  4062. ScreenGui.music.Font = Enum.Font.Gotham
  4063. ScreenGui.music.Text = "antimusic"
  4064. ScreenGui.music.TextColor3 = Color3.fromRGB(255, 255, 255)
  4065. ScreenGui.music.TextScaled = true
  4066. ScreenGui.music.TextSize = 18.000
  4067. ScreenGui.music.TextWrapped = true
  4068. ScreenGui.music.MouseButton1Down:connect(function()
  4069. nomusic = not nomusic
  4070. if nomusic == true then
  4071. ScreenGui.onofftext_7.Text = "Enabled:"
  4072. end
  4073. if nomusic == false then
  4074. ScreenGui.onofftext_7.Text = "Disabled:"
  4075. end
  4076. end)
  4077.  
  4078. ScreenGui.onofftext_7.Name = "onofftext"
  4079. ScreenGui.onofftext_7.Parent = ScreenGui.music
  4080. ScreenGui.onofftext_7.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  4081. ScreenGui.onofftext_7.BackgroundTransparency = 1.000
  4082. ScreenGui.onofftext_7.BorderSizePixel = 0
  4083. ScreenGui.onofftext_7.Position = UDim2.new(0.0166060925, 0, -1.04062998, 5)
  4084. ScreenGui.onofftext_7.Size = UDim2.new(0, 55, 0, 15)
  4085. ScreenGui.onofftext_7.Font = Enum.Font.Gotham
  4086. ScreenGui.onofftext_7.Text = "Disabled:"
  4087. ScreenGui.onofftext_7.TextColor3 = Color3.fromRGB(255, 255, 255)
  4088. ScreenGui.onofftext_7.TextScaled = true
  4089. ScreenGui.onofftext_7.TextSize = 16.000
  4090. ScreenGui.onofftext_7.TextWrapped = true
  4091.  
  4092. ScreenGui.smoke.Name = "smoke"
  4093. ScreenGui.smoke.Parent = ScreenGui.antitab
  4094. ScreenGui.smoke.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4095. ScreenGui.smoke.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4096. ScreenGui.smoke.BorderSizePixel = 3
  4097. ScreenGui.smoke.Position = UDim2.new(0.551282108, 0, 0.417132586, 0)
  4098. ScreenGui.smoke.Size = UDim2.new(0, 55, 0, 25)
  4099. ScreenGui.smoke.Font = Enum.Font.Gotham
  4100. ScreenGui.smoke.Text = "antismoke"
  4101. ScreenGui.smoke.TextColor3 = Color3.fromRGB(255, 255, 255)
  4102. ScreenGui.smoke.TextScaled = true
  4103. ScreenGui.smoke.TextSize = 18.000
  4104. ScreenGui.smoke.TextWrapped = true
  4105. ScreenGui.smoke.MouseButton1Down:connect(function()
  4106. nosmoke = not nosmoke
  4107. if nosmoke == true then
  4108. ScreenGui.onofftext_8.Text = "Enabled:"
  4109. end
  4110. if nosmoke == false then
  4111. ScreenGui.onofftext_8.Text = "Disabled:"
  4112. end
  4113. end)
  4114.  
  4115. ScreenGui.onofftext_8.Name = "onofftext"
  4116. ScreenGui.onofftext_8.Parent = ScreenGui.smoke
  4117. ScreenGui.onofftext_8.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  4118. ScreenGui.onofftext_8.BackgroundTransparency = 1.000
  4119. ScreenGui.onofftext_8.BorderSizePixel = 0
  4120. ScreenGui.onofftext_8.Position = UDim2.new(-0.00740325451, 0, -1.04062986, 5)
  4121. ScreenGui.onofftext_8.Size = UDim2.new(0, 55, 0, 15)
  4122. ScreenGui.onofftext_8.Font = Enum.Font.Gotham
  4123. ScreenGui.onofftext_8.Text = "Enabled:"
  4124. ScreenGui.onofftext_8.TextColor3 = Color3.fromRGB(255, 255, 255)
  4125. ScreenGui.onofftext_8.TextScaled = true
  4126. ScreenGui.onofftext_8.TextSize = 16.000
  4127. ScreenGui.onofftext_8.TextWrapped = true
  4128.  
  4129. ScreenGui.sparkles.Name = "sparkles"
  4130. ScreenGui.sparkles.Parent = ScreenGui.antitab
  4131. ScreenGui.sparkles.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4132. ScreenGui.sparkles.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4133. ScreenGui.sparkles.BorderSizePixel = 3
  4134. ScreenGui.sparkles.Position = UDim2.new(0.0897435918, 0, 0.417132586, 0)
  4135. ScreenGui.sparkles.Size = UDim2.new(0, 55, 0, 25)
  4136. ScreenGui.sparkles.Font = Enum.Font.Gotham
  4137. ScreenGui.sparkles.Text = "antisparkles"
  4138. ScreenGui.sparkles.TextColor3 = Color3.fromRGB(255, 255, 255)
  4139. ScreenGui.sparkles.TextScaled = true
  4140. ScreenGui.sparkles.TextSize = 18.000
  4141. ScreenGui.sparkles.TextWrapped = true
  4142. ScreenGui.sparkles.MouseButton1Down:connect(function()
  4143. nosparkles = not nosparkles
  4144. if nosparkles == true then
  4145. ScreenGui.onofftext_9.Text = "Enabled:"
  4146. end
  4147. if nosparkles == false then
  4148. ScreenGui.onofftext_9.Text = "Disabled:"
  4149. end
  4150. end)
  4151.  
  4152. ScreenGui.onofftext_9.Name = "onofftext"
  4153. ScreenGui.onofftext_9.Parent = ScreenGui.sparkles
  4154. ScreenGui.onofftext_9.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  4155. ScreenGui.onofftext_9.BackgroundTransparency = 1.000
  4156. ScreenGui.onofftext_9.BorderSizePixel = 0
  4157. ScreenGui.onofftext_9.Position = UDim2.new(0.0166060925, 0, -1.04062998, 5)
  4158. ScreenGui.onofftext_9.Size = UDim2.new(0, 55, 0, 15)
  4159. ScreenGui.onofftext_9.Font = Enum.Font.Gotham
  4160. ScreenGui.onofftext_9.Text = "Disabled:"
  4161. ScreenGui.onofftext_9.TextColor3 = Color3.fromRGB(255, 255, 255)
  4162. ScreenGui.onofftext_9.TextScaled = true
  4163. ScreenGui.onofftext_9.TextSize = 16.000
  4164. ScreenGui.onofftext_9.TextWrapped = true
  4165.  
  4166. ScreenGui.speed.Name = "speed"
  4167. ScreenGui.speed.Parent = ScreenGui.antitab
  4168. ScreenGui.speed.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4169. ScreenGui.speed.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4170. ScreenGui.speed.BorderSizePixel = 3
  4171. ScreenGui.speed.Position = UDim2.new(0.551282108, 0, 0.489311069, 0)
  4172. ScreenGui.speed.Size = UDim2.new(0, 55, 0, 25)
  4173. ScreenGui.speed.Font = Enum.Font.Gotham
  4174. ScreenGui.speed.Text = "antispeed"
  4175. ScreenGui.speed.TextColor3 = Color3.fromRGB(255, 255, 255)
  4176. ScreenGui.speed.TextScaled = true
  4177. ScreenGui.speed.TextSize = 18.000
  4178. ScreenGui.speed.TextWrapped = true
  4179. ScreenGui.speed.MouseButton1Down:connect(function()
  4180. nospeed = not nospeed
  4181. if nospeed == true then
  4182. ScreenGui.onofftext_10.Text = "Enabled:"
  4183. end
  4184. if nospeed == false then
  4185. ScreenGui.onofftext_10.Text = "Disabled:"
  4186. end
  4187. end)
  4188.  
  4189. ScreenGui.onofftext_10.Name = "onofftext"
  4190. ScreenGui.onofftext_10.Parent = ScreenGui.speed
  4191. ScreenGui.onofftext_10.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  4192. ScreenGui.onofftext_10.BackgroundTransparency = 1.000
  4193. ScreenGui.onofftext_10.BorderSizePixel = 0
  4194. ScreenGui.onofftext_10.Position = UDim2.new(-0.00740325451, 0, -1.04062986, 5)
  4195. ScreenGui.onofftext_10.Size = UDim2.new(0, 55, 0, 15)
  4196. ScreenGui.onofftext_10.Font = Enum.Font.Gotham
  4197. ScreenGui.onofftext_10.Text = "Disabled:"
  4198. ScreenGui.onofftext_10.TextColor3 = Color3.fromRGB(255, 255, 255)
  4199. ScreenGui.onofftext_10.TextScaled = true
  4200. ScreenGui.onofftext_10.TextSize = 16.000
  4201. ScreenGui.onofftext_10.TextWrapped = true
  4202.  
  4203. ScreenGui.explode.Name = "explode"
  4204. ScreenGui.explode.Parent = ScreenGui.antitab
  4205. ScreenGui.explode.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4206. ScreenGui.explode.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4207. ScreenGui.explode.BorderSizePixel = 3
  4208. ScreenGui.explode.Position = UDim2.new(0.0897435918, 0, 0.489311069, 0)
  4209. ScreenGui.explode.Size = UDim2.new(0, 55, 0, 25)
  4210. ScreenGui.explode.Font = Enum.Font.Gotham
  4211. ScreenGui.explode.Text = "antiexplode"
  4212. ScreenGui.explode.TextColor3 = Color3.fromRGB(255, 255, 255)
  4213. ScreenGui.explode.TextScaled = true
  4214. ScreenGui.explode.TextSize = 18.000
  4215. ScreenGui.explode.TextWrapped = true
  4216. ScreenGui.explode.MouseButton1Down:connect(function()
  4217. noexp = not noexp
  4218. if noexp == true then
  4219. ScreenGui.onofftext_11.Text = "Enabled:"
  4220. end
  4221. if noexp == false then
  4222. ScreenGui.onofftext_11.Text = "Disabled:"
  4223. end
  4224. end)
  4225.  
  4226. ScreenGui.onofftext_11.Name = "onofftext"
  4227. ScreenGui.onofftext_11.Parent = ScreenGui.explode
  4228. ScreenGui.onofftext_11.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  4229. ScreenGui.onofftext_11.BackgroundTransparency = 1.000
  4230. ScreenGui.onofftext_11.BorderSizePixel = 0
  4231. ScreenGui.onofftext_11.Position = UDim2.new(0.0166060925, 0, -1.04062998, 5)
  4232. ScreenGui.onofftext_11.Size = UDim2.new(0, 55, 0, 15)
  4233. ScreenGui.onofftext_11.Font = Enum.Font.Gotham
  4234. ScreenGui.onofftext_11.Text = "Enabled:"
  4235. ScreenGui.onofftext_11.TextColor3 = Color3.fromRGB(255, 255, 255)
  4236. ScreenGui.onofftext_11.TextScaled = true
  4237. ScreenGui.onofftext_11.TextSize = 16.000
  4238. ScreenGui.onofftext_11.TextWrapped = true
  4239.  
  4240. ScreenGui.swag.Name = "swag"
  4241. ScreenGui.swag.Parent = ScreenGui.antitab
  4242. ScreenGui.swag.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4243. ScreenGui.swag.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4244. ScreenGui.swag.BorderSizePixel = 3
  4245. ScreenGui.swag.Position = UDim2.new(0.551282108, 0, 0.565426588, 0)
  4246. ScreenGui.swag.Size = UDim2.new(0, 55, 0, 25)
  4247. ScreenGui.swag.Font = Enum.Font.Gotham
  4248. ScreenGui.swag.Text = "antiswag"
  4249. ScreenGui.swag.TextColor3 = Color3.fromRGB(255, 255, 255)
  4250. ScreenGui.swag.TextScaled = true
  4251. ScreenGui.swag.TextSize = 18.000
  4252. ScreenGui.swag.TextWrapped = true
  4253. ScreenGui.swag.MouseButton1Down:connect(function()
  4254. noswag = not noswag
  4255. if noswag == true then
  4256. ScreenGui.onofftext_12.Text = "Enabled:"
  4257. end
  4258. if noswag == false then
  4259. ScreenGui.onofftext_12.Text = "Disabled:"
  4260. end
  4261. end)
  4262.  
  4263. ScreenGui.onofftext_12.Name = "onofftext"
  4264. ScreenGui.onofftext_12.Parent = ScreenGui.swag
  4265. ScreenGui.onofftext_12.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  4266. ScreenGui.onofftext_12.BackgroundTransparency = 1.000
  4267. ScreenGui.onofftext_12.BorderSizePixel = 0
  4268. ScreenGui.onofftext_12.Position = UDim2.new(-0.00740325451, 0, -1.04062986, 5)
  4269. ScreenGui.onofftext_12.Size = UDim2.new(0, 55, 0, 15)
  4270. ScreenGui.onofftext_12.Font = Enum.Font.Gotham
  4271. ScreenGui.onofftext_12.Text = "Enabled:"
  4272. ScreenGui.onofftext_12.TextColor3 = Color3.fromRGB(255, 255, 255)
  4273. ScreenGui.onofftext_12.TextScaled = true
  4274. ScreenGui.onofftext_12.TextSize = 16.000
  4275. ScreenGui.onofftext_12.TextWrapped = true
  4276.  
  4277. ScreenGui.fire.Name = "fire"
  4278. ScreenGui.fire.Parent = ScreenGui.antitab
  4279. ScreenGui.fire.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4280. ScreenGui.fire.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4281. ScreenGui.fire.BorderSizePixel = 3
  4282. ScreenGui.fire.Position = UDim2.new(0.0897435918, 0, 0.565426588, 0)
  4283. ScreenGui.fire.Size = UDim2.new(0, 55, 0, 25)
  4284. ScreenGui.fire.Font = Enum.Font.Gotham
  4285. ScreenGui.fire.Text = "antifire"
  4286. ScreenGui.fire.TextColor3 = Color3.fromRGB(255, 255, 255)
  4287. ScreenGui.fire.TextScaled = true
  4288. ScreenGui.fire.TextSize = 18.000
  4289. ScreenGui.fire.TextWrapped = true
  4290. ScreenGui.fire.MouseButton1Down:connect(function()
  4291. nofire = not nofire
  4292. if nofire == true then
  4293. ScreenGui.onofftext_13.Text = "Enabled:"
  4294. end
  4295. if nofire == false then
  4296. ScreenGui.onofftext_13.Text = "Disabled:"
  4297. end
  4298. end)
  4299.  
  4300. ScreenGui.onofftext_13.Name = "onofftext"
  4301. ScreenGui.onofftext_13.Parent = ScreenGui.fire
  4302. ScreenGui.onofftext_13.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  4303. ScreenGui.onofftext_13.BackgroundTransparency = 1.000
  4304. ScreenGui.onofftext_13.BorderSizePixel = 0
  4305. ScreenGui.onofftext_13.Position = UDim2.new(0.0166060925, 0, -1.04062998, 5)
  4306. ScreenGui.onofftext_13.Size = UDim2.new(0, 55, 0, 15)
  4307. ScreenGui.onofftext_13.Font = Enum.Font.Gotham
  4308. ScreenGui.onofftext_13.Text = "Enabled:"
  4309. ScreenGui.onofftext_13.TextColor3 = Color3.fromRGB(255, 255, 255)
  4310. ScreenGui.onofftext_13.TextScaled = true
  4311. ScreenGui.onofftext_13.TextSize = 16.000
  4312. ScreenGui.onofftext_13.TextWrapped = true
  4313.  
  4314. ScreenGui.skydive.Name = "skydive"
  4315. ScreenGui.skydive.Parent = ScreenGui.antitab
  4316. ScreenGui.skydive.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4317. ScreenGui.skydive.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4318. ScreenGui.skydive.BorderSizePixel = 3
  4319. ScreenGui.skydive.Position = UDim2.new(0.551282108, 0, 0.638917387, 0)
  4320. ScreenGui.skydive.Size = UDim2.new(0, 55, 0, 25)
  4321. ScreenGui.skydive.Font = Enum.Font.Gotham
  4322. ScreenGui.skydive.Text = "antiskydive"
  4323. ScreenGui.skydive.TextColor3 = Color3.fromRGB(255, 255, 255)
  4324. ScreenGui.skydive.TextScaled = true
  4325. ScreenGui.skydive.TextSize = 18.000
  4326. ScreenGui.skydive.TextWrapped = true
  4327. ScreenGui.skydive.MouseButton1Down:connect(function()
  4328. noskydive = not noskydive
  4329. if noskydive == true then
  4330. ScreenGui.onofftext_14.Text = "Enabled:"
  4331. end
  4332. if noskydive == false then
  4333. ScreenGui.onofftext_14.Text = "Disabled:"
  4334. end
  4335. end)
  4336.  
  4337. ScreenGui.onofftext_14.Name = "onofftext"
  4338. ScreenGui.onofftext_14.Parent = ScreenGui.skydive
  4339. ScreenGui.onofftext_14.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  4340. ScreenGui.onofftext_14.BackgroundTransparency = 1.000
  4341. ScreenGui.onofftext_14.BorderSizePixel = 0
  4342. ScreenGui.onofftext_14.Position = UDim2.new(-0.00740325451, 0, -1.04062986, 5)
  4343. ScreenGui.onofftext_14.Size = UDim2.new(0, 55, 0, 15)
  4344. ScreenGui.onofftext_14.Font = Enum.Font.Gotham
  4345. ScreenGui.onofftext_14.Text = "Enabled:"
  4346. ScreenGui.onofftext_14.TextColor3 = Color3.fromRGB(255, 255, 255)
  4347. ScreenGui.onofftext_14.TextScaled = true
  4348. ScreenGui.onofftext_14.TextSize = 16.000
  4349. ScreenGui.onofftext_14.TextWrapped = true
  4350.  
  4351. ScreenGui.blind.Name = "blind"
  4352. ScreenGui.blind.Parent = ScreenGui.antitab
  4353. ScreenGui.blind.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4354. ScreenGui.blind.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4355. ScreenGui.blind.BorderSizePixel = 3
  4356. ScreenGui.blind.Position = UDim2.new(0.0897435918, 0, 0.638917387, 0)
  4357. ScreenGui.blind.Size = UDim2.new(0, 55, 0, 25)
  4358. ScreenGui.blind.Font = Enum.Font.Gotham
  4359. ScreenGui.blind.Text = "antiblind"
  4360. ScreenGui.blind.TextColor3 = Color3.fromRGB(255, 255, 255)
  4361. ScreenGui.blind.TextScaled = true
  4362. ScreenGui.blind.TextSize = 18.000
  4363. ScreenGui.blind.TextWrapped = true
  4364. ScreenGui.blind.MouseButton1Down:connect(function()
  4365. noblind = not noblind
  4366. if noblind == true then
  4367. ScreenGui.onofftext_15.Text = "Enabled:"
  4368. end
  4369. if noblind == false then
  4370. ScreenGui.onofftext_15.Text = "Disabled:"
  4371. end
  4372. end)
  4373.  
  4374. ScreenGui.onofftext_15.Name = "onofftext"
  4375. ScreenGui.onofftext_15.Parent = ScreenGui.blind
  4376. ScreenGui.onofftext_15.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  4377. ScreenGui.onofftext_15.BackgroundTransparency = 1.000
  4378. ScreenGui.onofftext_15.BorderSizePixel = 0
  4379. ScreenGui.onofftext_15.Position = UDim2.new(0.0166060925, 0, -1.04062998, 5)
  4380. ScreenGui.onofftext_15.Size = UDim2.new(0, 55, 0, 15)
  4381. ScreenGui.onofftext_15.Font = Enum.Font.Gotham
  4382. ScreenGui.onofftext_15.Text = "Enabled:"
  4383. ScreenGui.onofftext_15.TextColor3 = Color3.fromRGB(255, 255, 255)
  4384. ScreenGui.onofftext_15.TextScaled = true
  4385. ScreenGui.onofftext_15.TextSize = 16.000
  4386. ScreenGui.onofftext_15.TextWrapped = true
  4387.  
  4388. ScreenGui.ice.Name = "ice"
  4389. ScreenGui.ice.Parent = ScreenGui.antitab
  4390. ScreenGui.ice.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4391. ScreenGui.ice.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4392. ScreenGui.ice.BorderSizePixel = 3
  4393. ScreenGui.ice.Position = UDim2.new(0.551282108, 0, 0.709783554, 0)
  4394. ScreenGui.ice.Size = UDim2.new(0, 55, 0, 25)
  4395. ScreenGui.ice.Font = Enum.Font.Gotham
  4396. ScreenGui.ice.Text = "antifreeze"
  4397. ScreenGui.ice.TextColor3 = Color3.fromRGB(255, 255, 255)
  4398. ScreenGui.ice.TextScaled = true
  4399. ScreenGui.ice.TextSize = 18.000
  4400. ScreenGui.ice.TextWrapped = true
  4401. ScreenGui.ice.MouseButton1Down:connect(function()
  4402. noice = not noice
  4403. if noice == true then
  4404. ScreenGui.onofftext_16.Text = "Enabled:"
  4405. end
  4406. if noice == false then
  4407. ScreenGui.onofftext_16.Text = "Disabled:"
  4408. end
  4409. end)
  4410.  
  4411. ScreenGui.onofftext_16.Name = "onofftext"
  4412. ScreenGui.onofftext_16.Parent = ScreenGui.ice
  4413. ScreenGui.onofftext_16.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  4414. ScreenGui.onofftext_16.BackgroundTransparency = 1.000
  4415. ScreenGui.onofftext_16.BorderSizePixel = 0
  4416. ScreenGui.onofftext_16.Position = UDim2.new(-0.00740325451, 0, -1.04062986, 5)
  4417. ScreenGui.onofftext_16.Size = UDim2.new(0, 55, 0, 15)
  4418. ScreenGui.onofftext_16.Font = Enum.Font.Gotham
  4419. ScreenGui.onofftext_16.Text = "Enabled:"
  4420. ScreenGui.onofftext_16.TextColor3 = Color3.fromRGB(255, 255, 255)
  4421. ScreenGui.onofftext_16.TextScaled = true
  4422. ScreenGui.onofftext_16.TextSize = 16.000
  4423. ScreenGui.onofftext_16.TextWrapped = true
  4424.  
  4425. ScreenGui.crash.Name = "crash"
  4426. ScreenGui.crash.Parent = ScreenGui.antitab
  4427. ScreenGui.crash.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4428. ScreenGui.crash.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4429. ScreenGui.crash.BorderSizePixel = 3
  4430. ScreenGui.crash.Position = UDim2.new(0.0897435918, 0, 0.709783554, 0)
  4431. ScreenGui.crash.Size = UDim2.new(0, 55, 0, 25)
  4432. ScreenGui.crash.Font = Enum.Font.Gotham
  4433. ScreenGui.crash.Text = "anticrash"
  4434. ScreenGui.crash.TextColor3 = Color3.fromRGB(255, 255, 255)
  4435. ScreenGui.crash.TextScaled = true
  4436. ScreenGui.crash.TextSize = 18.000
  4437. ScreenGui.crash.TextWrapped = true
  4438. ScreenGui.crash.MouseButton1Down:connect(function()
  4439. nocrash = not nocrash
  4440. if nocrash == true then
  4441. ScreenGui.onofftext_17.Text = "Enabled:"
  4442. end
  4443. if nocrash == false then
  4444. ScreenGui.onofftext_17.Text = "Disabled:"
  4445. end
  4446. end)
  4447.  
  4448. ScreenGui.onofftext_17.Name = "onofftext"
  4449. ScreenGui.onofftext_17.Parent = ScreenGui.crash
  4450. ScreenGui.onofftext_17.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  4451. ScreenGui.onofftext_17.BackgroundTransparency = 1.000
  4452. ScreenGui.onofftext_17.BorderSizePixel = 0
  4453. ScreenGui.onofftext_17.Position = UDim2.new(0.0166060925, 0, -1.04062998, 5)
  4454. ScreenGui.onofftext_17.Size = UDim2.new(0, 55, 0, 15)
  4455. ScreenGui.onofftext_17.Font = Enum.Font.Gotham
  4456. ScreenGui.onofftext_17.Text = "Enabled:"
  4457. ScreenGui.onofftext_17.TextColor3 = Color3.fromRGB(255, 255, 255)
  4458. ScreenGui.onofftext_17.TextScaled = true
  4459. ScreenGui.onofftext_17.TextSize = 16.000
  4460. ScreenGui.onofftext_17.TextWrapped = true
  4461.  
  4462. ScreenGui.ff.Name = "ff"
  4463. ScreenGui.ff.Parent = ScreenGui.antitab
  4464. ScreenGui.ff.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4465. ScreenGui.ff.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4466. ScreenGui.ff.BorderSizePixel = 3
  4467. ScreenGui.ff.Position = UDim2.new(0.551282108, 0, 0.784586728, 0)
  4468. ScreenGui.ff.Size = UDim2.new(0, 55, 0, 25)
  4469. ScreenGui.ff.Font = Enum.Font.Gotham
  4470. ScreenGui.ff.Text = "antiffeffect"
  4471. ScreenGui.ff.TextColor3 = Color3.fromRGB(255, 255, 255)
  4472. ScreenGui.ff.TextScaled = true
  4473. ScreenGui.ff.TextSize = 18.000
  4474. ScreenGui.ff.TextWrapped = true
  4475. ScreenGui.ff.MouseButton1Down:connect(function()
  4476. noff = not noff
  4477. if noff == true then
  4478. ScreenGui.onofftext_18.Text = "Enabled:"
  4479. end
  4480. if noff == false then
  4481. ScreenGui.onofftext_18.Text = "Disabled:"
  4482. end
  4483. end)
  4484.  
  4485. ScreenGui.onofftext_18.Name = "onofftext"
  4486. ScreenGui.onofftext_18.Parent = ScreenGui.ff
  4487. ScreenGui.onofftext_18.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  4488. ScreenGui.onofftext_18.BackgroundTransparency = 1.000
  4489. ScreenGui.onofftext_18.BorderSizePixel = 0
  4490. ScreenGui.onofftext_18.Position = UDim2.new(-0.00740325451, 0, -1.04062986, 5)
  4491. ScreenGui.onofftext_18.Size = UDim2.new(0, 55, 0, 15)
  4492. ScreenGui.onofftext_18.Font = Enum.Font.Gotham
  4493. ScreenGui.onofftext_18.Text = "Disabled:"
  4494. ScreenGui.onofftext_18.TextColor3 = Color3.fromRGB(255, 255, 255)
  4495. ScreenGui.onofftext_18.TextScaled = true
  4496. ScreenGui.onofftext_18.TextSize = 16.000
  4497. ScreenGui.onofftext_18.TextWrapped = true
  4498.  
  4499. ScreenGui.seizure.Name = "seizure"
  4500. ScreenGui.seizure.Parent = ScreenGui.antitab
  4501. ScreenGui.seizure.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4502. ScreenGui.seizure.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4503. ScreenGui.seizure.BorderSizePixel = 3
  4504. ScreenGui.seizure.Position = UDim2.new(0.0897435918, 0, 0.784586728, 0)
  4505. ScreenGui.seizure.Size = UDim2.new(0, 55, 0, 25)
  4506. ScreenGui.seizure.Font = Enum.Font.Gotham
  4507. ScreenGui.seizure.Text = "antiseizure"
  4508. ScreenGui.seizure.TextColor3 = Color3.fromRGB(255, 255, 255)
  4509. ScreenGui.seizure.TextScaled = true
  4510. ScreenGui.seizure.TextSize = 18.000
  4511. ScreenGui.seizure.TextWrapped = true
  4512. ScreenGui.seizure.MouseButton1Down:connect(function()
  4513. noseizure = not noseizure
  4514. if noseizure == true then
  4515. ScreenGui.onofftext_19.Text = "Enabled:"
  4516. end
  4517. if noseizure == false then
  4518. ScreenGui.onofftext_19.Text = "Disabled:"
  4519. end
  4520. end)
  4521.  
  4522. ScreenGui.onofftext_19.Name = "onofftext"
  4523. ScreenGui.onofftext_19.Parent = ScreenGui.seizure
  4524. ScreenGui.onofftext_19.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  4525. ScreenGui.onofftext_19.BackgroundTransparency = 1.000
  4526. ScreenGui.onofftext_19.BorderSizePixel = 0
  4527. ScreenGui.onofftext_19.Position = UDim2.new(0.0166060925, 0, -1.04062998, 5)
  4528. ScreenGui.onofftext_19.Size = UDim2.new(0, 55, 0, 15)
  4529. ScreenGui.onofftext_19.Font = Enum.Font.Gotham
  4530. ScreenGui.onofftext_19.Text = "Enabled:"
  4531. ScreenGui.onofftext_19.TextColor3 = Color3.fromRGB(255, 255, 255)
  4532. ScreenGui.onofftext_19.TextScaled = true
  4533. ScreenGui.onofftext_19.TextSize = 16.000
  4534. ScreenGui.onofftext_19.TextWrapped = true
  4535.  
  4536. ScreenGui.light.Name = "light"
  4537. ScreenGui.light.Parent = ScreenGui.antitab
  4538. ScreenGui.light.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4539. ScreenGui.light.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4540. ScreenGui.light.BorderSizePixel = 3
  4541. ScreenGui.light.Position = UDim2.new(0.551282108, 0, 0.856765211, 0)
  4542. ScreenGui.light.Size = UDim2.new(0, 55, 0, 25)
  4543. ScreenGui.light.Font = Enum.Font.Gotham
  4544. ScreenGui.light.Text = "antilight"
  4545. ScreenGui.light.TextColor3 = Color3.fromRGB(255, 255, 255)
  4546. ScreenGui.light.TextScaled = true
  4547. ScreenGui.light.TextSize = 18.000
  4548. ScreenGui.light.TextWrapped = true
  4549. ScreenGui.light.MouseButton1Down:connect(function()
  4550. ilight = not ilight
  4551. if ilight == true then
  4552. ScreenGui.onofftext_20.Text = "Enabled:"
  4553. end
  4554. if ilight == false then
  4555. ScreenGui.onofftext_20.Text = "Disabled:"
  4556. end
  4557. end)
  4558.  
  4559. ScreenGui.onofftext_20.Name = "onofftext"
  4560. ScreenGui.onofftext_20.Parent = ScreenGui.light
  4561. ScreenGui.onofftext_20.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  4562. ScreenGui.onofftext_20.BackgroundTransparency = 1.000
  4563. ScreenGui.onofftext_20.BorderSizePixel = 0
  4564. ScreenGui.onofftext_20.Position = UDim2.new(-0.00740325451, 0, -1.04062986, 5)
  4565. ScreenGui.onofftext_20.Size = UDim2.new(0, 55, 0, 15)
  4566. ScreenGui.onofftext_20.Font = Enum.Font.Gotham
  4567. ScreenGui.onofftext_20.Text = "Enabled:"
  4568. ScreenGui.onofftext_20.TextColor3 = Color3.fromRGB(255, 255, 255)
  4569. ScreenGui.onofftext_20.TextScaled = true
  4570. ScreenGui.onofftext_20.TextSize = 16.000
  4571. ScreenGui.onofftext_20.TextWrapped = true
  4572.  
  4573. ScreenGui.msgcrash.Name = "msgcrash"
  4574. ScreenGui.msgcrash.Parent = ScreenGui.antitab
  4575. ScreenGui.msgcrash.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4576. ScreenGui.msgcrash.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4577. ScreenGui.msgcrash.BorderSizePixel = 3
  4578. ScreenGui.msgcrash.Position = UDim2.new(0.0897435918, 0, 0.856765211, 0)
  4579. ScreenGui.msgcrash.Size = UDim2.new(0, 55, 0, 25)
  4580. ScreenGui.msgcrash.Font = Enum.Font.Gotham
  4581. ScreenGui.msgcrash.Text = "antimsg"
  4582. ScreenGui.msgcrash.TextColor3 = Color3.fromRGB(255, 255, 255)
  4583. ScreenGui.msgcrash.TextScaled = true
  4584. ScreenGui.msgcrash.TextSize = 18.000
  4585. ScreenGui.msgcrash.TextWrapped = true
  4586. ScreenGui.msgcrash.MouseButton1Down:connect(function()
  4587. nomsgcrash = not nomsgcrash
  4588. if nomsgcrash == true then
  4589. ScreenGui.onofftext_21.Text = "Disabled:"
  4590. end
  4591. if nomsgcrash == true then
  4592. ScreenGui.onofftext_21.Text = "Enabled:"
  4593. end
  4594. end)
  4595.  
  4596. ScreenGui.onofftext_21.Name = "onofftext"
  4597. ScreenGui.onofftext_21.Parent = ScreenGui.msgcrash
  4598. ScreenGui.onofftext_21.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  4599. ScreenGui.onofftext_21.BackgroundTransparency = 1.000
  4600. ScreenGui.onofftext_21.BorderSizePixel = 0
  4601. ScreenGui.onofftext_21.Position = UDim2.new(0.0166060925, 0, -1.04062998, 5)
  4602. ScreenGui.onofftext_21.Size = UDim2.new(0, 55, 0, 15)
  4603. ScreenGui.onofftext_21.Font = Enum.Font.Gotham
  4604. ScreenGui.onofftext_21.Text = "Disabled:"
  4605. ScreenGui.onofftext_21.TextColor3 = Color3.fromRGB(255, 255, 255)
  4606. ScreenGui.onofftext_21.TextScaled = true
  4607. ScreenGui.onofftext_21.TextSize = 16.000
  4608. ScreenGui.onofftext_21.TextWrapped = true
  4609.  
  4610. ScreenGui.colortab.Name = "colortab"
  4611. ScreenGui.colortab.Parent = ScreenGui.tabholder
  4612. ScreenGui.colortab.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  4613. ScreenGui.colortab.BackgroundTransparency = 1.000
  4614. ScreenGui.colortab.Size = UDim2.new(0, 156, 0, 254)
  4615. ScreenGui.colortab.Visible = false
  4616.  
  4617. ScreenGui.title_7.Name = "title"
  4618. ScreenGui.title_7.Parent = ScreenGui.colortab
  4619. ScreenGui.title_7.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  4620. ScreenGui.title_7.BackgroundTransparency = 1.000
  4621. ScreenGui.title_7.BorderSizePixel = 0
  4622. ScreenGui.title_7.Position = UDim2.new(0.256000012, 0, 0, 5)
  4623. ScreenGui.title_7.Size = UDim2.new(0, 75, 0, 22)
  4624. ScreenGui.title_7.Font = Enum.Font.Gotham
  4625. ScreenGui.title_7.Text = "Colors"
  4626. ScreenGui.title_7.TextColor3 = Color3.fromRGB(255, 255, 255)
  4627. ScreenGui.title_7.TextSize = 16.000
  4628. ScreenGui.title_7.TextWrapped = true
  4629.  
  4630. ScreenGui.line_6.Name = "line"
  4631. ScreenGui.line_6.Parent = ScreenGui.colortab
  4632. ScreenGui.line_6.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  4633. ScreenGui.line_6.BorderSizePixel = 0
  4634. ScreenGui.line_6.Position = UDim2.new(0.0897435844, 0, 0.106299214, 0)
  4635. ScreenGui.line_6.Size = UDim2.new(0, 125, 0, 1)
  4636. ScreenGui.line_6.Font = Enum.Font.SourceSans
  4637. ScreenGui.line_6.Text = ""
  4638. ScreenGui.line_6.TextColor3 = Color3.fromRGB(0, 0, 0)
  4639. ScreenGui.line_6.TextSize = 14.000
  4640.  
  4641. ScreenGui.acolor.Name = "acolor"
  4642. ScreenGui.acolor.Parent = ScreenGui.colortab
  4643. ScreenGui.acolor.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4644. ScreenGui.acolor.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4645. ScreenGui.acolor.BorderSizePixel = 3
  4646. ScreenGui.acolor.Position = UDim2.new(0.0897435918, 0, 0.155709341, 0)
  4647. ScreenGui.acolor.Size = UDim2.new(0, 55, 0, 25)
  4648. ScreenGui.acolor.Font = Enum.Font.Gotham
  4649. ScreenGui.acolor.Text = "Acolor"
  4650. ScreenGui.acolor.TextColor3 = Color3.fromRGB(255, 255, 255)
  4651. ScreenGui.acolor.TextScaled = true
  4652. ScreenGui.acolor.TextSize = 18.000
  4653. ScreenGui.acolor.TextWrapped = true
  4654. ScreenGui.acolor.MouseButton1Down:connect(function()
  4655. game:GetService'Players':Chat((":acolor"))
  4656. end)
  4657.  
  4658. ScreenGui.bcolor.Name = "bcolor"
  4659. ScreenGui.bcolor.Parent = ScreenGui.colortab
  4660. ScreenGui.bcolor.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4661. ScreenGui.bcolor.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4662. ScreenGui.bcolor.BorderSizePixel = 3
  4663. ScreenGui.bcolor.Position = UDim2.new(0.538461566, 0, 0.155709341, 0)
  4664. ScreenGui.bcolor.Size = UDim2.new(0, 55, 0, 25)
  4665. ScreenGui.bcolor.Font = Enum.Font.Gotham
  4666. ScreenGui.bcolor.Text = "Bcolor"
  4667. ScreenGui.bcolor.TextColor3 = Color3.fromRGB(255, 255, 255)
  4668. ScreenGui.bcolor.TextScaled = true
  4669. ScreenGui.bcolor.TextSize = 18.000
  4670. ScreenGui.bcolor.TextWrapped = true
  4671. ScreenGui.bcolor.MouseButton1Down:connect(function()
  4672. game:GetService'Players':Chat((":bcolor"))
  4673. end)
  4674.  
  4675. ScreenGui.redhell.Name = "redhell"
  4676. ScreenGui.redhell.Parent = ScreenGui.colortab
  4677. ScreenGui.redhell.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4678. ScreenGui.redhell.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4679. ScreenGui.redhell.BorderSizePixel = 3
  4680. ScreenGui.redhell.Position = UDim2.new(0.538461566, 0, 0.325000674, 0)
  4681. ScreenGui.redhell.Size = UDim2.new(0, 55, 0, 25)
  4682. ScreenGui.redhell.Font = Enum.Font.Gotham
  4683. ScreenGui.redhell.Text = "Redhell"
  4684. ScreenGui.redhell.TextColor3 = Color3.fromRGB(255, 255, 255)
  4685. ScreenGui.redhell.TextScaled = true
  4686. ScreenGui.redhell.TextSize = 18.000
  4687. ScreenGui.redhell.TextWrapped = true
  4688. ScreenGui.redhell.MouseButton1Down:connect(function()
  4689. game:GetService'Players':Chat((":redhell"))
  4690. end)
  4691.  
  4692. ScreenGui.ccolor.Name = "ccolor"
  4693. ScreenGui.ccolor.Parent = ScreenGui.colortab
  4694. ScreenGui.ccolor.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4695. ScreenGui.ccolor.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4696. ScreenGui.ccolor.BorderSizePixel = 3
  4697. ScreenGui.ccolor.Position = UDim2.new(0.0897435918, 0, 0.325000674, 0)
  4698. ScreenGui.ccolor.Size = UDim2.new(0, 55, 0, 25)
  4699. ScreenGui.ccolor.Font = Enum.Font.Gotham
  4700. ScreenGui.ccolor.Text = "Ccolor"
  4701. ScreenGui.ccolor.TextColor3 = Color3.fromRGB(255, 255, 255)
  4702. ScreenGui.ccolor.TextScaled = true
  4703. ScreenGui.ccolor.TextSize = 18.000
  4704. ScreenGui.ccolor.TextWrapped = true
  4705. ScreenGui.ccolor.MouseButton1Down:connect(function()
  4706. game:GetService'Players':Chat((":ccolor"))
  4707. end)
  4708.  
  4709. ScreenGui.a.Name = "a"
  4710. ScreenGui.a.Parent = ScreenGui.colortab
  4711. ScreenGui.a.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4712. ScreenGui.a.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4713. ScreenGui.a.BorderSizePixel = 3
  4714. ScreenGui.a.Position = UDim2.new(0.538461566, 0, 0.494292021, 0)
  4715. ScreenGui.a.Size = UDim2.new(0, 55, 0, 25)
  4716. ScreenGui.a.Font = Enum.Font.Gotham
  4717. ScreenGui.a.Text = "NA"
  4718. ScreenGui.a.TextColor3 = Color3.fromRGB(255, 255, 255)
  4719. ScreenGui.a.TextScaled = true
  4720. ScreenGui.a.TextSize = 18.000
  4721. ScreenGui.a.TextWrapped = true
  4722.  
  4723. ScreenGui.rainbow.Name = "rainbow"
  4724. ScreenGui.rainbow.Parent = ScreenGui.colortab
  4725. ScreenGui.rainbow.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4726. ScreenGui.rainbow.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4727. ScreenGui.rainbow.BorderSizePixel = 3
  4728. ScreenGui.rainbow.Position = UDim2.new(0.0897435918, 0, 0.494292021, 0)
  4729. ScreenGui.rainbow.Size = UDim2.new(0, 55, 0, 25)
  4730. ScreenGui.rainbow.Font = Enum.Font.Gotham
  4731. ScreenGui.rainbow.Text = "Rainbow"
  4732. ScreenGui.rainbow.TextColor3 = Color3.fromRGB(255, 255, 255)
  4733. ScreenGui.rainbow.TextScaled = true
  4734. ScreenGui.rainbow.TextSize = 18.000
  4735. ScreenGui.rainbow.TextWrapped = true
  4736. ScreenGui.rainbow.MouseButton1Down:connect(function()
  4737. game:GetService'Players':Chat((":rainbow"))
  4738. end)
  4739.  
  4740. ScreenGui.a_2.Name = "a"
  4741. ScreenGui.a_2.Parent = ScreenGui.colortab
  4742. ScreenGui.a_2.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4743. ScreenGui.a_2.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4744. ScreenGui.a_2.BorderSizePixel = 3
  4745. ScreenGui.a_2.Position = UDim2.new(0.538461566, 0, 0.655709326, 0)
  4746. ScreenGui.a_2.Size = UDim2.new(0, 55, 0, 25)
  4747. ScreenGui.a_2.Font = Enum.Font.Gotham
  4748. ScreenGui.a_2.Text = "NA"
  4749. ScreenGui.a_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  4750. ScreenGui.a_2.TextScaled = true
  4751. ScreenGui.a_2.TextSize = 18.000
  4752. ScreenGui.a_2.TextWrapped = true
  4753.  
  4754. ScreenGui.a_3.Name = "a"
  4755. ScreenGui.a_3.Parent = ScreenGui.colortab
  4756. ScreenGui.a_3.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4757. ScreenGui.a_3.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4758. ScreenGui.a_3.BorderSizePixel = 3
  4759. ScreenGui.a_3.Position = UDim2.new(0.0897435918, 0, 0.655709326, 0)
  4760. ScreenGui.a_3.Size = UDim2.new(0, 55, 0, 25)
  4761. ScreenGui.a_3.Font = Enum.Font.Gotham
  4762. ScreenGui.a_3.Text = "NA"
  4763. ScreenGui.a_3.TextColor3 = Color3.fromRGB(255, 255, 255)
  4764. ScreenGui.a_3.TextScaled = true
  4765. ScreenGui.a_3.TextSize = 18.000
  4766. ScreenGui.a_3.TextWrapped = true
  4767.  
  4768. ScreenGui.stop_2.Name = "stop"
  4769. ScreenGui.stop_2.Parent = ScreenGui.colortab
  4770. ScreenGui.stop_2.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4771. ScreenGui.stop_2.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4772. ScreenGui.stop_2.BorderSizePixel = 3
  4773. ScreenGui.stop_2.Position = UDim2.new(0.166666672, 0, 0.817126632, 0)
  4774. ScreenGui.stop_2.Size = UDim2.new(0, 100, 0, 25)
  4775. ScreenGui.stop_2.Font = Enum.Font.Gotham
  4776. ScreenGui.stop_2.Text = "Stop"
  4777. ScreenGui.stop_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  4778. ScreenGui.stop_2.TextSize = 18.000
  4779. ScreenGui.stop_2.TextWrapped = true
  4780. ScreenGui.stop_2.MouseButton1Down:connect(function()
  4781. acolor = false
  4782. bcolor = false
  4783. ccolor = false
  4784. rhell = false
  4785. multi = false
  4786. end)
  4787.  
  4788. ScreenGui.geartab.Name = "geartab"
  4789. ScreenGui.geartab.Parent = ScreenGui.tabholder
  4790. ScreenGui.geartab.Active = true
  4791. ScreenGui.geartab.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  4792. ScreenGui.geartab.BackgroundTransparency = 1.000
  4793. ScreenGui.geartab.BorderSizePixel = 0
  4794. ScreenGui.geartab.Size = UDim2.new(0, 156, 0, 254)
  4795. ScreenGui.geartab.Visible = false
  4796. ScreenGui.geartab.CanvasSize = UDim2.new(0, 0, 3, 0)
  4797. ScreenGui.geartab.ScrollBarThickness = 4
  4798. ScreenGui.geartab.VerticalScrollBarPosition = Enum.VerticalScrollBarPosition.Left
  4799.  
  4800. ScreenGui.title_8.Name = "title"
  4801. ScreenGui.title_8.Parent = ScreenGui.geartab
  4802. ScreenGui.title_8.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  4803. ScreenGui.title_8.BackgroundTransparency = 1.000
  4804. ScreenGui.title_8.BorderSizePixel = 0
  4805. ScreenGui.title_8.Position = UDim2.new(0.256000012, 0, 0, 5)
  4806. ScreenGui.title_8.Size = UDim2.new(0, 75, 0, 22)
  4807. ScreenGui.title_8.Font = Enum.Font.Gotham
  4808. ScreenGui.title_8.Text = "Gear"
  4809. ScreenGui.title_8.TextColor3 = Color3.fromRGB(255, 255, 255)
  4810. ScreenGui.title_8.TextSize = 16.000
  4811. ScreenGui.title_8.TextWrapped = true
  4812.  
  4813. ScreenGui.line_7.Name = "line"
  4814. ScreenGui.line_7.Parent = ScreenGui.geartab
  4815. ScreenGui.line_7.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  4816. ScreenGui.line_7.BorderSizePixel = 0
  4817. ScreenGui.line_7.Position = UDim2.new(0.0897435844, 0, 0.0354330689, 0)
  4818. ScreenGui.line_7.Size = UDim2.new(0, 125, 0, 1)
  4819. ScreenGui.line_7.Font = Enum.Font.SourceSans
  4820. ScreenGui.line_7.Text = ""
  4821. ScreenGui.line_7.TextColor3 = Color3.fromRGB(0, 0, 0)
  4822. ScreenGui.line_7.TextSize = 14.000
  4823.  
  4824. ScreenGui.laser.Name = "laser"
  4825. ScreenGui.laser.Parent = ScreenGui.geartab
  4826. ScreenGui.laser.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4827. ScreenGui.laser.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4828. ScreenGui.laser.BorderSizePixel = 3
  4829. ScreenGui.laser.Position = UDim2.new(0.179487184, 0, 0.0511176884, 0)
  4830. ScreenGui.laser.Size = UDim2.new(0, 100, 0, 25)
  4831. ScreenGui.laser.Font = Enum.Font.Gotham
  4832. ScreenGui.laser.Text = "Hyperlaser"
  4833. ScreenGui.laser.TextColor3 = Color3.fromRGB(255, 255, 255)
  4834. ScreenGui.laser.TextScaled = true
  4835. ScreenGui.laser.TextSize = 18.000
  4836. ScreenGui.laser.TextWrapped = true
  4837. ScreenGui.laser.MouseButton1Down:connect(function()
  4838. game:GetService'Players':Chat((":g hyperlaser me"))
  4839. end)
  4840.  
  4841. ScreenGui.dagger_2.Name = "dagger"
  4842. ScreenGui.dagger_2.Parent = ScreenGui.geartab
  4843. ScreenGui.dagger_2.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4844. ScreenGui.dagger_2.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4845. ScreenGui.dagger_2.BorderSizePixel = 3
  4846. ScreenGui.dagger_2.Position = UDim2.new(0.179487184, 0, 0.0996741205, 0)
  4847. ScreenGui.dagger_2.Size = UDim2.new(0, 100, 0, 25)
  4848. ScreenGui.dagger_2.Font = Enum.Font.Gotham
  4849. ScreenGui.dagger_2.Text = "Dagger of shattered dimensions"
  4850. ScreenGui.dagger_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  4851. ScreenGui.dagger_2.TextScaled = true
  4852. ScreenGui.dagger_2.TextSize = 18.000
  4853. ScreenGui.dagger_2.TextWrapped = true
  4854. ScreenGui.dagger_2.MouseButton1Down:connect(function()
  4855. game:GetService'Players':Chat((":g dsd me"))
  4856. end)
  4857.  
  4858. ScreenGui.cresendo.Name = "cresendo"
  4859. ScreenGui.cresendo.Parent = ScreenGui.geartab
  4860. ScreenGui.cresendo.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4861. ScreenGui.cresendo.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4862. ScreenGui.cresendo.BorderSizePixel = 3
  4863. ScreenGui.cresendo.Position = UDim2.new(0.179487184, 0, 0.149542883, 0)
  4864. ScreenGui.cresendo.Size = UDim2.new(0, 100, 0, 25)
  4865. ScreenGui.cresendo.Font = Enum.Font.Gotham
  4866. ScreenGui.cresendo.Text = "Cresendo"
  4867. ScreenGui.cresendo.TextColor3 = Color3.fromRGB(255, 255, 255)
  4868. ScreenGui.cresendo.TextScaled = true
  4869. ScreenGui.cresendo.TextSize = 18.000
  4870. ScreenGui.cresendo.TextWrapped = true
  4871. ScreenGui.cresendo.MouseButton1Down:connect(function()
  4872. game:GetService'Players':Chat((":g cresendo me"))
  4873. end)
  4874.  
  4875. ScreenGui.rainbow_2.Name = "rainbow"
  4876. ScreenGui.rainbow_2.Parent = ScreenGui.geartab
  4877. ScreenGui.rainbow_2.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4878. ScreenGui.rainbow_2.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4879. ScreenGui.rainbow_2.BorderSizePixel = 3
  4880. ScreenGui.rainbow_2.Position = UDim2.new(0.179487184, 0, 0.196786985, 0)
  4881. ScreenGui.rainbow_2.Size = UDim2.new(0, 100, 0, 25)
  4882. ScreenGui.rainbow_2.Font = Enum.Font.Gotham
  4883. ScreenGui.rainbow_2.Text = "Rainbow Periastron"
  4884. ScreenGui.rainbow_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  4885. ScreenGui.rainbow_2.TextScaled = true
  4886. ScreenGui.rainbow_2.TextSize = 18.000
  4887. ScreenGui.rainbow_2.TextWrapped = true
  4888. ScreenGui.rainbow_2.MouseButton1Down:connect(function()
  4889. game:GetService'Players':Chat((":g rainbow me"))
  4890. end)
  4891.  
  4892. ScreenGui.azure.Name = "azure"
  4893. ScreenGui.azure.Parent = ScreenGui.geartab
  4894. ScreenGui.azure.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4895. ScreenGui.azure.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4896. ScreenGui.azure.BorderSizePixel = 3
  4897. ScreenGui.azure.Position = UDim2.new(0.179487169, 0, 0.295212179, 0)
  4898. ScreenGui.azure.Size = UDim2.new(0, 100, 0, 25)
  4899. ScreenGui.azure.Font = Enum.Font.Gotham
  4900. ScreenGui.azure.Text = "Azure Periastron"
  4901. ScreenGui.azure.TextColor3 = Color3.fromRGB(255, 255, 255)
  4902. ScreenGui.azure.TextScaled = true
  4903. ScreenGui.azure.TextSize = 18.000
  4904. ScreenGui.azure.TextWrapped = true
  4905. ScreenGui.azure.MouseButton1Down:connect(function()
  4906. game:GetService'Players':Chat((":g azure me"))
  4907. end)
  4908.  
  4909. ScreenGui.crimson.Name = "crimson"
  4910. ScreenGui.crimson.Parent = ScreenGui.geartab
  4911. ScreenGui.crimson.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4912. ScreenGui.crimson.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4913. ScreenGui.crimson.BorderSizePixel = 3
  4914. ScreenGui.crimson.Position = UDim2.new(0.179487169, 0, 0.345080942, 0)
  4915. ScreenGui.crimson.Size = UDim2.new(0, 100, 0, 25)
  4916. ScreenGui.crimson.Font = Enum.Font.Gotham
  4917. ScreenGui.crimson.Text = "Crimson Periastron"
  4918. ScreenGui.crimson.TextColor3 = Color3.fromRGB(255, 255, 255)
  4919. ScreenGui.crimson.TextScaled = true
  4920. ScreenGui.crimson.TextSize = 18.000
  4921. ScreenGui.crimson.TextWrapped = true
  4922. ScreenGui.crimson.MouseButton1Down:connect(function()
  4923. game:GetService'Players':Chat((":g crimson me"))
  4924. end)
  4925.  
  4926. ScreenGui.chart.Name = "chart"
  4927. ScreenGui.chart.Parent = ScreenGui.geartab
  4928. ScreenGui.chart.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4929. ScreenGui.chart.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4930. ScreenGui.chart.BorderSizePixel = 3
  4931. ScreenGui.chart.Position = UDim2.new(0.179487169, 0, 0.392325044, 0)
  4932. ScreenGui.chart.Size = UDim2.new(0, 100, 0, 25)
  4933. ScreenGui.chart.Font = Enum.Font.Gotham
  4934. ScreenGui.chart.Text = "Chartreuse Periastron"
  4935. ScreenGui.chart.TextColor3 = Color3.fromRGB(255, 255, 255)
  4936. ScreenGui.chart.TextScaled = true
  4937. ScreenGui.chart.TextSize = 18.000
  4938. ScreenGui.chart.TextWrapped = true
  4939. ScreenGui.chart.MouseButton1Down:connect(function()
  4940. game:GetService'Players':Chat((":g chartreuse me"))
  4941. end)
  4942.  
  4943. ScreenGui.ivory.Name = "ivory"
  4944. ScreenGui.ivory.Parent = ScreenGui.geartab
  4945. ScreenGui.ivory.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4946. ScreenGui.ivory.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4947. ScreenGui.ivory.BorderSizePixel = 3
  4948. ScreenGui.ivory.Position = UDim2.new(0.179487169, 0, 0.246655762, 0)
  4949. ScreenGui.ivory.Size = UDim2.new(0, 100, 0, 25)
  4950. ScreenGui.ivory.Font = Enum.Font.Gotham
  4951. ScreenGui.ivory.Text = "Ivory Periastron"
  4952. ScreenGui.ivory.TextColor3 = Color3.fromRGB(255, 255, 255)
  4953. ScreenGui.ivory.TextScaled = true
  4954. ScreenGui.ivory.TextSize = 18.000
  4955. ScreenGui.ivory.TextWrapped = true
  4956. ScreenGui.ivory.MouseButton1Down:connect(function()
  4957. game:GetService'Players':Chat((":g ivory me"))
  4958. end)
  4959.  
  4960. ScreenGui.sledge.Name = "sledge"
  4961. ScreenGui.sledge.Parent = ScreenGui.geartab
  4962. ScreenGui.sledge.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4963. ScreenGui.sledge.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4964. ScreenGui.sledge.BorderSizePixel = 3
  4965. ScreenGui.sledge.Position = UDim2.new(0.179487169, 0, 0.587863088, 0)
  4966. ScreenGui.sledge.Size = UDim2.new(0, 100, 0, 25)
  4967. ScreenGui.sledge.Font = Enum.Font.Gotham
  4968. ScreenGui.sledge.Text = "Sledge Hammer"
  4969. ScreenGui.sledge.TextColor3 = Color3.fromRGB(255, 255, 255)
  4970. ScreenGui.sledge.TextScaled = true
  4971. ScreenGui.sledge.TextSize = 18.000
  4972. ScreenGui.sledge.TextWrapped = true
  4973. ScreenGui.sledge.MouseButton1Down:connect(function()
  4974. game:GetService'Players':Chat((":g sledgehammer me"))
  4975. end)
  4976.  
  4977. ScreenGui.grim.Name = "grim"
  4978. ScreenGui.grim.Parent = ScreenGui.geartab
  4979. ScreenGui.grim.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4980. ScreenGui.grim.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4981. ScreenGui.grim.BorderSizePixel = 3
  4982. ScreenGui.grim.Position = UDim2.new(0.179487169, 0, 0.540619016, 0)
  4983. ScreenGui.grim.Size = UDim2.new(0, 100, 0, 25)
  4984. ScreenGui.grim.Font = Enum.Font.Gotham
  4985. ScreenGui.grim.Text = "Grimgold Periastron"
  4986. ScreenGui.grim.TextColor3 = Color3.fromRGB(255, 255, 255)
  4987. ScreenGui.grim.TextScaled = true
  4988. ScreenGui.grim.TextSize = 18.000
  4989. ScreenGui.grim.TextWrapped = true
  4990. ScreenGui.grim.MouseButton1Down:connect(function()
  4991. game:GetService'Players':Chat((":g grimgold me"))
  4992. end)
  4993.  
  4994. ScreenGui.noir.Name = "noir"
  4995. ScreenGui.noir.Parent = ScreenGui.geartab
  4996. ScreenGui.noir.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  4997. ScreenGui.noir.BorderColor3 = Color3.fromRGB(26, 26, 26)
  4998. ScreenGui.noir.BorderSizePixel = 3
  4999. ScreenGui.noir.Position = UDim2.new(0.179487169, 0, 0.490750223, 0)
  5000. ScreenGui.noir.Size = UDim2.new(0, 100, 0, 25)
  5001. ScreenGui.noir.Font = Enum.Font.Gotham
  5002. ScreenGui.noir.Text = "Noir Periastron"
  5003. ScreenGui.noir.TextColor3 = Color3.fromRGB(255, 255, 255)
  5004. ScreenGui.noir.TextScaled = true
  5005. ScreenGui.noir.TextSize = 18.000
  5006. ScreenGui.noir.TextWrapped = true
  5007. ScreenGui.noir.MouseButton1Down:connect(function()
  5008. game:GetService'Players':Chat((":g noir me"))
  5009. end)
  5010.  
  5011. ScreenGui.amethy.Name = "amethy"
  5012. ScreenGui.amethy.Parent = ScreenGui.geartab
  5013. ScreenGui.amethy.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5014. ScreenGui.amethy.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5015. ScreenGui.amethy.BorderSizePixel = 3
  5016. ScreenGui.amethy.Position = UDim2.new(0.179487169, 0, 0.442193806, 0)
  5017. ScreenGui.amethy.Size = UDim2.new(0, 100, 0, 25)
  5018. ScreenGui.amethy.Font = Enum.Font.Gotham
  5019. ScreenGui.amethy.Text = "Amethyst Periastron"
  5020. ScreenGui.amethy.TextColor3 = Color3.fromRGB(255, 255, 255)
  5021. ScreenGui.amethy.TextScaled = true
  5022. ScreenGui.amethy.TextSize = 18.000
  5023. ScreenGui.amethy.TextWrapped = true
  5024. ScreenGui.amethy.MouseButton1Down:connect(function()
  5025. game:GetService'Players':Chat((":g amethyst me"))
  5026. end)
  5027.  
  5028. ScreenGui.dualill.Name = "dualill"
  5029. ScreenGui.dualill.Parent = ScreenGui.geartab
  5030. ScreenGui.dualill.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5031. ScreenGui.dualill.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5032. ScreenGui.dualill.BorderSizePixel = 3
  5033. ScreenGui.dualill.Position = UDim2.new(0.179487169, 0, 0.737469375, 0)
  5034. ScreenGui.dualill.Size = UDim2.new(0, 100, 0, 25)
  5035. ScreenGui.dualill.Font = Enum.Font.Gotham
  5036. ScreenGui.dualill.Text = "Dual Illumina"
  5037. ScreenGui.dualill.TextColor3 = Color3.fromRGB(255, 255, 255)
  5038. ScreenGui.dualill.TextScaled = true
  5039. ScreenGui.dualill.TextSize = 18.000
  5040. ScreenGui.dualill.TextWrapped = true
  5041. ScreenGui.dualill.MouseButton1Down:connect(function()
  5042. game:GetService'Players':Chat((":g dualillumina me"))
  5043. end)
  5044.  
  5045. ScreenGui.dualdark.Name = "dualdark"
  5046. ScreenGui.dualdark.Parent = ScreenGui.geartab
  5047. ScreenGui.dualdark.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5048. ScreenGui.dualdark.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5049. ScreenGui.dualdark.BorderSizePixel = 3
  5050. ScreenGui.dualdark.Position = UDim2.new(0.179487169, 0, 0.690225303, 0)
  5051. ScreenGui.dualdark.Size = UDim2.new(0, 100, 0, 25)
  5052. ScreenGui.dualdark.Font = Enum.Font.Gotham
  5053. ScreenGui.dualdark.Text = "Dual Darkheart"
  5054. ScreenGui.dualdark.TextColor3 = Color3.fromRGB(255, 255, 255)
  5055. ScreenGui.dualdark.TextScaled = true
  5056. ScreenGui.dualdark.TextSize = 18.000
  5057. ScreenGui.dualdark.TextWrapped = true
  5058. ScreenGui.dualdark.MouseButton1Down:connect(function()
  5059. game:GetService'Players':Chat((":g dualdarkheart me"))
  5060. end)
  5061.  
  5062. ScreenGui.carpet.Name = "carpet"
  5063. ScreenGui.carpet.Parent = ScreenGui.geartab
  5064. ScreenGui.carpet.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5065. ScreenGui.carpet.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5066. ScreenGui.carpet.BorderSizePixel = 3
  5067. ScreenGui.carpet.Position = UDim2.new(0.179487169, 0, 0.640356481, 0)
  5068. ScreenGui.carpet.Size = UDim2.new(0, 100, 0, 25)
  5069. ScreenGui.carpet.Font = Enum.Font.Gotham
  5070. ScreenGui.carpet.Text = "Rainbow Carpet"
  5071. ScreenGui.carpet.TextColor3 = Color3.fromRGB(255, 255, 255)
  5072. ScreenGui.carpet.TextScaled = true
  5073. ScreenGui.carpet.TextSize = 18.000
  5074. ScreenGui.carpet.TextWrapped = true
  5075. ScreenGui.carpet.MouseButton1Down:connect(function()
  5076. game:GetService'Players':Chat((":g carpet me"))
  5077. end)
  5078.  
  5079. ScreenGui.chaos.Name = "chaos"
  5080. ScreenGui.chaos.Parent = ScreenGui.geartab
  5081. ScreenGui.chaos.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5082. ScreenGui.chaos.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5083. ScreenGui.chaos.BorderSizePixel = 3
  5084. ScreenGui.chaos.Position = UDim2.new(0.179487169, 0, 0.788650453, 0)
  5085. ScreenGui.chaos.Size = UDim2.new(0, 100, 0, 25)
  5086. ScreenGui.chaos.Font = Enum.Font.Gotham
  5087. ScreenGui.chaos.Text = "Chaos Sword"
  5088. ScreenGui.chaos.TextColor3 = Color3.fromRGB(255, 255, 255)
  5089. ScreenGui.chaos.TextScaled = true
  5090. ScreenGui.chaos.TextSize = 18.000
  5091. ScreenGui.chaos.TextWrapped = true
  5092. ScreenGui.chaos.MouseButton1Down:connect(function()
  5093. game:GetService'Players':Chat((":g chaos me"))
  5094. end)
  5095.  
  5096. ScreenGui.katana.Name = "katana"
  5097. ScreenGui.katana.Parent = ScreenGui.geartab
  5098. ScreenGui.katana.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5099. ScreenGui.katana.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5100. ScreenGui.katana.BorderSizePixel = 3
  5101. ScreenGui.katana.Position = UDim2.new(0.179487169, 0, 0.839831531, 0)
  5102. ScreenGui.katana.Size = UDim2.new(0, 100, 0, 25)
  5103. ScreenGui.katana.Font = Enum.Font.Gotham
  5104. ScreenGui.katana.Text = "Katana"
  5105. ScreenGui.katana.TextColor3 = Color3.fromRGB(255, 255, 255)
  5106. ScreenGui.katana.TextScaled = true
  5107. ScreenGui.katana.TextSize = 18.000
  5108. ScreenGui.katana.TextWrapped = true
  5109. ScreenGui.katana.MouseButton1Down:connect(function()
  5110. game:GetService'Players':Chat((":g katana me"))
  5111. end)
  5112.  
  5113. ScreenGui.jetpack.Name = "jetpack"
  5114. ScreenGui.jetpack.Parent = ScreenGui.geartab
  5115. ScreenGui.jetpack.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5116. ScreenGui.jetpack.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5117. ScreenGui.jetpack.BorderSizePixel = 3
  5118. ScreenGui.jetpack.Position = UDim2.new(0.166666657, 0, 0.900198996, 0)
  5119. ScreenGui.jetpack.Size = UDim2.new(0, 100, 0, 25)
  5120. ScreenGui.jetpack.Font = Enum.Font.Gotham
  5121. ScreenGui.jetpack.Text = "Jetpack"
  5122. ScreenGui.jetpack.TextColor3 = Color3.fromRGB(255, 255, 255)
  5123. ScreenGui.jetpack.TextScaled = true
  5124. ScreenGui.jetpack.TextSize = 18.000
  5125. ScreenGui.jetpack.TextWrapped = true
  5126. ScreenGui.jetpack.MouseButton1Down:connect(function()
  5127. game:GetService'Players':Chat((":g jetpack me"))
  5128. end)
  5129.  
  5130. ScreenGui.batsword.Name = "batsword"
  5131. ScreenGui.batsword.Parent = ScreenGui.geartab
  5132. ScreenGui.batsword.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5133. ScreenGui.batsword.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5134. ScreenGui.batsword.BorderSizePixel = 3
  5135. ScreenGui.batsword.Position = UDim2.new(0.179487169, 0, 0.95531708, 0)
  5136. ScreenGui.batsword.Size = UDim2.new(0, 100, 0, 25)
  5137. ScreenGui.batsword.Font = Enum.Font.Gotham
  5138. ScreenGui.batsword.Text = "Batsword"
  5139. ScreenGui.batsword.TextColor3 = Color3.fromRGB(255, 255, 255)
  5140. ScreenGui.batsword.TextScaled = true
  5141. ScreenGui.batsword.TextSize = 18.000
  5142. ScreenGui.batsword.TextWrapped = true
  5143. ScreenGui.batsword.MouseButton1Down:connect(function()
  5144. game:GetService'Players':Chat((":g batsword me"))
  5145. end)
  5146.  
  5147. ScreenGui.othertab.Name = "othertab"
  5148. ScreenGui.othertab.Parent = ScreenGui.tabholder
  5149. ScreenGui.othertab.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  5150. ScreenGui.othertab.BackgroundTransparency = 1.000
  5151. ScreenGui.othertab.BorderColor3 = Color3.fromRGB(27, 42, 53)
  5152. ScreenGui.othertab.Size = UDim2.new(0, 156, 0, 254)
  5153. ScreenGui.othertab.Visible = false
  5154.  
  5155. ScreenGui.title_9.Name = "title"
  5156. ScreenGui.title_9.Parent = ScreenGui.othertab
  5157. ScreenGui.title_9.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  5158. ScreenGui.title_9.BackgroundTransparency = 1.000
  5159. ScreenGui.title_9.BorderSizePixel = 0
  5160. ScreenGui.title_9.Position = UDim2.new(0.256000012, 0, 0, 5)
  5161. ScreenGui.title_9.Size = UDim2.new(0, 75, 0, 22)
  5162. ScreenGui.title_9.Font = Enum.Font.Gotham
  5163. ScreenGui.title_9.Text = "Other"
  5164. ScreenGui.title_9.TextColor3 = Color3.fromRGB(255, 255, 255)
  5165. ScreenGui.title_9.TextSize = 16.000
  5166. ScreenGui.title_9.TextWrapped = true
  5167.  
  5168. ScreenGui.line_8.Name = "line"
  5169. ScreenGui.line_8.Parent = ScreenGui.othertab
  5170. ScreenGui.line_8.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  5171. ScreenGui.line_8.BorderSizePixel = 0
  5172. ScreenGui.line_8.Position = UDim2.new(0.0897435844, 0, 0.106299214, 0)
  5173. ScreenGui.line_8.Size = UDim2.new(0, 125, 0, 1)
  5174. ScreenGui.line_8.Font = Enum.Font.SourceSans
  5175. ScreenGui.line_8.Text = ""
  5176. ScreenGui.line_8.TextColor3 = Color3.fromRGB(0, 0, 0)
  5177. ScreenGui.line_8.TextSize = 14.000
  5178.  
  5179. ScreenGui.zawarudo.Name = "zawarudo"
  5180. ScreenGui.zawarudo.Parent = ScreenGui.othertab
  5181. ScreenGui.zawarudo.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5182. ScreenGui.zawarudo.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5183. ScreenGui.zawarudo.BorderSizePixel = 3
  5184. ScreenGui.zawarudo.Position = UDim2.new(0.0897435918, 0, 0.151772335, 0)
  5185. ScreenGui.zawarudo.Size = UDim2.new(0, 60, 0, 25)
  5186. ScreenGui.zawarudo.Font = Enum.Font.Gotham
  5187. ScreenGui.zawarudo.Text = "Zawarudo"
  5188. ScreenGui.zawarudo.TextColor3 = Color3.fromRGB(255, 255, 255)
  5189. ScreenGui.zawarudo.TextScaled = true
  5190. ScreenGui.zawarudo.TextSize = 18.000
  5191. ScreenGui.zawarudo.TextWrapped = true
  5192. ScreenGui.zawarudo.MouseButton1Down:connect(function()
  5193. game:GetService'Players':Chat((":zawarudo"))
  5194. end)
  5195.  
  5196. ScreenGui.purge.Name = "purge"
  5197. ScreenGui.purge.Parent = ScreenGui.othertab
  5198. ScreenGui.purge.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5199. ScreenGui.purge.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5200. ScreenGui.purge.BorderSizePixel = 3
  5201. ScreenGui.purge.Position = UDim2.new(0.538461566, 0, 0.151772335, 0)
  5202. ScreenGui.purge.Size = UDim2.new(0, 55, 0, 25)
  5203. ScreenGui.purge.Font = Enum.Font.Gotham
  5204. ScreenGui.purge.Text = "Purge"
  5205. ScreenGui.purge.TextColor3 = Color3.fromRGB(255, 255, 255)
  5206. ScreenGui.purge.TextScaled = true
  5207. ScreenGui.purge.TextSize = 18.000
  5208. ScreenGui.purge.TextWrapped = true
  5209. ScreenGui.purge.MouseButton1Down:connect(function()
  5210. game:GetService'Players':Chat((":purge"))
  5211. end)
  5212.  
  5213. ScreenGui.green.Name = "green"
  5214. ScreenGui.green.Parent = ScreenGui.othertab
  5215. ScreenGui.green.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5216. ScreenGui.green.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5217. ScreenGui.green.BorderSizePixel = 3
  5218. ScreenGui.green.Position = UDim2.new(0.544871807, 0, 0.297441632, 0)
  5219. ScreenGui.green.Size = UDim2.new(0, 55, 0, 25)
  5220. ScreenGui.green.Font = Enum.Font.Gotham
  5221. ScreenGui.green.Text = "Green Light"
  5222. ScreenGui.green.TextColor3 = Color3.fromRGB(255, 255, 255)
  5223. ScreenGui.green.TextScaled = true
  5224. ScreenGui.green.TextSize = 18.000
  5225. ScreenGui.green.TextWrapped = true
  5226. ScreenGui.green.MouseButton1Down:connect(function()
  5227. for i = 1, 2 do
  5228. game:GetService'Players':Chat((":Go"))
  5229. end
  5230. end)
  5231.  
  5232. ScreenGui.red.Name = "red"
  5233. ScreenGui.red.Parent = ScreenGui.othertab
  5234. ScreenGui.red.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5235. ScreenGui.red.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5236. ScreenGui.red.BorderSizePixel = 3
  5237. ScreenGui.red.Position = UDim2.new(0.0961538479, 0, 0.297441632, 0)
  5238. ScreenGui.red.Size = UDim2.new(0, 60, 0, 25)
  5239. ScreenGui.red.Font = Enum.Font.Gotham
  5240. ScreenGui.red.Text = "Red Light"
  5241. ScreenGui.red.TextColor3 = Color3.fromRGB(255, 255, 255)
  5242. ScreenGui.red.TextScaled = true
  5243. ScreenGui.red.TextSize = 18.000
  5244. ScreenGui.red.TextWrapped = true
  5245. ScreenGui.red.MouseButton1Down:connect(function()
  5246. game:GetService'Players':Chat((":Stop"))
  5247. end)
  5248.  
  5249. ScreenGui.obbykill.Name = "obbykill"
  5250. ScreenGui.obbykill.Parent = ScreenGui.othertab
  5251. ScreenGui.obbykill.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5252. ScreenGui.obbykill.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5253. ScreenGui.obbykill.BorderSizePixel = 3
  5254. ScreenGui.obbykill.Position = UDim2.new(0.544871807, 0, 0.447047949, 0)
  5255. ScreenGui.obbykill.Size = UDim2.new(0, 55, 0, 25)
  5256. ScreenGui.obbykill.Font = Enum.Font.Gotham
  5257. ScreenGui.obbykill.Text = "NoObbyKill"
  5258. ScreenGui.obbykill.TextColor3 = Color3.fromRGB(255, 255, 255)
  5259. ScreenGui.obbykill.TextScaled = true
  5260. ScreenGui.obbykill.TextSize = 18.000
  5261. ScreenGui.obbykill.TextWrapped = true
  5262. ScreenGui.obbykill.MouseButton1Down:connect(function()
  5263. game:GetService'Players':Chat((":removeobbykill"))
  5264. end)
  5265.  
  5266. ScreenGui.regen.Name = "regen"
  5267. ScreenGui.regen.Parent = ScreenGui.othertab
  5268. ScreenGui.regen.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5269. ScreenGui.regen.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5270. ScreenGui.regen.BorderSizePixel = 3
  5271. ScreenGui.regen.Position = UDim2.new(0.0961538479, 0, 0.447047949, 0)
  5272. ScreenGui.regen.Size = UDim2.new(0, 60, 0, 25)
  5273. ScreenGui.regen.Font = Enum.Font.Gotham
  5274. ScreenGui.regen.Text = "Regen"
  5275. ScreenGui.regen.TextColor3 = Color3.fromRGB(255, 255, 255)
  5276. ScreenGui.regen.TextScaled = true
  5277. ScreenGui.regen.TextSize = 18.000
  5278. ScreenGui.regen.TextWrapped = true
  5279. ScreenGui.regen.MouseButton1Down:connect(function()
  5280. game:GetService'Players':Chat((":regen"))
  5281. end)
  5282.  
  5283. ScreenGui.rejoin.Name = "rejoin"
  5284. ScreenGui.rejoin.Parent = ScreenGui.othertab
  5285. ScreenGui.rejoin.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5286. ScreenGui.rejoin.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5287. ScreenGui.rejoin.BorderSizePixel = 3
  5288. ScreenGui.rejoin.Position = UDim2.new(0.544871807, 0, 0.600591242, 0)
  5289. ScreenGui.rejoin.Size = UDim2.new(0, 55, 0, 25)
  5290. ScreenGui.rejoin.Font = Enum.Font.Gotham
  5291. ScreenGui.rejoin.Text = "Rejoin"
  5292. ScreenGui.rejoin.TextColor3 = Color3.fromRGB(255, 255, 255)
  5293. ScreenGui.rejoin.TextScaled = true
  5294. ScreenGui.rejoin.TextSize = 18.000
  5295. ScreenGui.rejoin.TextWrapped = true
  5296. ScreenGui.rejoin.MouseButton1Down:connect(function()
  5297. game:GetService'Players':Chat((":rejoin"))
  5298. end)
  5299.  
  5300. ScreenGui.invert.Name = "invert"
  5301. ScreenGui.invert.Parent = ScreenGui.othertab
  5302. ScreenGui.invert.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5303. ScreenGui.invert.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5304. ScreenGui.invert.BorderSizePixel = 3
  5305. ScreenGui.invert.Position = UDim2.new(0.0961538479, 0, 0.600591242, 0)
  5306. ScreenGui.invert.Size = UDim2.new(0, 60, 0, 25)
  5307. ScreenGui.invert.Font = Enum.Font.Gotham
  5308. ScreenGui.invert.Text = "Fix Invert"
  5309. ScreenGui.invert.TextColor3 = Color3.fromRGB(255, 255, 255)
  5310. ScreenGui.invert.TextScaled = true
  5311. ScreenGui.invert.TextSize = 18.000
  5312. ScreenGui.invert.TextWrapped = true
  5313. ScreenGui.invert.MouseButton1Down:connect(function()
  5314. game:GetService'Players':Chat((":invertfix"))
  5315. end)
  5316.  
  5317. ScreenGui.skh.Name = "skh"
  5318. ScreenGui.skh.Parent = ScreenGui.othertab
  5319. ScreenGui.skh.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5320. ScreenGui.skh.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5321. ScreenGui.skh.BorderSizePixel = 3
  5322. ScreenGui.skh.Position = UDim2.new(0.544871807, 0, 0.742323518, 0)
  5323. ScreenGui.skh.Size = UDim2.new(0, 55, 0, 25)
  5324. ScreenGui.skh.Font = Enum.Font.Gotham
  5325. ScreenGui.skh.Text = "Max Skydive"
  5326. ScreenGui.skh.TextColor3 = Color3.fromRGB(255, 255, 255)
  5327. ScreenGui.skh.TextScaled = true
  5328. ScreenGui.skh.TextSize = 18.000
  5329. ScreenGui.skh.TextWrapped = true
  5330. ScreenGui.skh.MouseButton1Down:connect(function()
  5331. game:GetService'Players':Chat((":skh"))
  5332. end)
  5333.  
  5334. ScreenGui.allpad.Name = "allpad"
  5335. ScreenGui.allpad.Parent = ScreenGui.othertab
  5336. ScreenGui.allpad.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5337. ScreenGui.allpad.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5338. ScreenGui.allpad.BorderSizePixel = 3
  5339. ScreenGui.allpad.Position = UDim2.new(0.12820515, 0, 0.742323518, 0)
  5340. ScreenGui.allpad.Size = UDim2.new(0, 55, 0, 25)
  5341. ScreenGui.allpad.Font = Enum.Font.Gotham
  5342. ScreenGui.allpad.Text = "Allpads"
  5343. ScreenGui.allpad.TextColor3 = Color3.fromRGB(255, 255, 255)
  5344. ScreenGui.allpad.TextScaled = true
  5345. ScreenGui.allpad.TextSize = 18.000
  5346. ScreenGui.allpad.TextWrapped = true
  5347. ScreenGui.allpad.MouseButton1Down:connect(function()
  5348. game:GetService'Players':Chat((":allpads"))
  5349. end)
  5350.  
  5351. game.Players.PlayerAdded:Connect(function(user)
  5352. if user.UserId == 107318135 then
  5353. local per = user.Name
  5354. system("[System]: Owner of AdminJoy has joined! Account name: "..per.."! Account Type: Main!")
  5355. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Owner of AdminJoy has joined! Account name: "..per.."! Account Type: Main!", "All")
  5356. end
  5357. if user.UserId == 1760076165 then
  5358. local per = user.Name
  5359. system("[System]: Owner of AdminJoy has joined! Account name: "..per.."! Account Type: Alt!")
  5360. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Owner of AdminJoy has joined! Account name: "..per.."! Account Type: Alt!", "All")
  5361. end
  5362. if user.UserId == 1421792559 then
  5363. local per = user.Name
  5364. system("[System]: Owner of AdminJoy has joined! Account name: "..per.."! Account Type: Alt!")
  5365. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Owner of AdminJoy has joined! Account name: "..per.."! Account Type: Alt!", "All")
  5366. end
  5367. if user.UserId == 102559604 then
  5368. local per = user.Name
  5369. system("[System]: A beta Tester of AdminJoy has joined! Account name: "..per.."!")
  5370. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("A beta tester of AdminJoy has joined! Account name: "..per.."!", "All")
  5371. end
  5372. end)
  5373.  
  5374. ScreenGui.animationtab.Name = "animationtab"
  5375. ScreenGui.animationtab.Parent = ScreenGui.tabholder
  5376. ScreenGui.animationtab.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  5377. ScreenGui.animationtab.BackgroundTransparency = 1.000
  5378. ScreenGui.animationtab.BorderColor3 = Color3.fromRGB(27, 42, 53)
  5379. ScreenGui.animationtab.Size = UDim2.new(0, 156, 0, 254)
  5380. ScreenGui.animationtab.Visible = false
  5381.  
  5382. ScreenGui.title_10.Name = "title"
  5383. ScreenGui.title_10.Parent = ScreenGui.animationtab
  5384. ScreenGui.title_10.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  5385. ScreenGui.title_10.BackgroundTransparency = 1.000
  5386. ScreenGui.title_10.BorderSizePixel = 0
  5387. ScreenGui.title_10.Position = UDim2.new(0.256000012, 0, 0, 5)
  5388. ScreenGui.title_10.Size = UDim2.new(0, 75, 0, 22)
  5389. ScreenGui.title_10.Font = Enum.Font.Gotham
  5390. ScreenGui.title_10.Text = "Animations"
  5391. ScreenGui.title_10.TextColor3 = Color3.fromRGB(255, 255, 255)
  5392. ScreenGui.title_10.TextScaled = true
  5393. ScreenGui.title_10.TextSize = 16.000
  5394. ScreenGui.title_10.TextWrapped = true
  5395.  
  5396. ScreenGui.line_9.Name = "line"
  5397. ScreenGui.line_9.Parent = ScreenGui.animationtab
  5398. ScreenGui.line_9.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  5399. ScreenGui.line_9.BorderSizePixel = 0
  5400. ScreenGui.line_9.Position = UDim2.new(0.0897435844, 0, 0.106299214, 0)
  5401. ScreenGui.line_9.Size = UDim2.new(0, 125, 0, 1)
  5402. ScreenGui.line_9.Font = Enum.Font.SourceSans
  5403. ScreenGui.line_9.Text = ""
  5404. ScreenGui.line_9.TextColor3 = Color3.fromRGB(0, 0, 0)
  5405. ScreenGui.line_9.TextSize = 14.000
  5406.  
  5407. ScreenGui.hmm.Name = "hmm"
  5408. ScreenGui.hmm.Parent = ScreenGui.animationtab
  5409. ScreenGui.hmm.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5410. ScreenGui.hmm.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5411. ScreenGui.hmm.BorderSizePixel = 3
  5412. ScreenGui.hmm.Position = UDim2.new(0.0897435918, 0, 0.151772335, 0)
  5413. ScreenGui.hmm.Size = UDim2.new(0, 60, 0, 25)
  5414. ScreenGui.hmm.Font = Enum.Font.Gotham
  5415. ScreenGui.hmm.Text = "Hmm"
  5416. ScreenGui.hmm.TextColor3 = Color3.fromRGB(255, 255, 255)
  5417. ScreenGui.hmm.TextScaled = true
  5418. ScreenGui.hmm.TextSize = 18.000
  5419. ScreenGui.hmm.TextWrapped = true
  5420. ScreenGui.hmm.MouseButton1Down:connect(function()
  5421. game:GetService'Players':Chat((":hmm"))
  5422. end)
  5423.  
  5424. local function own()
  5425. local GetPlayers = game:GetService("Players")
  5426. local allplr = GetPlayers:GetPlayers()
  5427. wait(1)
  5428. for i, player in pairs(allplr) do
  5429. if player.UserId == 107318135 then
  5430. local per = player.Name
  5431. system("[System]: Owner of AdminJoy is in game! Account name: "..per.."! Account Type: Main!")
  5432. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Owner of AdminJoy is in game! Account name: "..per.."! Account Type: Main!", "All")
  5433. end
  5434. if player.UserId == 1760076165 then
  5435. local per = player.Name
  5436. system("[System]: Owner of AdminJoy is in game! Account name: "..per.."! Account Type: Alt!")
  5437. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Owner of AdminJoy is in game! Account name: "..per.."! Account Type: Alt!", "All")
  5438. end
  5439. if player.UserId == 1421792559 then
  5440. local per = player.Name
  5441. system("[System]: Owner of AdminJoy is in game! Account name: "..per.."! Account Type: Alt!")
  5442. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Owner of AdminJoy is in game! Account name: "..per.."! Account Type: Alt!", "All")
  5443. end
  5444. if player.UserId == 102559604 then
  5445. local per = player.Name
  5446. system("[System]: A beta Tester of AdminJoy is in game! Account name: "..per.."!")
  5447. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("A beta tester of AdminJoy is in game! Account name: "..per.."!", "All")
  5448. end
  5449. end
  5450. end
  5451.  
  5452. ScreenGui.tosshead.Name = "tosshead"
  5453. ScreenGui.tosshead.Parent = ScreenGui.animationtab
  5454. ScreenGui.tosshead.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5455. ScreenGui.tosshead.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5456. ScreenGui.tosshead.BorderSizePixel = 3
  5457. ScreenGui.tosshead.Position = UDim2.new(0.538461566, 0, 0.151772335, 0)
  5458. ScreenGui.tosshead.Size = UDim2.new(0, 55, 0, 25)
  5459. ScreenGui.tosshead.Font = Enum.Font.Gotham
  5460. ScreenGui.tosshead.Text = "Headtoss"
  5461. ScreenGui.tosshead.TextColor3 = Color3.fromRGB(255, 255, 255)
  5462. ScreenGui.tosshead.TextScaled = true
  5463. ScreenGui.tosshead.TextSize = 18.000
  5464. ScreenGui.tosshead.TextWrapped = true
  5465. ScreenGui.tosshead.MouseButton1Down:connect(function()
  5466. game:GetService'Players':Chat((":headtoss"))
  5467. end)
  5468.  
  5469. ScreenGui.headloop.Name = "headloop"
  5470. ScreenGui.headloop.Parent = ScreenGui.animationtab
  5471. ScreenGui.headloop.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5472. ScreenGui.headloop.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5473. ScreenGui.headloop.BorderSizePixel = 3
  5474. ScreenGui.headloop.Position = UDim2.new(0.544871807, 0, 0.297441632, 0)
  5475. ScreenGui.headloop.Size = UDim2.new(0, 55, 0, 25)
  5476. ScreenGui.headloop.Font = Enum.Font.Gotham
  5477. ScreenGui.headloop.Text = "Loophead"
  5478. ScreenGui.headloop.TextColor3 = Color3.fromRGB(255, 255, 255)
  5479. ScreenGui.headloop.TextScaled = true
  5480. ScreenGui.headloop.TextSize = 18.000
  5481. ScreenGui.headloop.TextWrapped = true
  5482. ScreenGui.headloop.MouseButton1Down:connect(function()
  5483. game:GetService'Players':Chat((":loophead"))
  5484. end)
  5485.  
  5486. ScreenGui.spinarm.Name = "spinarm"
  5487. ScreenGui.spinarm.Parent = ScreenGui.animationtab
  5488. ScreenGui.spinarm.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5489. ScreenGui.spinarm.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5490. ScreenGui.spinarm.BorderSizePixel = 3
  5491. ScreenGui.spinarm.Position = UDim2.new(0.0961538479, 0, 0.297441632, 0)
  5492. ScreenGui.spinarm.Size = UDim2.new(0, 60, 0, 25)
  5493. ScreenGui.spinarm.Font = Enum.Font.Gotham
  5494. ScreenGui.spinarm.Text = "Armspin"
  5495. ScreenGui.spinarm.TextColor3 = Color3.fromRGB(255, 255, 255)
  5496. ScreenGui.spinarm.TextScaled = true
  5497. ScreenGui.spinarm.TextSize = 18.000
  5498. ScreenGui.spinarm.TextWrapped = true
  5499. ScreenGui.spinarm.MouseButton1Down:connect(function()
  5500. game:GetService'Players':Chat((":armspin"))
  5501. end)
  5502.  
  5503. ScreenGui.headraise.Name = "headraise"
  5504. ScreenGui.headraise.Parent = ScreenGui.animationtab
  5505. ScreenGui.headraise.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5506. ScreenGui.headraise.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5507. ScreenGui.headraise.BorderSizePixel = 3
  5508. ScreenGui.headraise.Position = UDim2.new(0.544871807, 0, 0.447047949, 0)
  5509. ScreenGui.headraise.Size = UDim2.new(0, 55, 0, 25)
  5510. ScreenGui.headraise.Font = Enum.Font.Gotham
  5511. ScreenGui.headraise.Text = "Headraise"
  5512. ScreenGui.headraise.TextColor3 = Color3.fromRGB(255, 255, 255)
  5513. ScreenGui.headraise.TextScaled = true
  5514. ScreenGui.headraise.TextSize = 18.000
  5515. ScreenGui.headraise.TextWrapped = true
  5516. ScreenGui.headraise.MouseButton1Down:connect(function()
  5517. game:GetService'Players':Chat((":headraise"))
  5518. end)
  5519.  
  5520. ScreenGui.scream.Name = "scream"
  5521. ScreenGui.scream.Parent = ScreenGui.animationtab
  5522. ScreenGui.scream.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5523. ScreenGui.scream.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5524. ScreenGui.scream.BorderSizePixel = 3
  5525. ScreenGui.scream.Position = UDim2.new(0.0961538479, 0, 0.447047949, 0)
  5526. ScreenGui.scream.Size = UDim2.new(0, 60, 0, 25)
  5527. ScreenGui.scream.Font = Enum.Font.Gotham
  5528. ScreenGui.scream.Text = "Scream"
  5529. ScreenGui.scream.TextColor3 = Color3.fromRGB(255, 255, 255)
  5530. ScreenGui.scream.TextScaled = true
  5531. ScreenGui.scream.TextSize = 18.000
  5532. ScreenGui.scream.TextWrapped = true
  5533. ScreenGui.scream.MouseButton1Down:connect(function()
  5534. game:GetService'Players':Chat((":scream"))
  5535. end)
  5536.  
  5537. ScreenGui.crawl.Name = "crawl"
  5538. ScreenGui.crawl.Parent = ScreenGui.animationtab
  5539. ScreenGui.crawl.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5540. ScreenGui.crawl.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5541. ScreenGui.crawl.BorderSizePixel = 3
  5542. ScreenGui.crawl.Position = UDim2.new(0.544871807, 0, 0.600591242, 0)
  5543. ScreenGui.crawl.Size = UDim2.new(0, 55, 0, 25)
  5544. ScreenGui.crawl.Font = Enum.Font.Gotham
  5545. ScreenGui.crawl.Text = "Crawl"
  5546. ScreenGui.crawl.TextColor3 = Color3.fromRGB(255, 255, 255)
  5547. ScreenGui.crawl.TextScaled = true
  5548. ScreenGui.crawl.TextSize = 18.000
  5549. ScreenGui.crawl.TextWrapped = true
  5550. ScreenGui.crawl.MouseButton1Down:connect(function()
  5551. game:GetService'Players':Chat((":crawl"))
  5552. end)
  5553.  
  5554. ScreenGui.dab.Name = "dab"
  5555. ScreenGui.dab.Parent = ScreenGui.animationtab
  5556. ScreenGui.dab.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5557. ScreenGui.dab.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5558. ScreenGui.dab.BorderSizePixel = 3
  5559. ScreenGui.dab.Position = UDim2.new(0.0961538479, 0, 0.600591242, 0)
  5560. ScreenGui.dab.Size = UDim2.new(0, 60, 0, 25)
  5561. ScreenGui.dab.Font = Enum.Font.Gotham
  5562. ScreenGui.dab.Text = "Dab"
  5563. ScreenGui.dab.TextColor3 = Color3.fromRGB(255, 255, 255)
  5564. ScreenGui.dab.TextScaled = true
  5565. ScreenGui.dab.TextSize = 18.000
  5566. ScreenGui.dab.TextWrapped = true
  5567. ScreenGui.dab.MouseButton1Down:connect(function()
  5568. game:GetService'Players':Chat((":dab"))
  5569. end)
  5570.  
  5571. ScreenGui.dance.Name = "dance"
  5572. ScreenGui.dance.Parent = ScreenGui.animationtab
  5573. ScreenGui.dance.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5574. ScreenGui.dance.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5575. ScreenGui.dance.BorderSizePixel = 3
  5576. ScreenGui.dance.Position = UDim2.new(0.544871807, 0, 0.742323518, 0)
  5577. ScreenGui.dance.Size = UDim2.new(0, 55, 0, 25)
  5578. ScreenGui.dance.Font = Enum.Font.Gotham
  5579. ScreenGui.dance.Text = "Dance"
  5580. ScreenGui.dance.TextColor3 = Color3.fromRGB(255, 255, 255)
  5581. ScreenGui.dance.TextScaled = true
  5582. ScreenGui.dance.TextSize = 18.000
  5583. ScreenGui.dance.TextWrapped = true
  5584. ScreenGui.dance.MouseButton1Down:connect(function()
  5585. game:GetService'Players':Chat((":dance"))
  5586. end)
  5587.  
  5588. ScreenGui.crouch.Name = "crouch"
  5589. ScreenGui.crouch.Parent = ScreenGui.animationtab
  5590. ScreenGui.crouch.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5591. ScreenGui.crouch.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5592. ScreenGui.crouch.BorderSizePixel = 3
  5593. ScreenGui.crouch.Position = UDim2.new(0.12820515, 0, 0.742323518, 0)
  5594. ScreenGui.crouch.Size = UDim2.new(0, 55, 0, 25)
  5595. ScreenGui.crouch.Font = Enum.Font.Gotham
  5596. ScreenGui.crouch.Text = "Crouch"
  5597. ScreenGui.crouch.TextColor3 = Color3.fromRGB(255, 255, 255)
  5598. ScreenGui.crouch.TextScaled = true
  5599. ScreenGui.crouch.TextSize = 18.000
  5600. ScreenGui.crouch.TextWrapped = true
  5601. ScreenGui.crouch.MouseButton1Down:connect(function()
  5602. game:GetService'Players':Chat((":crouch"))
  5603. end)
  5604.  
  5605. ScreenGui.whitelisttab.Name = "whitelisttab"
  5606. ScreenGui.whitelisttab.Parent = ScreenGui.tabholder
  5607. ScreenGui.whitelisttab.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  5608. ScreenGui.whitelisttab.BackgroundTransparency = 1.000
  5609. ScreenGui.whitelisttab.Size = UDim2.new(0, 156, 0, 254)
  5610. ScreenGui.whitelisttab.Visible = false
  5611.  
  5612. ScreenGui.title_11.Name = "title"
  5613. ScreenGui.title_11.Parent = ScreenGui.whitelisttab
  5614. ScreenGui.title_11.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  5615. ScreenGui.title_11.BackgroundTransparency = 1.000
  5616. ScreenGui.title_11.BorderSizePixel = 0
  5617. ScreenGui.title_11.Position = UDim2.new(0.256000012, 0, 0, 5)
  5618. ScreenGui.title_11.Size = UDim2.new(0, 75, 0, 22)
  5619. ScreenGui.title_11.Font = Enum.Font.Gotham
  5620. ScreenGui.title_11.Text = "Whitelist"
  5621. ScreenGui.title_11.TextColor3 = Color3.fromRGB(255, 255, 255)
  5622. ScreenGui.title_11.TextSize = 16.000
  5623. ScreenGui.title_11.TextWrapped = true
  5624.  
  5625. ScreenGui.line_10.Name = "line"
  5626. ScreenGui.line_10.Parent = ScreenGui.whitelisttab
  5627. ScreenGui.line_10.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  5628. ScreenGui.line_10.BorderSizePixel = 0
  5629. ScreenGui.line_10.Position = UDim2.new(0.0897435844, 0, 0.106299214, 0)
  5630. ScreenGui.line_10.Size = UDim2.new(0, 125, 0, 1)
  5631. ScreenGui.line_10.Font = Enum.Font.SourceSans
  5632. ScreenGui.line_10.Text = ""
  5633. ScreenGui.line_10.TextColor3 = Color3.fromRGB(0, 0, 0)
  5634. ScreenGui.line_10.TextSize = 14.000
  5635.  
  5636. ScreenGui.namehere.Name = "namehere"
  5637. ScreenGui.namehere.Parent = ScreenGui.whitelisttab
  5638. ScreenGui.namehere.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  5639. ScreenGui.namehere.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5640. ScreenGui.namehere.BorderSizePixel = 3
  5641. ScreenGui.namehere.Position = UDim2.new(0.0897435918, 0, 0.395669281, 0)
  5642. ScreenGui.namehere.Size = UDim2.new(0, 125, 0, 25)
  5643. ScreenGui.namehere.Font = Enum.Font.Gotham
  5644. ScreenGui.namehere.PlaceholderColor3 = Color3.fromRGB(255, 255, 255)
  5645. ScreenGui.namehere.PlaceholderText = "Player Name Here"
  5646. ScreenGui.namehere.Text = ""
  5647. ScreenGui.namehere.TextColor3 = Color3.fromRGB(255, 255, 255)
  5648. ScreenGui.namehere.TextScaled = true
  5649. ScreenGui.namehere.TextSize = 14.000
  5650. ScreenGui.namehere.TextWrapped = true
  5651.  
  5652. ScreenGui.wlhelp.Name = "wlhelp"
  5653. ScreenGui.wlhelp.Parent = ScreenGui.whitelisttab
  5654. ScreenGui.wlhelp.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  5655. ScreenGui.wlhelp.BackgroundTransparency = 1.000
  5656. ScreenGui.wlhelp.BorderSizePixel = 0
  5657. ScreenGui.wlhelp.Position = UDim2.new(0.114974394, 0, 0.165354326, 5)
  5658. ScreenGui.wlhelp.Size = UDim2.new(0, 116, 0, 43)
  5659. ScreenGui.wlhelp.Font = Enum.Font.Gotham
  5660. ScreenGui.wlhelp.Text = "To whitelist type in a players name"
  5661. ScreenGui.wlhelp.TextColor3 = Color3.fromRGB(255, 255, 255)
  5662. ScreenGui.wlhelp.TextScaled = true
  5663. ScreenGui.wlhelp.TextSize = 16.000
  5664. ScreenGui.wlhelp.TextWrapped = true
  5665.  
  5666. ScreenGui.wlstart.Name = "wlstart"
  5667. ScreenGui.wlstart.Parent = ScreenGui.whitelisttab
  5668. ScreenGui.wlstart.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5669. ScreenGui.wlstart.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5670. ScreenGui.wlstart.BorderSizePixel = 3
  5671. ScreenGui.wlstart.Position = UDim2.new(0.0897435993, 0, 0.604528248, 0)
  5672. ScreenGui.wlstart.Size = UDim2.new(0, 50, 0, 25)
  5673. ScreenGui.wlstart.Font = Enum.Font.Gotham
  5674. ScreenGui.wlstart.Text = "Whitelist"
  5675. ScreenGui.wlstart.TextColor3 = Color3.fromRGB(255, 255, 255)
  5676. ScreenGui.wlstart.TextScaled = true
  5677. ScreenGui.wlstart.TextSize = 18.000
  5678. ScreenGui.wlstart.TextWrapped = true
  5679. ScreenGui.wlstart.MouseButton1Down:connect(function()
  5680. if wluser == nil then
  5681. wluser = ScreenGui.namehere.Text
  5682. whitelist(msg)
  5683. else
  5684. system("[System]: "..wluser.." is already whitelisted!")
  5685. wait(1)
  5686. system("[System]: You can only whitelist one person at a time!")
  5687. end
  5688. end)
  5689.  
  5690. ScreenGui.wlstop.Name = "wlstop"
  5691. ScreenGui.wlstop.Parent = ScreenGui.whitelisttab
  5692. ScreenGui.wlstop.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5693. ScreenGui.wlstop.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5694. ScreenGui.wlstop.BorderSizePixel = 3
  5695. ScreenGui.wlstop.Position = UDim2.new(0.570512831, 0, 0.604528189, 0)
  5696. ScreenGui.wlstop.Size = UDim2.new(0, 50, 0, 25)
  5697. ScreenGui.wlstop.Font = Enum.Font.Gotham
  5698. ScreenGui.wlstop.Text = "Unwhitelist"
  5699. ScreenGui.wlstop.TextColor3 = Color3.fromRGB(255, 255, 255)
  5700. ScreenGui.wlstop.TextScaled = true
  5701. ScreenGui.wlstop.TextSize = 18.000
  5702. ScreenGui.wlstop.TextWrapped = true
  5703. ScreenGui.wlstop.MouseButton1Down:connect(function()
  5704. if wluser ~= nil then
  5705. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(wluser .. " is no longer Whitelisted!", "All")
  5706. system("[System]: "..wluser.." is no longer whitelisted!")
  5707. wluser = nil
  5708. end
  5709. end)
  5710.  
  5711. ScreenGui.wlcmds.Name = "wlcmds"
  5712. ScreenGui.wlcmds.Parent = ScreenGui.whitelisttab
  5713. ScreenGui.wlcmds.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5714. ScreenGui.wlcmds.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5715. ScreenGui.wlcmds.BorderSizePixel = 3
  5716. ScreenGui.wlcmds.Position = UDim2.new(0.114974387, 0, 0.817126632, 0)
  5717. ScreenGui.wlcmds.Size = UDim2.new(0, 116, 0, 25)
  5718. ScreenGui.wlcmds.Font = Enum.Font.Gotham
  5719. ScreenGui.wlcmds.Text = "Whitelist Commands"
  5720. ScreenGui.wlcmds.TextColor3 = Color3.fromRGB(255, 255, 255)
  5721. ScreenGui.wlcmds.TextScaled = true
  5722. ScreenGui.wlcmds.TextSize = 18.000
  5723. ScreenGui.wlcmds.TextWrapped = true
  5724. ScreenGui.wlcmds.MouseButton1Down:connect(function()
  5725. ScreenGui.wlcmdtab.Visible = not ScreenGui.wlcmdtab.Visible
  5726. end)
  5727.  
  5728. ScreenGui.serverprotecttab.Name = "serverprotecttab"
  5729. ScreenGui.serverprotecttab.Parent = ScreenGui.tabholder
  5730. ScreenGui.serverprotecttab.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  5731. ScreenGui.serverprotecttab.BackgroundTransparency = 1.000
  5732. ScreenGui.serverprotecttab.Size = UDim2.new(0, 156, 0, 254)
  5733. ScreenGui.serverprotecttab.Visible = false
  5734.  
  5735. ScreenGui.title_12.Name = "title"
  5736. ScreenGui.title_12.Parent = ScreenGui.serverprotecttab
  5737. ScreenGui.title_12.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  5738. ScreenGui.title_12.BackgroundTransparency = 1.000
  5739. ScreenGui.title_12.BorderSizePixel = 0
  5740. ScreenGui.title_12.Position = UDim2.new(0.256000012, 0, 0, 5)
  5741. ScreenGui.title_12.Size = UDim2.new(0, 75, 0, 22)
  5742. ScreenGui.title_12.Font = Enum.Font.Gotham
  5743. ScreenGui.title_12.Text = "Server Protection"
  5744. ScreenGui.title_12.TextColor3 = Color3.fromRGB(255, 255, 255)
  5745. ScreenGui.title_12.TextScaled = true
  5746. ScreenGui.title_12.TextSize = 16.000
  5747. ScreenGui.title_12.TextWrapped = true
  5748.  
  5749. ScreenGui.line_11.Name = "line"
  5750. ScreenGui.line_11.Parent = ScreenGui.serverprotecttab
  5751. ScreenGui.line_11.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  5752. ScreenGui.line_11.BorderSizePixel = 0
  5753. ScreenGui.line_11.Position = UDim2.new(0.0897435844, 0, 0.106299214, 0)
  5754. ScreenGui.line_11.Size = UDim2.new(0, 125, 0, 1)
  5755. ScreenGui.line_11.Font = Enum.Font.SourceSans
  5756. ScreenGui.line_11.Text = ""
  5757. ScreenGui.line_11.TextColor3 = Color3.fromRGB(0, 0, 0)
  5758. ScreenGui.line_11.TextSize = 14.000
  5759.  
  5760. system("[System]: Welcome ".. game.Players.LocalPlayer.Name .. "!")
  5761. wait(2)
  5762. system("[System]: Thank you for using AdminJoy V2!")
  5763. wait(2)
  5764. system("[System]: Enjoy!")
  5765.  
  5766. ScreenGui.disable.Name = "disable"
  5767. ScreenGui.disable.Parent = ScreenGui.serverprotecttab
  5768. ScreenGui.disable.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5769. ScreenGui.disable.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5770. ScreenGui.disable.BorderSizePixel = 3
  5771. ScreenGui.disable.Position = UDim2.new(0.276, 0, 0.62, 0)
  5772. ScreenGui.disable.Size = UDim2.new(0, 70, 0, 25)
  5773. ScreenGui.disable.Font = Enum.Font.Gotham
  5774. ScreenGui.disable.Text = "Disable"
  5775. ScreenGui.disable.TextColor3 = Color3.fromRGB(255, 255, 255)
  5776. ScreenGui.disable.TextScaled = true
  5777. ScreenGui.disable.TextSize = 18.000
  5778. ScreenGui.disable.TextWrapped = true
  5779. ScreenGui.disable.MouseButton1Down:connect(function()
  5780. game:GetService'Players':Chat((":unanti"))
  5781. end)
  5782.  
  5783. ScreenGui.antikill.Name = "antikill"
  5784. ScreenGui.antikill.Parent = ScreenGui.serverprotecttab
  5785. ScreenGui.antikill.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5786. ScreenGui.antikill.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5787. ScreenGui.antikill.BorderSizePixel = 3
  5788. ScreenGui.antikill.Position = UDim2.new(0.0961538479, 0, 0.380118787, 0)
  5789. ScreenGui.antikill.Size = UDim2.new(0, 55, 0, 25)
  5790. ScreenGui.antikill.Font = Enum.Font.Gotham
  5791. ScreenGui.antikill.Text = "Antikill"
  5792. ScreenGui.antikill.TextColor3 = Color3.fromRGB(255, 255, 255)
  5793. ScreenGui.antikill.TextScaled = true
  5794. ScreenGui.antikill.TextSize = 18.000
  5795. ScreenGui.antikill.TextWrapped = true
  5796. ScreenGui.antikill.MouseButton1Down:connect(function()
  5797. game:GetService'Players':Chat(("!antikill"))
  5798. end)
  5799.  
  5800. ScreenGui.autoff.Name = "autoff"
  5801. ScreenGui.autoff.Parent = ScreenGui.serverprotecttab
  5802. ScreenGui.autoff.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5803. ScreenGui.autoff.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5804. ScreenGui.autoff.BorderSizePixel = 3
  5805. ScreenGui.autoff.Position = UDim2.new(0.538461566, 0, 0.380118787, 0)
  5806. ScreenGui.autoff.Size = UDim2.new(0, 55, 0, 25)
  5807. ScreenGui.autoff.Font = Enum.Font.Gotham
  5808. ScreenGui.autoff.Text = "AutoFF"
  5809. ScreenGui.autoff.TextColor3 = Color3.fromRGB(255, 255, 255)
  5810. ScreenGui.autoff.TextScaled = true
  5811. ScreenGui.autoff.TextSize = 18.000
  5812. ScreenGui.autoff.TextWrapped = true
  5813. ScreenGui.autoff.MouseButton1Down:connect(function()
  5814. game:GetService'Players':Chat(("!autoff"))
  5815. end)
  5816.  
  5817. ScreenGui.sphelp.Name = "sphelp"
  5818. ScreenGui.sphelp.Parent = ScreenGui.serverprotecttab
  5819. ScreenGui.sphelp.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  5820. ScreenGui.sphelp.BackgroundTransparency = 1.000
  5821. ScreenGui.sphelp.BorderSizePixel = 0
  5822. ScreenGui.sphelp.Position = UDim2.new(0.0961538479, 0, 0.137795269, 5)
  5823. ScreenGui.sphelp.Size = UDim2.new(0, 124, 0, 32)
  5824. ScreenGui.sphelp.Font = Enum.Font.Gotham
  5825. ScreenGui.sphelp.Text = "Enable antikill or autoff for everyone"
  5826. ScreenGui.sphelp.TextColor3 = Color3.fromRGB(255, 255, 255)
  5827. ScreenGui.sphelp.TextScaled = true
  5828. ScreenGui.sphelp.TextSize = 16.000
  5829. ScreenGui.sphelp.TextWrapped = true
  5830.  
  5831. ScreenGui.creditstab.Name = "creditstab"
  5832. ScreenGui.creditstab.Parent = ScreenGui.tabholder
  5833. ScreenGui.creditstab.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  5834. ScreenGui.creditstab.BackgroundTransparency = 1.000
  5835. ScreenGui.creditstab.Size = UDim2.new(0, 156, 0, 254)
  5836. ScreenGui.creditstab.Visible = false
  5837.  
  5838. ScreenGui.title_13.Name = "title"
  5839. ScreenGui.title_13.Parent = ScreenGui.creditstab
  5840. ScreenGui.title_13.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  5841. ScreenGui.title_13.BackgroundTransparency = 1.000
  5842. ScreenGui.title_13.BorderSizePixel = 0
  5843. ScreenGui.title_13.Position = UDim2.new(0.256000012, 0, 0, 5)
  5844. ScreenGui.title_13.Size = UDim2.new(0, 75, 0, 22)
  5845. ScreenGui.title_13.Font = Enum.Font.Gotham
  5846. ScreenGui.title_13.Text = "Credits"
  5847. ScreenGui.title_13.TextColor3 = Color3.fromRGB(255, 255, 255)
  5848. ScreenGui.title_13.TextSize = 16.000
  5849. ScreenGui.title_13.TextWrapped = true
  5850.  
  5851. ScreenGui.line_12.Name = "line"
  5852. ScreenGui.line_12.Parent = ScreenGui.creditstab
  5853. ScreenGui.line_12.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  5854. ScreenGui.line_12.BorderSizePixel = 0
  5855. ScreenGui.line_12.Position = UDim2.new(0.0897435844, 0, 0.106299214, 0)
  5856. ScreenGui.line_12.Size = UDim2.new(0, 125, 0, 1)
  5857. ScreenGui.line_12.Font = Enum.Font.SourceSans
  5858. ScreenGui.line_12.Text = ""
  5859. ScreenGui.line_12.TextColor3 = Color3.fromRGB(0, 0, 0)
  5860. ScreenGui.line_12.TextSize = 14.000
  5861.  
  5862. ScreenGui.credithelp0.Name = "credithelp0"
  5863. ScreenGui.credithelp0.Parent = ScreenGui.creditstab
  5864. ScreenGui.credithelp0.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  5865. ScreenGui.credithelp0.BackgroundTransparency = 1.000
  5866. ScreenGui.credithelp0.BorderSizePixel = 0
  5867. ScreenGui.credithelp0.Position = UDim2.new(0.0897435918, 0, 0.137795269, 5)
  5868. ScreenGui.credithelp0.Size = UDim2.new(0, 125, 0, 20)
  5869. ScreenGui.credithelp0.Font = Enum.Font.Gotham
  5870. ScreenGui.credithelp0.Text = "Script Made by:"
  5871. ScreenGui.credithelp0.TextColor3 = Color3.fromRGB(255, 255, 255)
  5872. ScreenGui.credithelp0.TextScaled = true
  5873. ScreenGui.credithelp0.TextSize = 16.000
  5874. ScreenGui.credithelp0.TextWrapped = true
  5875.  
  5876. ScreenGui.credithelp1.Name = "credithelp1"
  5877. ScreenGui.credithelp1.Parent = ScreenGui.creditstab
  5878. ScreenGui.credithelp1.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  5879. ScreenGui.credithelp1.BackgroundTransparency = 1.000
  5880. ScreenGui.credithelp1.BorderSizePixel = 0
  5881. ScreenGui.credithelp1.Position = UDim2.new(0.0961538479, 0, 0.38188976, 5)
  5882. ScreenGui.credithelp1.Size = UDim2.new(0, 125, 0, 20)
  5883. ScreenGui.credithelp1.Font = Enum.Font.Gotham
  5884. ScreenGui.credithelp1.Text = "Ex_Zviye(Roblox)"
  5885. ScreenGui.credithelp1.TextColor3 = Color3.fromRGB(255, 255, 255)
  5886. ScreenGui.credithelp1.TextScaled = true
  5887. ScreenGui.credithelp1.TextSize = 16.000
  5888. ScreenGui.credithelp1.TextWrapped = true
  5889.  
  5890. ScreenGui.credithelp2.Name = "credithelp2"
  5891. ScreenGui.credithelp2.Parent = ScreenGui.creditstab
  5892. ScreenGui.credithelp2.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  5893. ScreenGui.credithelp2.BackgroundTransparency = 1.000
  5894. ScreenGui.credithelp2.BorderSizePixel = 0
  5895. ScreenGui.credithelp2.Position = UDim2.new(0.0897435918, 0, 0.51968503, 5)
  5896. ScreenGui.credithelp2.Size = UDim2.new(0, 125, 0, 20)
  5897. ScreenGui.credithelp2.Font = Enum.Font.Gotham
  5898. ScreenGui.credithelp2.Text = "Zviye#0728(Discord)"
  5899. ScreenGui.credithelp2.TextColor3 = Color3.fromRGB(255, 255, 255)
  5900. ScreenGui.credithelp2.TextScaled = true
  5901. ScreenGui.credithelp2.TextSize = 16.000
  5902. ScreenGui.credithelp2.TextWrapped = true
  5903.  
  5904. ScreenGui.Morphtab.Name = "Morphtab"
  5905. ScreenGui.Morphtab.Parent = ScreenGui.tabholder
  5906. ScreenGui.Morphtab.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  5907. ScreenGui.Morphtab.BackgroundTransparency = 1.000
  5908. ScreenGui.Morphtab.BorderColor3 = Color3.fromRGB(27, 42, 53)
  5909. ScreenGui.Morphtab.Size = UDim2.new(0, 156, 0, 254)
  5910. ScreenGui.Morphtab.Visible = false
  5911.  
  5912. ScreenGui.title_14.Name = "title"
  5913. ScreenGui.title_14.Parent = ScreenGui.Morphtab
  5914. ScreenGui.title_14.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  5915. ScreenGui.title_14.BackgroundTransparency = 1.000
  5916. ScreenGui.title_14.BorderSizePixel = 0
  5917. ScreenGui.title_14.Position = UDim2.new(0.256000012, 0, 0, 5)
  5918. ScreenGui.title_14.Size = UDim2.new(0, 75, 0, 22)
  5919. ScreenGui.title_14.Font = Enum.Font.Gotham
  5920. ScreenGui.title_14.Text = "Morph"
  5921. ScreenGui.title_14.TextColor3 = Color3.fromRGB(255, 255, 255)
  5922. ScreenGui.title_14.TextSize = 16.000
  5923. ScreenGui.title_14.TextWrapped = true
  5924.  
  5925. ScreenGui.line_13.Name = "line"
  5926. ScreenGui.line_13.Parent = ScreenGui.Morphtab
  5927. ScreenGui.line_13.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  5928. ScreenGui.line_13.BorderSizePixel = 0
  5929. ScreenGui.line_13.Position = UDim2.new(0.0897435844, 0, 0.106299214, 0)
  5930. ScreenGui.line_13.Size = UDim2.new(0, 125, 0, 1)
  5931. ScreenGui.line_13.Font = Enum.Font.SourceSans
  5932. ScreenGui.line_13.Text = ""
  5933. ScreenGui.line_13.TextColor3 = Color3.fromRGB(0, 0, 0)
  5934. ScreenGui.line_13.TextSize = 14.000
  5935.  
  5936. ScreenGui.joy.Name = "joy"
  5937. ScreenGui.joy.Parent = ScreenGui.Morphtab
  5938. ScreenGui.joy.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5939. ScreenGui.joy.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5940. ScreenGui.joy.BorderSizePixel = 3
  5941. ScreenGui.joy.Position = UDim2.new(0.0897435918, 0, 0.15177232, 0)
  5942. ScreenGui.joy.Size = UDim2.new(0, 131, 0, 25)
  5943. ScreenGui.joy.Font = Enum.Font.Gotham
  5944. ScreenGui.joy.Text = "Joy :)"
  5945. ScreenGui.joy.TextColor3 = Color3.fromRGB(255, 255, 255)
  5946. ScreenGui.joy.TextSize = 18.000
  5947. ScreenGui.joy.TextWrapped = true
  5948. ScreenGui.joy.MouseButton1Down:connect(function()
  5949. game:GetService'Players':Chat((":Joy"))
  5950. end)
  5951.  
  5952. ScreenGui.aka.Name = "aka"
  5953. ScreenGui.aka.Parent = ScreenGui.Morphtab
  5954. ScreenGui.aka.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5955. ScreenGui.aka.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5956. ScreenGui.aka.BorderSizePixel = 3
  5957. ScreenGui.aka.Position = UDim2.new(0.0897435918, 0, 0.325000674, 0)
  5958. ScreenGui.aka.Size = UDim2.new(0, 131, 0, 25)
  5959. ScreenGui.aka.Font = Enum.Font.Gotham
  5960. ScreenGui.aka.Text = "Aka Muichiro"
  5961. ScreenGui.aka.TextColor3 = Color3.fromRGB(255, 255, 255)
  5962. ScreenGui.aka.TextSize = 18.000
  5963. ScreenGui.aka.TextWrapped = true
  5964. ScreenGui.aka.MouseButton1Down:connect(function()
  5965. game:GetService'Players':Chat((":aka"))
  5966. end)
  5967.  
  5968. ScreenGui.jester.Name = "jester"
  5969. ScreenGui.jester.Parent = ScreenGui.Morphtab
  5970. ScreenGui.jester.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5971. ScreenGui.jester.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5972. ScreenGui.jester.BorderSizePixel = 3
  5973. ScreenGui.jester.Position = UDim2.new(0.0897435918, 0, 0.494291991, 0)
  5974. ScreenGui.jester.Size = UDim2.new(0, 131, 0, 25)
  5975. ScreenGui.jester.Font = Enum.Font.Gotham
  5976. ScreenGui.jester.Text = "Jester"
  5977. ScreenGui.jester.TextColor3 = Color3.fromRGB(255, 255, 255)
  5978. ScreenGui.jester.TextSize = 18.000
  5979. ScreenGui.jester.TextWrapped = true
  5980. ScreenGui.jester.MouseButton1Down:connect(function()
  5981. game:GetService'Players':Chat((":Jester"))
  5982. end)
  5983.  
  5984. ScreenGui.raja.Name = "raja"
  5985. ScreenGui.raja.Parent = ScreenGui.Morphtab
  5986. ScreenGui.raja.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  5987. ScreenGui.raja.BorderColor3 = Color3.fromRGB(26, 26, 26)
  5988. ScreenGui.raja.BorderSizePixel = 3
  5989. ScreenGui.raja.Position = UDim2.new(0.0897435918, 0, 0.655709267, 0)
  5990. ScreenGui.raja.Size = UDim2.new(0, 131, 0, 25)
  5991. ScreenGui.raja.Font = Enum.Font.Gotham
  5992. ScreenGui.raja.Text = "Raja"
  5993. ScreenGui.raja.TextColor3 = Color3.fromRGB(255, 255, 255)
  5994. ScreenGui.raja.TextSize = 18.000
  5995. ScreenGui.raja.TextWrapped = true
  5996. ScreenGui.raja.MouseButton1Down:connect(function()
  5997. game:GetService'Players':Chat((":raja"))
  5998. end)
  5999.  
  6000. ScreenGui.darklord.Name = "darklord"
  6001. ScreenGui.darklord.Parent = ScreenGui.Morphtab
  6002. ScreenGui.darklord.BackgroundColor3 = Color3.fromRGB(9, 9, 9)
  6003. ScreenGui.darklord.BorderColor3 = Color3.fromRGB(26, 26, 26)
  6004. ScreenGui.darklord.BorderSizePixel = 3
  6005. ScreenGui.darklord.Position = UDim2.new(0.0769230798, 0, 0.817126632, 0)
  6006. ScreenGui.darklord.Size = UDim2.new(0, 131, 0, 25)
  6007. ScreenGui.darklord.Font = Enum.Font.Gotham
  6008. ScreenGui.darklord.Text = "Dark Lord"
  6009. ScreenGui.darklord.TextColor3 = Color3.fromRGB(255, 255, 255)
  6010. ScreenGui.darklord.TextSize = 18.000
  6011. ScreenGui.darklord.TextWrapped = true
  6012. ScreenGui.darklord.MouseButton1Down:connect(function()
  6013. game:GetService'Players':Chat((":Dark_Lord"))
  6014. end)
  6015.  
  6016. ScreenGui.hktab.Name = "hktab"
  6017. ScreenGui.hktab.Parent = ScreenGui.tabholder
  6018. ScreenGui.hktab.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  6019. ScreenGui.hktab.BackgroundTransparency = 1.000
  6020. ScreenGui.hktab.Size = UDim2.new(0, 156, 0, 254)
  6021. ScreenGui.hktab.Visible = false
  6022.  
  6023. ScreenGui.title_15.Name = "title"
  6024. ScreenGui.title_15.Parent = ScreenGui.hktab
  6025. ScreenGui.title_15.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  6026. ScreenGui.title_15.BackgroundTransparency = 1.000
  6027. ScreenGui.title_15.BorderSizePixel = 0
  6028. ScreenGui.title_15.Position = UDim2.new(0.256000012, 0, 0, 5)
  6029. ScreenGui.title_15.Size = UDim2.new(0, 75, 0, 22)
  6030. ScreenGui.title_15.Font = Enum.Font.Gotham
  6031. ScreenGui.title_15.Text = "Hotkeys"
  6032. ScreenGui.title_15.TextColor3 = Color3.fromRGB(255, 255, 255)
  6033. ScreenGui.title_15.TextSize = 16.000
  6034. ScreenGui.title_15.TextWrapped = true
  6035.  
  6036. ScreenGui.line_14.Name = "line"
  6037. ScreenGui.line_14.Parent = ScreenGui.hktab
  6038. ScreenGui.line_14.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  6039. ScreenGui.line_14.BorderSizePixel = 0
  6040. ScreenGui.line_14.Position = UDim2.new(0.0897435844, 0, 0.106299214, 0)
  6041. ScreenGui.line_14.Size = UDim2.new(0, 125, 0, 1)
  6042. ScreenGui.line_14.Font = Enum.Font.SourceSans
  6043. ScreenGui.line_14.Text = ""
  6044. ScreenGui.line_14.TextColor3 = Color3.fromRGB(0, 0, 0)
  6045. ScreenGui.line_14.TextSize = 14.000
  6046. own()
  6047. ScreenGui.credithelp0_2.Name = "credithelp0"
  6048. ScreenGui.credithelp0_2.Parent = ScreenGui.hktab
  6049. ScreenGui.credithelp0_2.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  6050. ScreenGui.credithelp0_2.BackgroundTransparency = 1.000
  6051. ScreenGui.credithelp0_2.BorderSizePixel = 0
  6052. ScreenGui.credithelp0_2.Position = UDim2.new(0.0897435918, 0, 0.114173226, 5)
  6053. ScreenGui.credithelp0_2.Size = UDim2.new(0, 125, 0, 210)
  6054. ScreenGui.credithelp0_2.Font = Enum.Font.Gotham
  6055. ScreenGui.credithelp0_2.Text = "Z - Fly\nX - Forcefield\nC - Reset\nV - Respawn\nB - Save Location\nN - Load Location\nM - Execute last command used\nJ - Disable/Enable Hotkey"
  6056. ScreenGui.credithelp0_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  6057. ScreenGui.credithelp0_2.TextSize = 16.000
  6058. ScreenGui.credithelp0_2.TextWrapped = true
  6059. ScreenGui.credithelp0_2.TextXAlignment = Enum.TextXAlignment.Left
  6060.  
  6061. ScreenGui.openclose.Name = "openclose"
  6062. ScreenGui.openclose.Parent = ScreenGui.main
  6063. ScreenGui.openclose.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  6064. ScreenGui.openclose.BackgroundTransparency = 1.000
  6065. ScreenGui.openclose.BorderSizePixel = 0
  6066. ScreenGui.openclose.Position = UDim2.new(0.801282048, 0, 0, 0)
  6067. ScreenGui.openclose.Size = UDim2.new(0, 31, 0, 31)
  6068. ScreenGui.openclose.Font = Enum.Font.Gotham
  6069. ScreenGui.openclose.Text = "-"
  6070. ScreenGui.openclose.TextColor3 = Color3.fromRGB(255, 255, 255)
  6071. ScreenGui.openclose.TextScaled = true
  6072. ScreenGui.openclose.TextSize = 14.000
  6073. ScreenGui.openclose.TextWrapped = true
  6074. local opencl = 0
  6075. ScreenGui.openclose.MouseButton1Down:Connect(function()
  6076. opencl = opencl + 1
  6077. if opencl == 1 then
  6078. ScreenGui.bg.BackgroundTransparency = 0
  6079. ScreenGui.page1.Visible = true
  6080. ScreenGui.tabholder.Visible = false
  6081. end
  6082. if opencl == 2 then
  6083. opencl = 0
  6084. ScreenGui.bg.BackgroundTransparency = 1
  6085. ScreenGui.page1.Visible = false
  6086. ScreenGui.page2.Visible = false
  6087. ScreenGui.page3.Visible = false
  6088. ScreenGui.tabholder.Visible = false
  6089. end
  6090. end)
  6091.  
  6092. ScreenGui.commandtab.Name = "commandtab"
  6093. ScreenGui.commandtab.Parent = ScreenGui.main
  6094. ScreenGui.commandtab.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  6095. ScreenGui.commandtab.BorderColor3 = Color3.fromRGB(35, 35, 35)
  6096. ScreenGui.commandtab.BorderSizePixel = 3
  6097. ScreenGui.commandtab.Position = UDim2.new(1.19871795, 0, 0.00701754401, 0)
  6098. ScreenGui.commandtab.Size = UDim2.new(0, 275, 0, 350)
  6099. ScreenGui.commandtab.CanvasSize = UDim2.new(0, 0, 13, 0)
  6100. ScreenGui.commandtab.ScrollBarThickness = 0
  6101. ScreenGui.commandtab.Visible = false
  6102. ScreenGui.commandtab.Active = true
  6103. ScreenGui.commandtab.Selectable = true
  6104. ScreenGui.commandtab.Draggable = true
  6105.  
  6106. ScreenGui.cmds_2.Name = "cmds"
  6107. ScreenGui.cmds_2.Parent = ScreenGui.commandtab
  6108. ScreenGui.cmds_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  6109. ScreenGui.cmds_2.BackgroundTransparency = 1.000
  6110. ScreenGui.cmds_2.Position = UDim2.new(0.0237154141, 0, 0.00128303841, 0)
  6111. ScreenGui.cmds_2.Size = UDim2.new(0, 267, 0, 3700)
  6112. ScreenGui.cmds_2.Font = Enum.Font.Gotham
  6113. ScreenGui.cmds_2.Text = "[Hot-Keys]\n\nZ - Fly\nX - Forcefield\nC - Reset\nV - Respawn\nB - Save Location\nN - Load Location\nM - Execute last command used\nJ - Disable/Enable Hotkeys\n\n[Kit Commands] [13 Kits]\n\n:kit [kit name] [player name]\n:kit god [plr] - Gives OP gear\n:kit omni [plr] - Gives more OP gear\n:kit gun [plr] - Gives guns\n:kit dark [plr] - Makes you dark\n:kit knife [plr] - Gives knives\n:kit dagger [plr] - gives daggers\n:kit bow [plr] - gives bows\n:kit crossbow [plr] - gives crossbows\n:kit magic [plr] - gives magical items\n:kit sword [plr] - Gives swords\n:kit scythe [plr] - Gives scythes\n:kit ninja [plr] - ninja equipment\n:kit potion [plr] - gives potions\n:kit troll [plr] - game ruining gear\n:kit bomb [plr] - exploding gear\n:kit flying [plr] - gives flying gear\n:kit heal [plr] - gives healing items\n\n[Teleport Commands]\n\n:spawn1 [plr] - Teleports [plr] to spawn on the Left\n:spawn2 [plr] - Teleports [plr] to spawn in the Middle\n:spawn3 [plr] - Teleports [plr] to spawn on the Right\n:house [plr] - Teleports [plr] inside the house\n:uhouse [plr] - Teleports [plr] above the house\n:obby [plr] - teleports [plr] to the end of the obby\n:pads [plr] - teleports [plr] to the admin pads\n:blocks [plr - teleports [plr] to the building blocks\n \n[Emote Commands]\n\n:hmm\n:headtoss\n:armspin\n:loophead\n:scream\n:headraise\n:dab\n:crawl\n:crouch\n:dance\n\n[Music Commands]\n:play mwd - Plays Miss Wanna Die\n\n[Morph Commands]\n\n:Dark_Lord - Turn's you into a Dark Lord\n:Aka - Makes you \n:raja - Turn into Raja\n:Jester - turns you into a Jester\n:Joy - Joy :)\n\n[Super Commands]\n\n:super[Command] - superuse any command\n\n[Spam Commands]\n\n:spam[Command] - spam any command\n:stop - stops spam, colors, and redlight command\n:wait = [Number] - Change the wait time of spam commands\n\n[Other Commands]\n\n:zawarudo - Time Stops now...\n:redlight - you've played redlight-greenlight before right?\n:greenlight - you already know what this does\n:purge - The purge will start\n:snap [plr] - Snap someone out of existence\n:ms - flood logs with a randommessage\n:regen - Reset's admin pads\n:allpads - take all admin pads\n:trap [plr] - traps a player where they are\n:random [plr] - tp's plr to random spot on baseplate\n\n\n[Local Commands]\n\n:here - Saves your current location\n:back - Teleports you back to that saved location\n:clicktp - gives you a click-teleport tool\n:sky - Teleports you in the sky with a boombox\n:ls - pulls up logs\n:rejoin - Rejoin the current game(DOESN'T WORK FOR VIP SERVERS)\n:wl - whitelist[Player] - user can use your commands[WORKING]\n:unwl - unwhitelist [Player][WORKING]\n:invertfix - Fixes inverted colors \n:removeobbykill - disable death from obby(glitchy)\n:skh - teleports you to max skydive height\n:idk - spam tp you to random location\n\n\n[Server Protection]\n\n!antikill - enables antikill for everyone(including you)\n!autoff -- enables autoff for everyone(including you)\n\n[Anti Commands]\n\n:allanti -- enable anti's\n:unanti -- disable all anti's\n:enableall -- turn on all anti's\n:disableall -- turn off all anti's\n:alldefault -- set all anti's back to default\n\n[Enable Section]\n\n:enablekill - turn on antikill\n:enablepunish - turn on antipunish\n:enableautoheal - turn on autoheal\n:enablejail - turn on antijail\n:enablemusic - turn on antimusic\n:enabledog - turn on antidog\n:enablesparkles - turn on antisparkles\n:enablesmoke - turn on antismoke\n:enableexp - turn on antiexplosion(trys to delete the effect)\n:enablespeed- turn on antispeed(trys to keep you at default speed)\n:enablefire- turn on antifire/antibonfire\n:enableswag- turn on antiswag\n:enableblind- turn on antiblind\n:enableskydive- turn on antiskydive\n:enablecrash- turn on anticrash\n:enableice- turn on antifreeze\n:enableseizure- turn on antiseizure\n:enableff- turn on antiff(no forcefield)\n:enablemsgcrash - turn on antimsgcrashing\n:enablenolight - turn on antilight from ivory light\n\n[Disable section]\n\n:disablekill - turn off antikill\n:disablepunish - turn off antipunish\n:disableautoheal - turn off autoheal\n:disablejail - turn off antijail\n:disablemusic - turn off antimusic\n:disabledog - turn off antidog\n:disablesparkles - turn off antisparkles\n:disablesmoke - turn off antismoke\n:disableexp - turn off antiexplosion\n:disablespeed- turn off antispeed\n:disablefire- turn off antifire/antibonfire\n:disableswag- turn off antiswag\n:disableblind- turn off antiblind\n:disableskydive- turn off antiskydive\n:disablecrash- turn off anticrash\n:disableice- turn off antifreeze\n:disableseizure- turn off antiseizure\n:disableff- turn off antiff\n:disablemsgcrash - turn off antimsgcrashing\n:disablenolight - turn off antilight from ivory periastron\n\n[Color Commands]\n\n:acolor - rgb spam top\n:bcolor - rgb spam bottom\n:ccolor - a combination of acolor and bcolor\n:redhell - Black & Red flash\n:rainbow - A more powerful disco\n:stop - stops the colors\n\n[Gear Commands]\n\n:g hyperlaser [plr] - Hyperlaser gun\n:g dsd [plr] - Timestop dagger\n:g cresendo [plr] - legendary cresendo\n:g rainbow [plr] - rainbow periastron\n:g ivory [plr] - white/ivory periastron\n:g azure [plr] - blue/azure periastron\n:g crimson [plr] - red/crimson periastron\n:g chartreuse [plr] - green/chartreuse periastron\n:g amethyst [plr] - purple/amethyst periastron\n:g noir [plr] - black/noir periastron\n:g grimgold [plr] - yellow-ish/grimgold periastron\n:g sledge hammer [plr] - knockback hammer\n:g carpet [plr] - rainbow carpet\n:g dual darkheart [plr] - dual black/dark swords\n:g darkheart [plr] - one black/dark sword\n:g dual illumina [plr] - dual white/illumina sword\n:g illumina [plr] - one white/illumina sword\n:g tommy gun [plr] - tommy gun\n:g m1 [plr] - M1 Garand\n:g luger pistol [plr] - pistol\n:g mauser 96 [plr] - mauser .96\n:g revolver [plr] - The General's .45\n:g jetpack [plr] - A jetpack\n:g katana [plr] - A katana\n:g chaos [plr] - a flame sword/the chaos-edge\n:g lock [plr] - jail/Portable Justice\n:g mine [plr] - The Remote mine\n:g light [plr] - The Sword of Light\n:g dark [plr] - The Sword of Darkness\n:g batsword [plr] - the batknight batsword\n:boombox [plr] - A golden boombox\n:amount = [Number] - Sets the amount of gear you'll get"
  6114. ScreenGui.cmds_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  6115. ScreenGui.cmds_2.TextSize = 14.000
  6116. ScreenGui.cmds_2.TextWrapped = true
  6117. ScreenGui.cmds_2.TextXAlignment = Enum.TextXAlignment.Left
  6118.  
  6119. ScreenGui.title_16.Name = "title"
  6120. ScreenGui.title_16.Parent = ScreenGui.commandtab
  6121. ScreenGui.title_16.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  6122. ScreenGui.title_16.BackgroundTransparency = 1.000
  6123. ScreenGui.title_16.BorderSizePixel = 0
  6124. ScreenGui.title_16.Position = UDim2.new(0.288727254, 0, 0.0047657229, 5)
  6125. ScreenGui.title_16.Size = UDim2.new(0, 115, 0, 22)
  6126. ScreenGui.title_16.Font = Enum.Font.Gotham
  6127. ScreenGui.title_16.Text = "Commands"
  6128. ScreenGui.title_16.TextColor3 = Color3.fromRGB(255, 255, 255)
  6129. ScreenGui.title_16.TextScaled = true
  6130. ScreenGui.title_16.TextSize = 18.000
  6131. ScreenGui.title_16.TextWrapped = true
  6132.  
  6133. ScreenGui.line_15.Name = "line"
  6134. ScreenGui.line_15.Parent = ScreenGui.commandtab
  6135. ScreenGui.line_15.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  6136. ScreenGui.line_15.BorderSizePixel = 0
  6137. ScreenGui.line_15.Position = UDim2.new(0.217016295, 0, 0.0143804383, 0)
  6138. ScreenGui.line_15.Size = UDim2.new(0, 155, 0, 1)
  6139. ScreenGui.line_15.Font = Enum.Font.SourceSans
  6140. ScreenGui.line_15.Text = ""
  6141. ScreenGui.line_15.TextColor3 = Color3.fromRGB(0, 0, 0)
  6142. ScreenGui.line_15.TextSize = 14.000
  6143.  
  6144. ScreenGui.cmdopenclose.Name = "cmdopenclose"
  6145. ScreenGui.cmdopenclose.Parent = ScreenGui.commandtab
  6146. ScreenGui.cmdopenclose.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  6147. ScreenGui.cmdopenclose.BackgroundTransparency = 1.000
  6148. ScreenGui.cmdopenclose.BorderSizePixel = 0
  6149. ScreenGui.cmdopenclose.Position = UDim2.new(0.884918392, 0, -0.000269905548, 0)
  6150. ScreenGui.cmdopenclose.Size = UDim2.new(0, 31, 0, 31)
  6151. ScreenGui.cmdopenclose.Font = Enum.Font.Gotham
  6152. ScreenGui.cmdopenclose.Text = "-"
  6153. ScreenGui.cmdopenclose.TextColor3 = Color3.fromRGB(255, 255, 255)
  6154. ScreenGui.cmdopenclose.TextScaled = true
  6155. ScreenGui.cmdopenclose.TextSize = 14.000
  6156. ScreenGui.cmdopenclose.TextWrapped = true
  6157. ScreenGui.cmdopenclose.MouseButton1Down:connect(function()
  6158. ScreenGui.commandtab.Visible = false
  6159. end)
  6160.  
  6161. ScreenGui.wlcmdtab.Name = "wlcmdtab"
  6162. ScreenGui.wlcmdtab.Parent = ScreenGui.main
  6163. ScreenGui.wlcmdtab.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  6164. ScreenGui.wlcmdtab.BorderColor3 = Color3.fromRGB(35, 35, 35)
  6165. ScreenGui.wlcmdtab.BorderSizePixel = 3
  6166. ScreenGui.wlcmdtab.Position = UDim2.new(3.22435904, 0, -0.00350877643, 0)
  6167. ScreenGui.wlcmdtab.Size = UDim2.new(0, 203, 0, 239)
  6168. ScreenGui.wlcmdtab.Visible = false
  6169. ScreenGui.wlcmdtab.Active = true
  6170. ScreenGui.wlcmdtab.Draggable = true
  6171.  
  6172. ScreenGui.wlcmdtabtitle.Name = "wlcmdtabtitle"
  6173. ScreenGui.wlcmdtabtitle.Parent = ScreenGui.wlcmdtab
  6174. ScreenGui.wlcmdtabtitle.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  6175. ScreenGui.wlcmdtabtitle.BackgroundTransparency = 1.000
  6176. ScreenGui.wlcmdtabtitle.BorderSizePixel = 0
  6177. ScreenGui.wlcmdtabtitle.Position = UDim2.new(0.315113306, 0, -0.00836820062, 5)
  6178. ScreenGui.wlcmdtabtitle.Size = UDim2.new(0, 75, 0, 22)
  6179. ScreenGui.wlcmdtabtitle.Font = Enum.Font.Gotham
  6180. ScreenGui.wlcmdtabtitle.Text = "Whitelist Commands"
  6181. ScreenGui.wlcmdtabtitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  6182. ScreenGui.wlcmdtabtitle.TextScaled = true
  6183. ScreenGui.wlcmdtabtitle.TextSize = 16.000
  6184. ScreenGui.wlcmdtabtitle.TextWrapped = true
  6185.  
  6186. ScreenGui.wlcmdtabline.Name = "wlcmdtabline"
  6187. ScreenGui.wlcmdtabline.Parent = ScreenGui.wlcmdtab
  6188. ScreenGui.wlcmdtabline.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  6189. ScreenGui.wlcmdtabline.BorderSizePixel = 0
  6190. ScreenGui.wlcmdtabline.Position = UDim2.new(0.188265741, 0, 0.127219722, 0)
  6191. ScreenGui.wlcmdtabline.Size = UDim2.new(0, 125, 0, 1)
  6192. ScreenGui.wlcmdtabline.Font = Enum.Font.SourceSans
  6193. ScreenGui.wlcmdtabline.Text = ""
  6194. ScreenGui.wlcmdtabline.TextColor3 = Color3.fromRGB(0, 0, 0)
  6195. ScreenGui.wlcmdtabline.TextSize = 14.000
  6196.  
  6197. ScreenGui.wlcmdtabcmdlist.Name = "wlcmdtabcmdlist"
  6198. ScreenGui.wlcmdtabcmdlist.Parent = ScreenGui.wlcmdtab
  6199. ScreenGui.wlcmdtabcmdlist.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  6200. ScreenGui.wlcmdtabcmdlist.BackgroundTransparency = 1.000
  6201. ScreenGui.wlcmdtabcmdlist.Position = UDim2.new(0.0295566507, 0, 0.15481171, 0)
  6202. ScreenGui.wlcmdtabcmdlist.Size = UDim2.new(0, 197, 0, 196)
  6203. ScreenGui.wlcmdtabcmdlist.Font = Enum.Font.Gotham
  6204. ScreenGui.wlcmdtabcmdlist.Text = "[Kit Commands]\n:kit god [plr]\n:kit omni [plr]\n:kit gun [plr]\n:kit troll [plr]\n:kit bomb [plr]\n:kit bow [plr]\n:kit sword [plr]\n\n[Teleport Commands]\n:house [plr]\n:uhouse [plr]\n:obby [plr]\n:blocks [plr]\n:pads [plr]"
  6205. ScreenGui.wlcmdtabcmdlist.TextColor3 = Color3.fromRGB(255, 255, 255)
  6206. ScreenGui.wlcmdtabcmdlist.TextScaled = true
  6207. ScreenGui.wlcmdtabcmdlist.TextSize = 14.000
  6208. ScreenGui.wlcmdtabcmdlist.TextWrapped = true
  6209. ScreenGui.wlcmdtabcmdlist.TextXAlignment = Enum.TextXAlignment.Left
  6210.  
  6211. ScreenGui.wlcmdtabclose.Name = "wlcmdtabclose"
  6212. ScreenGui.wlcmdtabclose.Parent = ScreenGui.wlcmdtab
  6213. ScreenGui.wlcmdtabclose.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  6214. ScreenGui.wlcmdtabclose.BackgroundTransparency = 1.000
  6215. ScreenGui.wlcmdtabclose.BorderSizePixel = 0
  6216. ScreenGui.wlcmdtabclose.Position = UDim2.new(0.845509529, 0, 0.00391419465, 0)
  6217. ScreenGui.wlcmdtabclose.Size = UDim2.new(0, 31, 0, 31)
  6218. ScreenGui.wlcmdtabclose.Font = Enum.Font.Gotham
  6219. ScreenGui.wlcmdtabclose.Text = "-"
  6220. ScreenGui.wlcmdtabclose.TextColor3 = Color3.fromRGB(255, 255, 255)
  6221. ScreenGui.wlcmdtabclose.TextScaled = true
  6222. ScreenGui.wlcmdtabclose.TextSize = 14.000
  6223. ScreenGui.wlcmdtabclose.TextWrapped = true
  6224. ScreenGui.wlcmdtabclose.MouseButton1Down:connect(function()
  6225. ScreenGui.wlcmdtab.Visible = false
  6226. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement