Advertisement
SuperGUYmss

Admin Joy

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