Advertisement
Guest User

Untitled

a guest
Jan 19th, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 299.51 KB | None | 0 0
  1. wait(.2)
  2. whitelist = {game.Players.LocalPlayer.Name,"friend1","friend2"} -- put admin names here
  3. banlist = {"noob","noob2"} -- put noob names here
  4. deletepath = game.Players.LocalPlayer.Character:FindFirstChild("Delete")
  5. deletepath2 = game.Players.LocalPlayer.Backpack:FindFirstChild("Delete")
  6. slock = false
  7. local noclip = false
  8. local flydab = false
  9. local disablehotkeys = false
  10.  
  11. local function death2(part)
  12. local humanoid = part.Parent:FindFirstChild("Humanoid")
  13. local epicpar = humanoid.Parent
  14. if (humanoid ~= nil and epicpar.Name ~= game.Players.LocalPlayer.Name and epicpar.Name ~= "Vortexturize") then
  15. game.ReplicatedStorage.Event:FireServer("TPD", 0.1, humanoid)
  16. end
  17. end
  18.  
  19. function notify(title,text,duration)
  20. game.StarterGui:SetCore("SendNotification", {
  21. Title = title;
  22. Text = text;
  23. Duration = duration;
  24. })
  25. end
  26.  
  27.  
  28. local function death(part)
  29. local humanoid = part.Parent:FindFirstChild("Humanoid")
  30. local epicpar = humanoid.Parent
  31. if (humanoid ~= nil and epicpar.Name ~= game.Players.LocalPlayer.Name and epicpar.Name ~= "Vortexturize") then
  32. game.ReplicatedStorage.Event:FireServer("TPD", humanoid.Health, humanoid)
  33. end
  34. end
  35.  
  36. function noclip(plr)
  37. admintag = Instance.new("BoolValue")
  38. admintag.Parent = game.Players[plr]
  39. admintag.Value = true
  40. admintag.Name = "noclip"
  41. end
  42.  
  43.  
  44. function SaySetup(plr)
  45. admintag = Instance.new("IntValue")
  46. admintag.Parent = game.Players[plr]
  47. admintag.Value = true
  48. admintag.Name = "num"
  49. end
  50.  
  51.  
  52.  
  53.  
  54. function newtag(plr)
  55. admintag = Instance.new("BoolValue")
  56. admintag.Parent = game.Players[plr]
  57. admintag.Value = true
  58. admintag.Name = "admin"
  59. print("created admin tag for " .. plr)
  60. end
  61.  
  62.  
  63.  
  64. function newsuc(plr)
  65. admintag = Instance.new("BoolValue")
  66. admintag.Parent = game.Players[plr]
  67. admintag.Value = true
  68. admintag.Name = "suc"
  69. admintag2 = Instance.new("BoolValue")
  70. admintag2.Parent = game.ReplicatedStorage
  71. admintag2.Value = true
  72. admintag2.Name = plr
  73. print("loopkilling " .. plr)
  74. end
  75.  
  76. function newdab(plr)
  77. admintag = Instance.new("BoolValue")
  78. admintag.Parent = game.Players[plr]
  79. admintag.Value = true
  80. admintag.Name = "dab"
  81. print("loopkilling " .. plr)
  82. end
  83.  
  84. function newepic(plr)
  85. admintag = Instance.new("BoolValue")
  86. admintag.Parent = game.Players[plr]
  87. admintag.Value = true
  88. admintag.Name = "epic"
  89. print("bullet proofed " .. plr)
  90. end
  91.  
  92. local LP = game.Players.LocalPlayer
  93. local Mouse = LP:GetMouse()
  94.  
  95. FLYING = false
  96. iyflyspeed = 1
  97. function sFLY() -- from rocky2u cmdscript
  98. repeat wait() until LP and LP.Character and LP.Character:FindFirstChild('HumanoidRootPart') and LP.Character:FindFirstChild('Humanoid')
  99. repeat wait() until Mouse
  100.  
  101. local T = LP.Character.HumanoidRootPart
  102. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  103. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  104. local SPEED = 0
  105.  
  106. local function FLY()
  107. FLYING = true
  108. local BG = Instance.new('BodyGyro', T)
  109. local BV = Instance.new('BodyVelocity', T)
  110. BG.P = 9e4
  111. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  112. BG.cframe = T.CFrame
  113. BV.velocity = Vector3.new(0, 0.1, 0)
  114. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  115. spawn(function()
  116. repeat wait()
  117. LP.Character.Humanoid.PlatformStand = true
  118. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  119. SPEED = 50
  120. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  121. SPEED = 0
  122. end
  123. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  124. BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (CONTROL.F + CONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(CONTROL.L + CONTROL.R, (CONTROL.F + CONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  125. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  126. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  127. BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (lCONTROL.F + lCONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(lCONTROL.L + lCONTROL.R, (lCONTROL.F + lCONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  128. else
  129. BV.velocity = Vector3.new(0, 0.1, 0)
  130. end
  131. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  132. until not FLYING
  133. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  134. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  135. SPEED = 0
  136. BG:destroy()
  137. BV:destroy()
  138. LP.Character.Humanoid.PlatformStand = false
  139. end)
  140. end
  141. Mouse.KeyDown:connect(function(KEY)
  142. if KEY:lower() == 'w' then
  143. CONTROL.F = iyflyspeed
  144. elseif KEY:lower() == 's' then
  145. CONTROL.B = -iyflyspeed
  146. elseif KEY:lower() == 'a' then
  147. CONTROL.L = -iyflyspeed
  148. elseif KEY:lower() == 'd' then
  149. CONTROL.R = iyflyspeed
  150. end
  151. end)
  152. Mouse.KeyUp:connect(function(KEY)
  153. if KEY:lower() == 'w' then
  154. CONTROL.F = 0
  155. elseif KEY:lower() == 's' then
  156. CONTROL.B = 0
  157. elseif KEY:lower() == 'a' then
  158. CONTROL.L = 0
  159. elseif KEY:lower() == 'd' then
  160. CONTROL.R = 0
  161. end
  162. end)
  163. FLY()
  164. end
  165.  
  166.  
  167. function NOFLY()
  168. FLYING = false
  169. LP.Character.Humanoid.PlatformStand = false
  170. end
  171.  
  172.  
  173.  
  174. newtag(game.Players.LocalPlayer.Name)
  175. SaySetup(game.Players.LocalPlayer.Name)
  176.  
  177. game.Players.LocalPlayer.ChildRemoved:connect(function(obj)
  178. if obj.Name == "admin" then
  179. newtag(game.Players.LocalPlayer.Name)
  180. end
  181. end)
  182.  
  183. function adminexe(plr,msg)
  184. if plr:FindFirstChild("admin") then
  185.  
  186. local lower = string.lower(msg)
  187. local len = string.len(lower)
  188.  
  189.  
  190.  
  191.  
  192. if string.find(lower,":stepkill ") then
  193. local name = string.gsub(lower,":stepkill ","")
  194. local player = nil
  195.  
  196. if name == "others" then
  197. for i,v in pairs(game.Players:GetChildren()) do
  198. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  199. game:GetService('RunService').Stepped:connect(function()
  200. game.ReplicatedStorage.Event:FireServer("TPD", 20000, v.Character.Humanoid)
  201. end)
  202. end
  203. end
  204. else
  205.  
  206. names = game.Players:GetChildren()
  207.  
  208. for i,v in pairs(names) do
  209. strlower = string.lower(v.Name)
  210. sub = string.sub(strlower,1,#name)
  211.  
  212. if name == sub then
  213. player = v
  214. if player.Name ~= game.Players.LocalPlayer.Name then
  215. game:GetService('RunService').Stepped:connect(function()
  216. game.ReplicatedStorage.Event:FireServer("TPD", 20000, player.Character.Humanoid)
  217. end)
  218. end
  219. end
  220. end
  221. end
  222. end
  223.  
  224. if string.find(lower,"/e stepkill ") then
  225. local name = string.gsub(lower,"/e stepkill ","")
  226. local player = nil
  227.  
  228. if name == "others" then
  229. for i,v in pairs(game.Players:GetChildren()) do
  230. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  231. game:GetService('RunService').Stepped:connect(function()
  232. game.ReplicatedStorage.Event:FireServer("TPD", 20000, v.Character.Humanoid)
  233. end)
  234. end
  235. end
  236. else
  237.  
  238. names = game.Players:GetChildren()
  239.  
  240. for i,v in pairs(names) do
  241. strlower = string.lower(v.Name)
  242. sub = string.sub(strlower,1,#name)
  243.  
  244. if name == sub then
  245. player = v
  246. if player.Name ~= game.Players.LocalPlayer.Name then
  247. game:GetService('RunService').Stepped:connect(function()
  248. game.ReplicatedStorage.Event:FireServer("TPD", 20000, player.Character.Humanoid)
  249. end)
  250. end
  251. end
  252. end
  253. end
  254. end
  255.  
  256.  
  257.  
  258. if string.find(lower,"/e stepkill ") then
  259. local name = string.gsub(lower,"/e stepkill ","")
  260. local player = nil
  261.  
  262. if name == "others" then
  263. for i,v in pairs(game.Players:GetChildren()) do
  264. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  265. game:GetService('RunService').Stepped:connect(function()
  266. game.ReplicatedStorage.Event:FireServer("TPD", v.Character.Humanoid.Health, v.Character.Humanoid)
  267. end)
  268. end
  269. end
  270. else
  271.  
  272. names = game.Players:GetChildren()
  273.  
  274. for i,v in pairs(names) do
  275. strlower = string.lower(v.Name)
  276. sub = string.sub(strlower,1,#name)
  277.  
  278. if name == sub then
  279. player = v
  280. if player.Name ~= game.Players.LocalPlayer.Name then
  281. game:GetService('RunService').Stepped:connect(function()
  282. game.ReplicatedStorage.Event:FireServer("TPD", player.Character.Humanoid.Health, player.Character.Humanoid)
  283. end)
  284. end
  285. end
  286. end
  287. end
  288. end
  289.  
  290.  
  291.  
  292.  
  293. if string.find(lower,"/kill ") then
  294. local name = string.gsub(lower,"/kill ","")
  295. local player = nil
  296.  
  297. if name == "others" then
  298. for i,v in pairs(game.Players:GetChildren()) do
  299. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  300. game.ReplicatedStorage.Event:FireServer("TPD", 20000, v.Character.Humanoid)
  301. end
  302. end
  303. else
  304.  
  305. names = game.Players:GetChildren()
  306.  
  307. for i,v in pairs(names) do
  308. strlower = string.lower(v.Name)
  309. sub = string.sub(strlower,1,#name)
  310.  
  311. if name == sub then
  312. player = v
  313. if player.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  314. game.ReplicatedStorage.Event:FireServer("TPD", 20000, player.Character.Humanoid)
  315. end
  316. end
  317. end
  318. end
  319. end
  320.  
  321.  
  322.  
  323. if string.find(lower,"/infkill ") then
  324. local name = string.gsub(lower,"/infkill ","")
  325. local player = nil
  326.  
  327. if name == "others" then
  328. for i,v in pairs(game.Players:GetChildren()) do
  329. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  330. for i = 1, 1000000000000000000000000000000000000 do
  331. game.ReplicatedStorage.Event:FireServer("TPD", 20000, v.Character.Humanoid)
  332. wait(0.000000000000001)
  333. end -- nice little for loop here
  334.  
  335. end
  336. end
  337. else
  338.  
  339. names = game.Players:GetChildren()
  340.  
  341. for i,v in pairs(names) do
  342. strlower = string.lower(v.Name)
  343. sub = string.sub(strlower,1,#name)
  344.  
  345. if name == sub then
  346. player = v
  347. if player.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  348. for i = 1, 1000000000000000000000000000000000000 do
  349. game.ReplicatedStorage.Event:FireServer("TPD", 20000, player.Character.Humanoid)
  350. wait(0.000000000000001)
  351. end -- nice little for loop here
  352. end
  353. end
  354. end
  355. end
  356. end
  357.  
  358. if string.find(lower,"/e infkill ") then
  359. local name = string.gsub(lower,"/e infkill ","")
  360. local player = nil
  361.  
  362. if name == "others" then
  363. for i,v in pairs(game.Players:GetChildren()) do
  364. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  365. for i = 1, 1000000000000000000000000000000000000 do
  366. game.ReplicatedStorage.Event:FireServer("TPD", 20000, v.Character.Humanoid)
  367. wait(0.000000000000001)
  368. end -- nice little for loop here
  369.  
  370. end
  371. end
  372. else
  373.  
  374. names = game.Players:GetChildren()
  375.  
  376. for i,v in pairs(names) do
  377. strlower = string.lower(v.Name)
  378. sub = string.sub(strlower,1,#name)
  379.  
  380. if name == sub then
  381. player = v
  382. if player.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  383. for i = 1, 1000000000000000000000000000000000000 do
  384. game.ReplicatedStorage.Event:FireServer("TPD", 20000, player.Character.Humanoid)
  385. wait(0.000000000000001)
  386. end -- nice little for loop here
  387. end
  388. end
  389. end
  390. end
  391. end
  392.  
  393.  
  394.  
  395. if string.find(lower,"/e :infkill ") then
  396. local name = string.gsub(lower,"/e :infkill ","")
  397. local player = nil
  398.  
  399. if name == "others" then
  400. for i,v in pairs(game.Players:GetChildren()) do
  401. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  402. for i = 1, 1000000000000000000000000000000000000 do
  403. game.ReplicatedStorage.Event:FireServer("TPD", 20000, v.Character.Humanoid)
  404. wait(0.000000000000001)
  405. end -- nice little for loop here
  406.  
  407. end
  408. end
  409. else
  410.  
  411. names = game.Players:GetChildren()
  412.  
  413. for i,v in pairs(names) do
  414. strlower = string.lower(v.Name)
  415. sub = string.sub(strlower,1,#name)
  416.  
  417. if name == sub then
  418. player = v
  419. if player.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  420. for i = 1, 1000000000000000000000000000000000000 do
  421. game.ReplicatedStorage.Event:FireServer("TPD", 20000, player.Character.Humanoid)
  422. wait(0.000000000000001)
  423. end -- nice little for loop here
  424. end
  425. end
  426. end
  427. end
  428. end
  429.  
  430.  
  431. if string.find(lower,"/tk ") then
  432. local name = string.gsub(lower,"/tk ","")
  433. local player = nil
  434. local dab = nil
  435.  
  436. if name == "others" then
  437. for i,v in pairs(game.Players:GetChildren()) do
  438. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  439. dab = v.Character.Humanoid.Health
  440. game.ReplicatedStorage.Event:FireServer("TPD", dab, v.Character.Humanoid)
  441. end
  442. end
  443. else
  444.  
  445. names = game.Players:GetChildren()
  446.  
  447. for i,v in pairs(names) do
  448. strlower = string.lower(v.Name)
  449. sub = string.sub(strlower,1,#name)
  450.  
  451. if name == sub then
  452. player = v
  453. if player.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  454. dab = v.Character.Humanoid.Health
  455. game.ReplicatedStorage.Event:FireServer("TPD", dab, player.Character.Humanoid)
  456. end
  457. end
  458. end
  459. end
  460. end
  461.  
  462.  
  463. if string.find(lower,"/e tk ") then
  464. local name = string.gsub(lower,"/e tk ","")
  465. local player = nil
  466. local dab = nil
  467.  
  468. if name == "others" then
  469. for i,v in pairs(game.Players:GetChildren()) do
  470. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  471. dab = v.Character.Humanoid.Health
  472. game.ReplicatedStorage.Event:FireServer("TPD", dab, v.Character.Humanoid)
  473. end
  474. end
  475. else
  476.  
  477. names = game.Players:GetChildren()
  478.  
  479. for i,v in pairs(names) do
  480. strlower = string.lower(v.Name)
  481. sub = string.sub(strlower,1,#name)
  482.  
  483. if name == sub then
  484. player = v
  485. if player.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  486. dab = v.Character.Humanoid.Health
  487. game.ReplicatedStorage.Event:FireServer("TPD", dab, player.Character.Humanoid)
  488. end
  489. end
  490. end
  491. end
  492. end
  493.  
  494. if string.find(lower,"/e :tk ") then
  495. local name = string.gsub(lower,"/e :tk ","")
  496. local player = nil
  497. local dab = nil
  498.  
  499. if name == "others" then
  500. for i,v in pairs(game.Players:GetChildren()) do
  501. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  502. dab = v.Character.Humanoid.Health
  503. game.ReplicatedStorage.Event:FireServer("TPD", dab, v.Character.Humanoid)
  504. end
  505. end
  506. else
  507.  
  508. names = game.Players:GetChildren()
  509.  
  510. for i,v in pairs(names) do
  511. strlower = string.lower(v.Name)
  512. sub = string.sub(strlower,1,#name)
  513.  
  514. if name == sub then
  515. player = v
  516. if player.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  517. dab = v.Character.Humanoid.Health
  518. game.ReplicatedStorage.Event:FireServer("TPD", dab, player.Character.Humanoid)
  519. end
  520. end
  521. end
  522. end
  523. end
  524.  
  525.  
  526.  
  527. if string.find(lower,"/tk2 ") then
  528. local name = string.gsub(lower,"/tk2 ","")
  529. local player = nil
  530. local dab = nil
  531.  
  532. if name == "others" then
  533. for i,v in pairs(game.Players:GetChildren()) do
  534. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  535. repeat
  536. wait(0,1)
  537. dab = v.Character.Humanoid.Health
  538. game.ReplicatedStorage.Event:FireServer("TPD", dab, v.Character.Humanoid)
  539. until v.Character.Humanoid.Health == 0
  540. end
  541. end
  542. else
  543.  
  544. names = game.Players:GetChildren()
  545.  
  546. for i,v in pairs(names) do
  547. strlower = string.lower(v.Name)
  548. sub = string.sub(strlower,1,#name)
  549.  
  550. if name == sub then
  551. player = v
  552. if player.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  553. repeat
  554. wait(0,1)
  555. dab = player.Character.Humanoid.Health
  556. game.ReplicatedStorage.Event:FireServer("TPD", dab, player.Character.Humanoid)
  557. until player.Character.Humanoid.Health == 0
  558. end
  559. end
  560. end
  561. end
  562. end
  563.  
  564.  
  565. if string.find(lower,"/e tk2 ") then
  566. local name = string.gsub(lower,"/e tk2 ","")
  567. local player = nil
  568. local dab = nil
  569.  
  570. if name == "others" then
  571. for i,v in pairs(game.Players:GetChildren()) do
  572. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  573. repeat
  574. wait(0,1)
  575. dab = v.Character.Humanoid.Health
  576. game.ReplicatedStorage.Event:FireServer("TPD", dab, v.Character.Humanoid)
  577. until v.Character.Humanoid.Health == 0
  578. end
  579. end
  580. else
  581.  
  582. names = game.Players:GetChildren()
  583.  
  584. for i,v in pairs(names) do
  585. strlower = string.lower(v.Name)
  586. sub = string.sub(strlower,1,#name)
  587.  
  588. if name == sub then
  589. player = v
  590. if player.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  591. repeat
  592. wait(0,1)
  593. dab = player.Character.Humanoid.Health
  594. game.ReplicatedStorage.Event:FireServer("TPD", dab, player.Character.Humanoid)
  595. until player.Character.Humanoid.Health == 0
  596. end
  597. end
  598. end
  599. end
  600. end
  601.  
  602.  
  603. if string.find(lower,"/e :tk2 ") then
  604. local name = string.gsub(lower,"/e :tk2 ","")
  605. local player = nil
  606. local dab = nil
  607.  
  608. if name == "others" then
  609. for i,v in pairs(game.Players:GetChildren()) do
  610. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  611. repeat
  612. wait(0,1)
  613. dab = v.Character.Humanoid.Health
  614. game.ReplicatedStorage.Event:FireServer("TPD", dab, v.Character.Humanoid)
  615. until v.Character.Humanoid.Health == 0
  616. end
  617. end
  618. else
  619.  
  620. names = game.Players:GetChildren()
  621.  
  622. for i,v in pairs(names) do
  623. strlower = string.lower(v.Name)
  624. sub = string.sub(strlower,1,#name)
  625.  
  626. if name == sub then
  627. player = v
  628. if player.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  629. repeat
  630. wait(0,1)
  631. dab = player.Character.Humanoid.Health
  632. game.ReplicatedStorage.Event:FireServer("TPD", dab, player.Character.Humanoid)
  633. until player.Character.Humanoid.Health == 0
  634. end
  635. end
  636. end
  637. end
  638. end
  639.  
  640.  
  641.  
  642.  
  643.  
  644.  
  645.  
  646.  
  647. if string.find(lower,"/e kill ") then
  648. local name = string.gsub(lower,"/e kill ","")
  649. local player = nil
  650.  
  651. if name == "others" then
  652. for i,v in pairs(game.Players:GetChildren()) do
  653. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  654. game.ReplicatedStorage.Event:FireServer("TPD", 20000, v.Character.Humanoid)
  655.  
  656. end
  657. end
  658. else
  659.  
  660. names = game.Players:GetChildren()
  661.  
  662. for i,v in pairs(names) do
  663. strlower = string.lower(v.Name)
  664. sub = string.sub(strlower,1,#name)
  665.  
  666. if name == sub then
  667. player = v
  668. if player.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  669. game.ReplicatedStorage.Event:FireServer("TPD", 20000, player.Character.Humanoid)
  670. end
  671. end
  672. end
  673. end
  674. end
  675.  
  676. if string.find(lower,"/e :kill ") then
  677. local name = string.gsub(lower,"/e :kill ","")
  678.  
  679. local player = nil
  680.  
  681. if name == "others" then
  682. for i,v in pairs(game.Players:GetChildren()) do
  683. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  684. game.ReplicatedStorage.Event:FireServer("TPD", 20000, v.Character.Humanoid)
  685. end
  686. end
  687. else
  688.  
  689. names = game.Players:GetChildren()
  690.  
  691. for i,v in pairs(names) do
  692. strlower = string.lower(v.Name)
  693. sub = string.sub(strlower,1,#name)
  694.  
  695. if name == sub then
  696. player = v
  697. if player.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  698. game.ReplicatedStorage.Event:FireServer("TPD", 20000, player.Character.Humanoid)
  699. end
  700. end
  701. end
  702. end
  703. end
  704.  
  705.  
  706.  
  707. if string.find(lower,"/view ") then
  708. local name = string.gsub(lower,"/view ","")
  709.  
  710. local player = nil
  711.  
  712. if name == "others" then
  713. for i,v in pairs(game.Players:GetChildren()) do
  714. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  715. workspace.CurrentCamera.CameraSubject = v.Character
  716. end
  717. end
  718. else
  719.  
  720. names = game.Players:GetChildren()
  721.  
  722. for i,v in pairs(names) do
  723. strlower = string.lower(v.Name)
  724. sub = string.sub(strlower,1,#name)
  725.  
  726. if name == sub then
  727. player = v
  728. if player.Name ~= game.Players.LocalPlayer.Name then
  729. workspace.CurrentCamera.CameraSubject = player.Character
  730. end
  731. end
  732. end
  733. end
  734. end
  735.  
  736.  
  737. if string.find(lower,"/e view ") then
  738. local name = string.gsub(lower,"/e view ","")
  739.  
  740. local player = nil
  741.  
  742. if name == "others" then
  743. for i,v in pairs(game.Players:GetChildren()) do
  744. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  745. workspace.CurrentCamera.CameraSubject = v.Character
  746. end
  747. end
  748. else
  749.  
  750. names = game.Players:GetChildren()
  751.  
  752. for i,v in pairs(names) do
  753. strlower = string.lower(v.Name)
  754. sub = string.sub(strlower,1,#name)
  755.  
  756. if name == sub then
  757. player = v
  758. if player.Name ~= game.Players.LocalPlayer.Name then
  759. workspace.CurrentCamera.CameraSubject = player.Character
  760. end
  761. end
  762. end
  763. end
  764. end
  765.  
  766.  
  767. if string.find(lower,"/e :view ") then
  768. local name = string.gsub(lower,"/e :view ","")
  769.  
  770. local player = nil
  771.  
  772. if name == "others" then
  773. for i,v in pairs(game.Players:GetChildren()) do
  774. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  775. workspace.CurrentCamera.CameraSubject = v.Character
  776. end
  777. end
  778. else
  779.  
  780. names = game.Players:GetChildren()
  781.  
  782. for i,v in pairs(names) do
  783. strlower = string.lower(v.Name)
  784. sub = string.sub(strlower,1,#name)
  785.  
  786. if name == sub then
  787. player = v
  788. if player.Name ~= game.Players.LocalPlayer.Name then
  789. workspace.CurrentCamera.CameraSubject = player.Character
  790. end
  791. end
  792. end
  793. end
  794. end
  795.  
  796.  
  797.  
  798.  
  799.  
  800.  
  801. if string.find(lower,"/unview ") then
  802. local name = string.gsub(lower,"/unview ","")
  803. local player = nil
  804. workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  805. end
  806.  
  807. if string.find(lower,"/unview") then
  808. local player = nil
  809. workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  810. end
  811.  
  812.  
  813. if string.find(lower,"/e unview ") then
  814. local player = nil
  815. workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  816. end
  817.  
  818. if string.find(lower,"/e unview") then
  819. local player = nil
  820. workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  821. end
  822.  
  823. if string.find(lower,"/e :unview ") then
  824. local player = nil
  825. workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  826. end
  827.  
  828. if string.find(lower,"/e :unview") then
  829. local player = nil
  830. workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  831. end
  832.  
  833.  
  834.  
  835.  
  836.  
  837. if string.find(lower,"/to ") then
  838. local name = string.gsub(lower,"/to ","")
  839.  
  840. local player = nil
  841.  
  842. if name == "others" then
  843. for i,v in pairs(game.Players:GetChildren()) do
  844. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  845. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,2)
  846. end
  847. end
  848. else
  849.  
  850. names = game.Players:GetChildren()
  851.  
  852. for i,v in pairs(names) do
  853. strlower = string.lower(v.Name)
  854. sub = string.sub(strlower,1,#name)
  855.  
  856. if name == sub then
  857. player = v
  858. if player.Name ~= game.Players.LocalPlayer.Name then
  859. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = player.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,2)
  860. end
  861. end
  862. end
  863. end
  864. end
  865.  
  866.  
  867.  
  868. if string.find(lower,"/e to ") then
  869. local name = string.gsub(lower,"/e to ","")
  870.  
  871. local player = nil
  872.  
  873. if name == "others" then
  874. for i,v in pairs(game.Players:GetChildren()) do
  875. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  876. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,2)
  877. end
  878. end
  879. else
  880.  
  881. names = game.Players:GetChildren()
  882.  
  883. for i,v in pairs(names) do
  884. strlower = string.lower(v.Name)
  885. sub = string.sub(strlower,1,#name)
  886.  
  887. if name == sub then
  888. player = v
  889. if player.Name ~= game.Players.LocalPlayer.Name then
  890. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = player.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,2)
  891. end
  892. end
  893. end
  894. end
  895. end
  896.  
  897.  
  898.  
  899. if string.find(lower,"/e :goto ") then
  900. local name = string.gsub(lower,"/e :goto ","")
  901.  
  902. local player = nil
  903.  
  904. if name == "others" then
  905. for i,v in pairs(game.Players:GetChildren()) do
  906. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  907. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,2)
  908. end
  909. end
  910. else
  911.  
  912. names = game.Players:GetChildren()
  913.  
  914. for i,v in pairs(names) do
  915. strlower = string.lower(v.Name)
  916. sub = string.sub(strlower,1,#name)
  917.  
  918. if name == sub then
  919. player = v
  920. if player.Name ~= game.Players.LocalPlayer.Name then
  921. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = player.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,2)
  922. end
  923. end
  924. end
  925. end
  926. end
  927.  
  928.  
  929.  
  930.  
  931. if string.find(lower,"/ws ") then
  932. local name = string.gsub(lower,"/ws ","")
  933. local player = nil
  934. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = name
  935. end
  936.  
  937.  
  938. if string.find(lower,"/e ws ") then
  939. local name = string.gsub(lower,"/e ws ","")
  940. local player = nil
  941. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = name
  942. end
  943.  
  944.  
  945. if string.find(lower,"/e :ws ") then
  946. local name = string.gsub(lower,"/e :ws ","")
  947. local player = nil
  948. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = name
  949. end
  950.  
  951.  
  952.  
  953.  
  954.  
  955.  
  956. if string.find(lower,"/radio all ") then
  957. local name = string.gsub(lower,"/radio all ","")
  958. local player = nil
  959. for i,v in pairs(game.Players:GetChildren()) do
  960. game.ReplicatedStorage.Event:FireServer("PlayRadio", v, name)
  961. end
  962. end
  963.  
  964.  
  965. if string.find(lower,"/e radio all ") then
  966. local name = string.gsub(lower,"/e radio all ","")
  967. local player = nil
  968. for i,v in pairs(game.Players:GetChildren()) do
  969. game.ReplicatedStorage.Event:FireServer("PlayRadio", v, name)
  970. end
  971. end
  972.  
  973.  
  974. if string.find(lower,"/e :playall ") then
  975. local name = string.gsub(lower,"/e :playall ","")
  976. local player = nil
  977. for i,v in pairs(game.Players:GetChildren()) do
  978. game.ReplicatedStorage.Event:FireServer("PlayRadio", v, name)
  979. end
  980. end
  981.  
  982. if string.find(lower,"/say10 ") then
  983. local name = string.gsub(lower,"/say10 ","")
  984. local player = nil
  985. game.Players:Chat(name)
  986. game.Players:Chat(name)
  987. game.Players:Chat(name)
  988. game.Players:Chat(name)
  989. game.Players:Chat(name)
  990. game.Players:Chat(name)
  991. game.Players:Chat(name)
  992. game.Players:Chat(name)
  993. game.Players:Chat(name)
  994. game.Players:Chat(name)
  995. end
  996.  
  997.  
  998.  
  999.  
  1000. if string.find(lower,"/setsay ") then
  1001. local name = string.gsub(lower,"/setsay ","")
  1002. local player = nil
  1003. game.Players.LocalPlayer.num.Value = name
  1004. end
  1005.  
  1006. if string.find(lower,"/e setsay ") then
  1007. local name = string.gsub(lower,"/e setsay ","")
  1008. local player = nil
  1009. game.Players.LocalPlayer.num.Value = name
  1010. end
  1011.  
  1012. if string.find(lower,"/e :setsay ") then
  1013. local name = string.gsub(lower,"/e :setsay ","")
  1014. local player = nil
  1015. game.Players.LocalPlayer.num.Value = name
  1016. end
  1017.  
  1018.  
  1019.  
  1020.  
  1021.  
  1022. if string.find(lower,"/say ") then
  1023. local name = string.gsub(lower,"/say ","")
  1024. local player = nil
  1025. for i = 1, game.Players.LocalPlayer.num.Value do
  1026. game.Players:Chat(name)
  1027. wait(0.000000000001)
  1028. end
  1029. end
  1030.  
  1031. if string.find(lower,"/e say ") then
  1032. local name = string.gsub(lower,"/e say ","")
  1033. local player = nil
  1034. for i = 1, game.Players.LocalPlayer.num.Value do
  1035. game.Players:Chat(name)
  1036. wait(0.000000000001)
  1037. end
  1038. end
  1039.  
  1040. if string.find(lower,"/e :say ") then
  1041. local name = string.gsub(lower,"/e :say ","")
  1042. local player = nil
  1043. for i = 1, game.Players.LocalPlayer.num.Value do
  1044. game.Players:Chat(name)
  1045. wait(0.000000000001)
  1046. end
  1047. end
  1048.  
  1049.  
  1050.  
  1051.  
  1052.  
  1053. if string.find(lower,":music gear: ") then
  1054. local name = string.gsub(lower,":music gear: ","")
  1055. local player = nil
  1056. for i,v in pairs(game.Players:GetChildren()) do
  1057. game.ReplicatedStorage.Event:FireServer("PlayRadio", v, name)
  1058. end
  1059. end
  1060.  
  1061. if string.find(lower,"/stop all") then
  1062. local player = nil
  1063. for i,v in pairs(game.Players:GetChildren()) do
  1064. game.ReplicatedStorage.Event:FireServer("StopRadio", v)
  1065. end
  1066. end
  1067.  
  1068. if string.find(lower,"/e stop all") then
  1069. local player = nil
  1070. for i,v in pairs(game.Players:GetChildren()) do
  1071. game.ReplicatedStorage.Event:FireServer("StopRadio", v)
  1072. end
  1073. end
  1074.  
  1075. if string.find(lower,"/e :stopall") then
  1076. local player = nil
  1077. for i,v in pairs(game.Players:GetChildren()) do
  1078. game.ReplicatedStorage.Event:FireServer("StopRadio", v)
  1079. end
  1080. end
  1081.  
  1082. if string.find(lower,"/stop") then
  1083. local player = nil
  1084. game.ReplicatedStorage.Event:FireServer("StopRadio", game.Players.LocalPlayer)
  1085. end
  1086.  
  1087. if string.find(lower,"/e stop") then
  1088. local player = nil
  1089. game.ReplicatedStorage.Event:FireServer("StopRadio", game.Players.LocalPlayer)
  1090. end
  1091. if string.find(lower,"/e :stop me") then
  1092. local player = nil
  1093. game.ReplicatedStorage.Event:FireServer("StopRadio", game.Players.LocalPlayer)
  1094. end
  1095.  
  1096. if string.find(lower,"/play me ") then
  1097. local name = string.gsub(lower,"/play me ","")
  1098. local player = nil
  1099.  
  1100. game.ReplicatedStorage.Event:FireServer("PlayRadio", game.Players.LocalPlayer, name)
  1101.  
  1102. end
  1103.  
  1104.  
  1105.  
  1106. if string.find(lower,"/radio ") then
  1107. local name = string.gsub(lower,"/radio ","")
  1108. local player = nil
  1109.  
  1110. game.ReplicatedStorage.Event:FireServer("PlayRadio", game.Players.LocalPlayer, name)
  1111.  
  1112. end
  1113.  
  1114.  
  1115.  
  1116. if string.find(lower,"/e radio ") then
  1117. local name = string.gsub(lower,"/e radio ","")
  1118. local player = nil
  1119.  
  1120. game.ReplicatedStorage.Event:FireServer("PlayRadio", game.Players.LocalPlayer, name)
  1121.  
  1122. end
  1123.  
  1124. if string.find(lower,"/e :playme ") then
  1125. local name = string.gsub(lower,"/e :playme ","")
  1126. local player = nil
  1127.  
  1128. game.ReplicatedStorage.Event:FireServer("PlayRadio", game.Players.LocalPlayer, name)
  1129.  
  1130. end
  1131.  
  1132. if string.find(lower,"/play ") then
  1133. local name = string.gsub(lower,"/play ","")
  1134. local player = nil
  1135.  
  1136. if name == "others" then
  1137. for i,v in pairs(game.Players:GetChildren()) do
  1138. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  1139. game.ReplicatedStorage.Event:FireServer("PlayRadio", v, game.CoreGui.IDGui.ID.Text)
  1140. end
  1141. end
  1142. else
  1143.  
  1144. names = game.Players:GetChildren()
  1145.  
  1146. for i,v in pairs(names) do
  1147. strlower = string.lower(v.Name)
  1148. sub = string.sub(strlower,1,#name)
  1149.  
  1150. if name == sub then
  1151. player = v
  1152. if player.Name ~= game.Players.LocalPlayer.Name then
  1153. game.ReplicatedStorage.Event:FireServer("PlayRadio", player, game.CoreGui.IDGui.ID.Text)
  1154. end
  1155. end
  1156. end
  1157. end
  1158. end
  1159.  
  1160.  
  1161. if string.find(lower,"/e play ") then
  1162. local name = string.gsub(lower,"/e play ","")
  1163. local player = nil
  1164.  
  1165. if name == "others" then
  1166. for i,v in pairs(game.Players:GetChildren()) do
  1167. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  1168. game.ReplicatedStorage.Event:FireServer("PlayRadio", v, game.CoreGui.IDGui.ID.Text)
  1169. end
  1170. end
  1171. else
  1172.  
  1173. names = game.Players:GetChildren()
  1174.  
  1175. for i,v in pairs(names) do
  1176. strlower = string.lower(v.Name)
  1177. sub = string.sub(strlower,1,#name)
  1178.  
  1179. if name == sub then
  1180. player = v
  1181. if player.Name ~= game.Players.LocalPlayer.Name then
  1182. game.ReplicatedStorage.Event:FireServer("PlayRadio", player, game.CoreGui.IDGui.ID.Text)
  1183. end
  1184. end
  1185. end
  1186. end
  1187. end
  1188.  
  1189.  
  1190.  
  1191.  
  1192. if string.find(lower,"/e :play ") then
  1193. local name = string.gsub(lower,"/e :play ","")
  1194. local player = nil
  1195.  
  1196. if name == "others" then
  1197. for i,v in pairs(game.Players:GetChildren()) do
  1198. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  1199. game.ReplicatedStorage.Event:FireServer("PlayRadio", v, game.CoreGui.IDGui.ID.Text)
  1200. end
  1201. end
  1202. else
  1203.  
  1204. names = game.Players:GetChildren()
  1205.  
  1206. for i,v in pairs(names) do
  1207. strlower = string.lower(v.Name)
  1208. sub = string.sub(strlower,1,#name)
  1209.  
  1210. if name == sub then
  1211. player = v
  1212. if player.Name ~= game.Players.LocalPlayer.Name then
  1213. game.ReplicatedStorage.Event:FireServer("PlayRadio", player, game.CoreGui.IDGui.ID.Text)
  1214. end
  1215. end
  1216. end
  1217. end
  1218. end
  1219.  
  1220.  
  1221.  
  1222. if string.find(lower,"/stop ") then
  1223. local name = string.gsub(lower,"/stop ","")
  1224. local player = nil
  1225.  
  1226. if name == "others" then
  1227. for i,v in pairs(game.Players:GetChildren()) do
  1228. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  1229. game.ReplicatedStorage.Event:FireServer("StopRadio", v)
  1230. end
  1231. end
  1232. else
  1233.  
  1234. names = game.Players:GetChildren()
  1235.  
  1236. for i,v in pairs(names) do
  1237. strlower = string.lower(v.Name)
  1238. sub = string.sub(strlower,1,#name)
  1239.  
  1240. if name == sub then
  1241. player = v
  1242. if player.Name ~= game.Players.LocalPlayer.Name then
  1243. game.ReplicatedStorage.Event:FireServer("StopRadio", player)
  1244. end
  1245. end
  1246. end
  1247. end
  1248. end
  1249.  
  1250.  
  1251. if string.find(lower,"/e stop ") then
  1252. local name = string.gsub(lower,"/e stop ","")
  1253. local player = nil
  1254.  
  1255. if name == "others" then
  1256. for i,v in pairs(game.Players:GetChildren()) do
  1257. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  1258. game.ReplicatedStorage.Event:FireServer("StopRadio", v)
  1259. end
  1260. end
  1261. else
  1262.  
  1263. names = game.Players:GetChildren()
  1264.  
  1265. for i,v in pairs(names) do
  1266. strlower = string.lower(v.Name)
  1267. sub = string.sub(strlower,1,#name)
  1268.  
  1269. if name == sub then
  1270. player = v
  1271. if player.Name ~= game.Players.LocalPlayer.Name then
  1272. game.ReplicatedStorage.Event:FireServer("StopRadio", player)
  1273. end
  1274. end
  1275. end
  1276. end
  1277. end
  1278.  
  1279.  
  1280. if string.find(lower,"/e :stop ") then
  1281. local name = string.gsub(lower,"/e :stop ","")
  1282. local player = nil
  1283.  
  1284. if name == "others" then
  1285. for i,v in pairs(game.Players:GetChildren()) do
  1286. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  1287. game.ReplicatedStorage.Event:FireServer("StopRadio", v)
  1288. end
  1289. end
  1290. else
  1291.  
  1292. names = game.Players:GetChildren()
  1293.  
  1294. for i,v in pairs(names) do
  1295. strlower = string.lower(v.Name)
  1296. sub = string.sub(strlower,1,#name)
  1297.  
  1298. if name == sub then
  1299. player = v
  1300. if player.Name ~= game.Players.LocalPlayer.Name then
  1301. game.ReplicatedStorage.Event:FireServer("StopRadio", player)
  1302. end
  1303. end
  1304. end
  1305. end
  1306. end
  1307.  
  1308.  
  1309.  
  1310.  
  1311.  
  1312. if string.find(lower,"/e play me ") then
  1313. local name = string.gsub(lower,"/e play me ","")
  1314. local player = nil
  1315.  
  1316. game.ReplicatedStorage.Event:FireServer("PlayRadio", game.Players.LocalPlayer, name)
  1317.  
  1318. end
  1319.  
  1320.  
  1321.  
  1322. if string.find(lower,"/e :play me ") then
  1323. local name = string.gsub(lower,"/e :play me ","")
  1324. local player = nil
  1325.  
  1326. game.ReplicatedStorage.Event:FireServer("PlayRadio", game.Players.LocalPlayer, name)
  1327.  
  1328. end
  1329.  
  1330.  
  1331.  
  1332. if string.find(lower,"/wl ") then
  1333. local name = string.gsub(lower,"/wl ","")
  1334. local player = nil
  1335. local plrname = nil
  1336.  
  1337. if name == "others" then
  1338. for i,v in pairs(game.Players:GetChildren()) do
  1339. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  1340. table.insert(whitelist,(#whitelist+1),v.Name)
  1341. newtag(v.Name)
  1342.  
  1343. v.Chatted:connect(function(msg)
  1344. adminexe(v,msg)
  1345. end)
  1346. end
  1347. end
  1348. else
  1349.  
  1350. names = game.Players:GetChildren()
  1351.  
  1352. for i,v in pairs(names) do
  1353. strlower = string.lower(v.Name)
  1354. sub = string.sub(strlower,1,#name)
  1355.  
  1356. if name == sub then
  1357. newtag(v.Name)
  1358. table.insert(whitelist,(#whitelist+1),v.Name)
  1359.  
  1360. v.Chatted:connect(function(msg)
  1361. adminexe(v,msg)
  1362. end)
  1363. end
  1364. end
  1365. end
  1366. end
  1367.  
  1368. if string.find(lower,"/unwl ") then
  1369. local name = string.gsub(lower,"/unwl ","")
  1370. local player = nil
  1371. local plrname = nil
  1372. local index = nil
  1373.  
  1374. if name == "others" then
  1375. for i,v in pairs(whitelist) do
  1376. for i,v in pairs(banlist) do
  1377. if v ~= game.Players.LocalPlayer.Name then
  1378. table.remove(whitelist,i)
  1379. end
  1380. end
  1381.  
  1382. if game.Workspace:FindFirstChild(v) then
  1383.  
  1384. if v.Name ~= game.Players.LocalPlayer.Name then
  1385. if v:FindFirstChild("admin") then
  1386. v.admin:Destroy()
  1387. end
  1388. end
  1389. end
  1390. end
  1391. else
  1392. names = whitelist
  1393.  
  1394. for i,v in pairs(names) do
  1395. strlower = string.lower(v)
  1396. sub = string.sub(strlower,1,#name)
  1397.  
  1398. if name == sub then
  1399. table.remove(whitelist,i)
  1400. end
  1401. end
  1402. end
  1403. end
  1404.  
  1405. if lower == "/wls" then
  1406. for i,v in pairs(whitelist) do
  1407. print("Player #" .. i .. " Player: " .. v)
  1408. end
  1409. end
  1410.  
  1411.  
  1412.  
  1413.  
  1414. if lower == "/whois" then
  1415.  
  1416. for i,v in pairs(game.Players:GetChildren()) do
  1417. if game.Players[v.Name].Character:FindFirstChild("Role") then
  1418. local role = game.Players[v.Name].Character:FindFirstChild("Role")
  1419. if role.Value == "Murderer" then
  1420. game.Players:Chat("The murderer is "..v.Name)
  1421. elseif role.Value == "Sheriff" then
  1422. game.Players:Chat("The sheriff is "..v.Name)
  1423. elseif role.Value == "Innocent" then
  1424. game.Workspace.FilteringEnabled = true
  1425. else
  1426. game.Workspace.FilteringEnabled = true
  1427. end
  1428. end
  1429. end
  1430.  
  1431.  
  1432.  
  1433.  
  1434.  
  1435. end
  1436.  
  1437.  
  1438.  
  1439. if lower == "/printroles" then
  1440.  
  1441. for i,v in pairs(game.Players:GetChildren()) do
  1442. if game.Players[v.Name].Character:FindFirstChild("Role") then
  1443. local role = game.Players[v.Name].Character:FindFirstChild("Role")
  1444. if role.Value == "Murderer" then
  1445. print("The murderer is "..v.Name)
  1446. elseif role.Value == "Sheriff" then
  1447. print("The sheriff is "..v.Name)
  1448. elseif role.Value == "Innocent" then
  1449. game.Workspace.FilteringEnabled = true
  1450. else
  1451. game.Workspace.FilteringEnabled = true
  1452. end
  1453. end
  1454. end
  1455.  
  1456. end
  1457.  
  1458. if lower == "/e printroles" then
  1459.  
  1460. for i,v in pairs(game.Players:GetChildren()) do
  1461. if game.Players[v.Name].Character:FindFirstChild("Role") then
  1462. local role = game.Players[v.Name].Character:FindFirstChild("Role")
  1463. if role.Value == "Murderer" then
  1464. print("The murderer is "..v.Name)
  1465. elseif role.Value == "Sheriff" then
  1466. print("The sheriff is "..v.Name)
  1467. elseif role.Value == "Innocent" then
  1468. game.Workspace.FilteringEnabled = true
  1469. else
  1470. game.Workspace.FilteringEnabled = true
  1471. end
  1472. end
  1473. end
  1474.  
  1475. end
  1476.  
  1477.  
  1478. if lower == "/e :printroles" then
  1479.  
  1480. for i,v in pairs(game.Players:GetChildren()) do
  1481. if game.Players[v.Name].Character:FindFirstChild("Role") then
  1482. local role = game.Players[v.Name].Character:FindFirstChild("Role")
  1483. if role.Value == "Murderer" then
  1484. print("The murderer is "..v.Name)
  1485. elseif role.Value == "Sheriff" then
  1486. print("The sheriff is "..v.Name)
  1487. elseif role.Value == "Innocent" then
  1488. game.Workspace.FilteringEnabled = true
  1489. else
  1490. game.Workspace.FilteringEnabled = true
  1491. end
  1492. end
  1493. end
  1494.  
  1495. end
  1496.  
  1497.  
  1498.  
  1499. if lower == "/sheriff" then
  1500.  
  1501. for i,v in pairs(game.Players:GetChildren()) do
  1502. if game.Players[v.Name].Character:FindFirstChild("Role") then
  1503. local role = game.Players[v.Name].Character:FindFirstChild("Role")
  1504. if role.Value == "Murderer" then
  1505. game.Workspace.FilteringEnabled = true
  1506. elseif role.Value == "Sheriff" then
  1507. game.Players:Chat("The sheriff is "..v.Name)
  1508. elseif role.Value == "Innocent" then
  1509. game.Workspace.FilteringEnabled = true
  1510. else
  1511. game.Workspace.FilteringEnabled = true
  1512. end
  1513. end
  1514. end
  1515.  
  1516.  
  1517. end
  1518.  
  1519. if lower == "/murderer" then
  1520.  
  1521. for i,v in pairs(game.Players:GetChildren()) do
  1522. if game.Players[v.Name].Character:FindFirstChild("Role") then
  1523. local role = game.Players[v.Name].Character:FindFirstChild("Role")
  1524. if role.Value == "Murderer" then
  1525. game.Players:Chat("The murderer is "..v.Name)
  1526. elseif role.Value == "Sheriff" then
  1527. game.Workspace.FilteringEnabled = true
  1528. elseif role.Value == "Innocent" then
  1529. game.Workspace.FilteringEnabled = true
  1530. else
  1531. game.Workspace.FilteringEnabled = true
  1532. end
  1533. end
  1534. end
  1535.  
  1536.  
  1537. end
  1538.  
  1539.  
  1540. if lower == "/roles" then
  1541.  
  1542. for i,v in pairs(game.Players:GetChildren()) do
  1543. if game.Players[v.Name].Character:FindFirstChild("Role") then
  1544. local role = game.Players[v.Name].Character:FindFirstChild("Role")
  1545. if role.Value == "Murderer" then
  1546. game.Players:Chat("The murderer is "..v.Name)
  1547. elseif role.Value == "Sheriff" then
  1548. game.Players:Chat("The sheriff is "..v.Name)
  1549. elseif role.Value == "Innocent" then
  1550. game.Workspace.FilteringEnabled = true
  1551. else
  1552. game.Workspace.FilteringEnabled = true
  1553. end
  1554. end
  1555. end
  1556.  
  1557.  
  1558. end
  1559.  
  1560.  
  1561. if lower == "/e :roles" then
  1562.  
  1563. for i,v in pairs(game.Players:GetChildren()) do
  1564. if game.Players[v.Name].Character:FindFirstChild("Role") then
  1565. local role = game.Players[v.Name].Character:FindFirstChild("Role")
  1566. if role.Value == "Murderer" then
  1567. game.Players:Chat("The murderer is "..v.Name)
  1568. elseif role.Value == "Sheriff" then
  1569. game.Players:Chat("The sheriff is "..v.Name)
  1570. elseif role.Value == "Innocent" then
  1571. game.Workspace.FilteringEnabled = true
  1572. else
  1573. game.Workspace.FilteringEnabled = true
  1574. end
  1575. end
  1576. end
  1577.  
  1578.  
  1579. end
  1580.  
  1581.  
  1582. if lower == "/kill murderer" then
  1583.  
  1584. for i,v in pairs(game.Players:GetChildren()) do
  1585. if game.Players[v.Name].Character:FindFirstChild("Role") then
  1586. local role = game.Players[v.Name].Character:FindFirstChild("Role")
  1587. if role.Value == "Murderer" then
  1588. game.ReplicatedStorage.Event:FireServer("TPD", 20000, v.Character.Humanoid)
  1589. elseif role.Value == "Sheriff" then
  1590. game.Workspace.FilteringEnabled = true
  1591. elseif role.Value == "Innocent" then
  1592. game.Workspace.FilteringEnabled = true
  1593. else
  1594. game.Workspace.FilteringEnabled = true
  1595. end
  1596. end
  1597. end
  1598.  
  1599.  
  1600. end
  1601.  
  1602. if lower == "/e :killmurderer" then
  1603.  
  1604. for i,v in pairs(game.Players:GetChildren()) do
  1605. if game.Players[v.Name].Character:FindFirstChild("Role") then
  1606. local role = game.Players[v.Name].Character:FindFirstChild("Role")
  1607. if role.Value == "Murderer" then
  1608. game.ReplicatedStorage.Event:FireServer("TPD", 20000, v.Character.Humanoid)
  1609. elseif role.Value == "Sheriff" then
  1610. game.Workspace.FilteringEnabled = true
  1611. elseif role.Value == "Innocent" then
  1612. game.Workspace.FilteringEnabled = true
  1613. else
  1614. game.Workspace.FilteringEnabled = true
  1615. end
  1616. end
  1617. end
  1618.  
  1619.  
  1620. end
  1621.  
  1622. if lower == "/e kill murderer" then
  1623.  
  1624. for i,v in pairs(game.Players:GetChildren()) do
  1625. if game.Players[v.Name].Character:FindFirstChild("Role") then
  1626. local role = game.Players[v.Name].Character:FindFirstChild("Role")
  1627. if role.Value == "Murderer" then
  1628. game.ReplicatedStorage.Event:FireServer("TPD", 20000, v.Character.Humanoid)
  1629. elseif role.Value == "Sheriff" then
  1630. game.Workspace.FilteringEnabled = true
  1631. elseif role.Value == "Innocent" then
  1632. game.Workspace.FilteringEnabled = true
  1633. else
  1634. game.Workspace.FilteringEnabled = true
  1635. end
  1636. end
  1637. end
  1638.  
  1639.  
  1640. end
  1641.  
  1642.  
  1643. if lower == "/kill sheriff" then
  1644.  
  1645. for i,v in pairs(game.Players:GetChildren()) do
  1646. if game.Players[v.Name].Character:FindFirstChild("Role") then
  1647. local role = game.Players[v.Name].Character:FindFirstChild("Role")
  1648. if role.Value == "Murderer" then
  1649. game.Workspace.FilteringEnabled = true
  1650. elseif role.Value == "Sheriff" then
  1651. game.ReplicatedStorage.Event:FireServer("TPD", 20000, v.Character.Humanoid)
  1652. elseif role.Value == "Innocent" then
  1653. game.Workspace.FilteringEnabled = true
  1654. else
  1655. game.Workspace.FilteringEnabled = true
  1656. end
  1657. end
  1658. end
  1659.  
  1660.  
  1661. end
  1662.  
  1663.  
  1664. if lower == "/e :killsheriff" then
  1665.  
  1666. for i,v in pairs(game.Players:GetChildren()) do
  1667. if game.Players[v.Name].Character:FindFirstChild("Role") then
  1668. local role = game.Players[v.Name].Character:FindFirstChild("Role")
  1669. if role.Value == "Murderer" then
  1670. game.Workspace.FilteringEnabled = true
  1671. elseif role.Value == "Sheriff" then
  1672. game.ReplicatedStorage.Event:FireServer("TPD", 20000, v.Character.Humanoid)
  1673. elseif role.Value == "Innocent" then
  1674. game.Workspace.FilteringEnabled = true
  1675. else
  1676. game.Workspace.FilteringEnabled = true
  1677. end
  1678. end
  1679. end
  1680.  
  1681.  
  1682. end
  1683.  
  1684.  
  1685. if lower == "/e kill sheriff" then
  1686.  
  1687. for i,v in pairs(game.Players:GetChildren()) do
  1688. if game.Players[v.Name].Character:FindFirstChild("Role") then
  1689. local role = game.Players[v.Name].Character:FindFirstChild("Role")
  1690. if role.Value == "Murderer" then
  1691. game.Workspace.FilteringEnabled = true
  1692. elseif role.Value == "Sheriff" then
  1693. game.ReplicatedStorage.Event:FireServer("TPD", 20000, v.Character.Humanoid)
  1694. elseif role.Value == "Innocent" then
  1695. game.Workspace.FilteringEnabled = true
  1696. else
  1697. game.Workspace.FilteringEnabled = true
  1698. end
  1699. end
  1700. end
  1701.  
  1702.  
  1703. end
  1704.  
  1705.  
  1706. if lower == "/e roles" then
  1707.  
  1708. for i,v in pairs(game.Players:GetChildren()) do
  1709. if game.Players[v.Name].Character:FindFirstChild("Role") then
  1710. local role = game.Players[v.Name].Character:FindFirstChild("Role")
  1711. if role.Value == "Murderer" then
  1712. game.Players:Chat("The murderer is "..v.Name)
  1713. elseif role.Value == "Sheriff" then
  1714. game.Players:Chat("The sheriff is "..v.Name)
  1715. elseif role.Value == "Innocent" then
  1716. game.Workspace.FilteringEnabled = true
  1717. else
  1718. game.Workspace.FilteringEnabled = true
  1719. end
  1720. end
  1721. end
  1722.  
  1723.  
  1724. end
  1725.  
  1726.  
  1727.  
  1728. if string.find(lower,"/cloak ") then
  1729. local name = string.gsub(lower,"/cloak ","")
  1730. local player = nil
  1731.  
  1732. if name == "others" then
  1733. for i,v in pairs(game.Players:GetChildren()) do
  1734. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  1735. game.ReplicatedStorage.Event:FireServer("Cloak", game.Workspace.Ignore.Players[v.Name])
  1736. end
  1737. end
  1738. else
  1739.  
  1740. names = game.Players:GetChildren()
  1741.  
  1742. for i,v in pairs(names) do
  1743. strlower = string.lower(v.Name)
  1744. sub = string.sub(strlower,1,#name)
  1745.  
  1746. if name == sub then
  1747. player = v
  1748. if player.Name ~= game.Players.LocalPlayer.Name then
  1749. game.ReplicatedStorage.Event:FireServer("Cloak", game.Workspace.Ignore.Players[player.Name])
  1750. end
  1751. end
  1752. end
  1753. end
  1754. end
  1755.  
  1756.  
  1757.  
  1758. if string.find(lower,"/e cloak ") then
  1759. local name = string.gsub(lower,"/e cloak ","")
  1760. local player = nil
  1761.  
  1762. if name == "others" then
  1763. for i,v in pairs(game.Players:GetChildren()) do
  1764. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  1765. game.ReplicatedStorage.Event:FireServer("Cloak", game.Workspace.Ignore.Players[v.Name])
  1766. end
  1767. end
  1768. else
  1769.  
  1770. names = game.Players:GetChildren()
  1771.  
  1772. for i,v in pairs(names) do
  1773. strlower = string.lower(v.Name)
  1774. sub = string.sub(strlower,1,#name)
  1775.  
  1776. if name == sub then
  1777. player = v
  1778. if player.Name ~= game.Players.LocalPlayer.Name then
  1779. game.ReplicatedStorage.Event:FireServer("Cloak", game.Workspace.Ignore.Players[player.Name])
  1780. end
  1781. end
  1782. end
  1783. end
  1784. end
  1785.  
  1786.  
  1787.  
  1788. if string.find(lower,"/e :cloak ") then
  1789. local name = string.gsub(lower,"/e :cloak ","")
  1790. local player = nil
  1791.  
  1792. if name == "others" then
  1793. for i,v in pairs(game.Players:GetChildren()) do
  1794. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  1795. game.ReplicatedStorage.Event:FireServer("Cloak", game.Workspace.Ignore.Players[v.Name])
  1796. end
  1797. end
  1798. else
  1799.  
  1800. names = game.Players:GetChildren()
  1801.  
  1802. for i,v in pairs(names) do
  1803. strlower = string.lower(v.Name)
  1804. sub = string.sub(strlower,1,#name)
  1805.  
  1806. if name == sub then
  1807. player = v
  1808. if player.Name ~= game.Players.LocalPlayer.Name then
  1809. game.ReplicatedStorage.Event:FireServer("Cloak", game.Workspace.Ignore.Players[player.Name])
  1810. end
  1811. end
  1812. end
  1813. end
  1814. end
  1815.  
  1816.  
  1817.  
  1818. if string.find(lower,"/uncloak ") then
  1819. local name = string.gsub(lower,"/uncloak ","")
  1820. local player = nil
  1821.  
  1822. if name == "others" then
  1823. for i,v in pairs(game.Players:GetChildren()) do
  1824. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  1825. game.ReplicatedStorage.Event:FireServer("UnCloak", game.Workspace.Ignore.Players[v.Name])
  1826. end
  1827. end
  1828. else
  1829.  
  1830. names = game.Players:GetChildren()
  1831.  
  1832. for i,v in pairs(names) do
  1833. strlower = string.lower(v.Name)
  1834. sub = string.sub(strlower,1,#name)
  1835.  
  1836. if name == sub then
  1837. player = v
  1838. if player.Name ~= game.Players.LocalPlayer.Name then
  1839. game.ReplicatedStorage.Event:FireServer("UnCloak", game.Workspace.Ignore.Players[player.Name])
  1840. end
  1841. end
  1842. end
  1843. end
  1844. end
  1845.  
  1846.  
  1847. if string.find(lower,"/e uncloak ") then
  1848. local name = string.gsub(lower,"/e uncloak ","")
  1849. local player = nil
  1850.  
  1851. if name == "others" then
  1852. for i,v in pairs(game.Players:GetChildren()) do
  1853. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  1854. game.ReplicatedStorage.Event:FireServer("UnCloak", game.Workspace.Ignore.Players[v.Name])
  1855. end
  1856. end
  1857. else
  1858.  
  1859. names = game.Players:GetChildren()
  1860.  
  1861. for i,v in pairs(names) do
  1862. strlower = string.lower(v.Name)
  1863. sub = string.sub(strlower,1,#name)
  1864.  
  1865. if name == sub then
  1866. player = v
  1867. if player.Name ~= game.Players.LocalPlayer.Name then
  1868. game.ReplicatedStorage.Event:FireServer("UnCloak", game.Workspace.Ignore.Players[player.Name])
  1869. end
  1870. end
  1871. end
  1872. end
  1873. end
  1874.  
  1875.  
  1876.  
  1877. if string.find(lower,"/e :uncloak ") then
  1878. local name = string.gsub(lower,"/e :uncloak ","")
  1879. local player = nil
  1880.  
  1881. if name == "others" then
  1882. for i,v in pairs(game.Players:GetChildren()) do
  1883. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  1884. game.ReplicatedStorage.Event:FireServer("UnCloak", game.Workspace.Ignore.Players[v.Name])
  1885. end
  1886. end
  1887. else
  1888.  
  1889. names = game.Players:GetChildren()
  1890.  
  1891. for i,v in pairs(names) do
  1892. strlower = string.lower(v.Name)
  1893. sub = string.sub(strlower,1,#name)
  1894.  
  1895. if name == sub then
  1896. player = v
  1897. if player.Name ~= game.Players.LocalPlayer.Name then
  1898. game.ReplicatedStorage.Event:FireServer("UnCloak", game.Workspace.Ignore.Players[player.Name])
  1899. end
  1900. end
  1901. end
  1902. end
  1903. end
  1904.  
  1905.  
  1906.  
  1907.  
  1908. if string.find(lower,"/kev ") then
  1909. local name = string.gsub(lower,"/kev ","")
  1910. local player = nil
  1911.  
  1912. if name == "others" then
  1913. for i,v in pairs(game.Players:GetChildren()) do
  1914. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  1915. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[v.Name].Humanoid)
  1916. end
  1917. end
  1918. else
  1919.  
  1920. names = game.Players:GetChildren()
  1921.  
  1922. for i,v in pairs(names) do
  1923. strlower = string.lower(v.Name)
  1924. sub = string.sub(strlower,1,#name)
  1925.  
  1926. if name == sub then
  1927. player = v
  1928. if player.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  1929. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[player.Name].Humanoid)
  1930. end
  1931. end
  1932. end
  1933. end
  1934. end
  1935.  
  1936.  
  1937.  
  1938. if string.find(lower,"/e kev ") then
  1939. local name = string.gsub(lower,"/e kev ","")
  1940. local player = nil
  1941.  
  1942. if name == "others" then
  1943. for i,v in pairs(game.Players:GetChildren()) do
  1944. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  1945. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[v.Name].Humanoid)
  1946. end
  1947. end
  1948. else
  1949.  
  1950. names = game.Players:GetChildren()
  1951.  
  1952. for i,v in pairs(names) do
  1953. strlower = string.lower(v.Name)
  1954. sub = string.sub(strlower,1,#name)
  1955.  
  1956. if name == sub then
  1957. player = v
  1958. if player.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  1959. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[player.Name].Humanoid)
  1960. end
  1961. end
  1962. end
  1963. end
  1964. end
  1965.  
  1966. if string.find(lower,"/e :kev ") then
  1967. local name = string.gsub(lower,"/e :kev ","")
  1968. local player = nil
  1969.  
  1970. if name == "others" then
  1971. for i,v in pairs(game.Players:GetChildren()) do
  1972. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  1973. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[v.Name].Humanoid)
  1974. end
  1975. end
  1976. else
  1977.  
  1978. names = game.Players:GetChildren()
  1979.  
  1980. for i,v in pairs(names) do
  1981. strlower = string.lower(v.Name)
  1982. sub = string.sub(strlower,1,#name)
  1983.  
  1984. if name == sub then
  1985. player = v
  1986. if player.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  1987. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[player.Name].Humanoid)
  1988. end
  1989. end
  1990. end
  1991. end
  1992. end
  1993.  
  1994.  
  1995.  
  1996. if string.find(lower,"/skev ") then
  1997. local name = string.gsub(lower,"/skev ","")
  1998. local player = nil
  1999.  
  2000. if name == "others" then
  2001. for i,v in pairs(game.Players:GetChildren()) do
  2002. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  2003. if v.Character.Humanoid.Health <= 100 then
  2004. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[v.Name].Humanoid)
  2005. end
  2006. end
  2007. end
  2008. else
  2009.  
  2010. names = game.Players:GetChildren()
  2011.  
  2012. for i,v in pairs(names) do
  2013. strlower = string.lower(v.Name)
  2014. sub = string.sub(strlower,1,#name)
  2015.  
  2016. if name == sub then
  2017. player = v
  2018. if player.Name ~= game.Players.LocalPlayer.Name then
  2019. if player.Character.Humanoid.Health <= 100 then
  2020. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[player.Name].Humanoid)
  2021. end
  2022. end
  2023. end
  2024. end
  2025. end
  2026. end
  2027.  
  2028.  
  2029. if string.find(lower,"/e skev ") then
  2030. local name = string.gsub(lower,"/e skev ","")
  2031. local player = nil
  2032.  
  2033. if name == "others" then
  2034. for i,v in pairs(game.Players:GetChildren()) do
  2035. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  2036. if v.Character.Humanoid.Health <= 100 then
  2037. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[v.Name].Humanoid)
  2038. end
  2039. end
  2040. end
  2041. else
  2042.  
  2043. names = game.Players:GetChildren()
  2044.  
  2045. for i,v in pairs(names) do
  2046. strlower = string.lower(v.Name)
  2047. sub = string.sub(strlower,1,#name)
  2048.  
  2049. if name == sub then
  2050. player = v
  2051. if player.Name ~= game.Players.LocalPlayer.Name then
  2052. if player.Character.Humanoid.Health <= 100 then
  2053. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[player.Name].Humanoid)
  2054. end
  2055. end
  2056. end
  2057. end
  2058. end
  2059. end
  2060.  
  2061.  
  2062. if string.find(lower,"/e :skev ") then
  2063. local name = string.gsub(lower,"/e :skev ","")
  2064. local player = nil
  2065.  
  2066. if name == "others" then
  2067. for i,v in pairs(game.Players:GetChildren()) do
  2068. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  2069. if v.Character.Humanoid.Health <= 100 then
  2070. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[v.Name].Humanoid)
  2071. end
  2072. end
  2073. end
  2074. else
  2075.  
  2076. names = game.Players:GetChildren()
  2077.  
  2078. for i,v in pairs(names) do
  2079. strlower = string.lower(v.Name)
  2080. sub = string.sub(strlower,1,#name)
  2081.  
  2082. if name == sub then
  2083. player = v
  2084. if player.Name ~= game.Players.LocalPlayer.Name then
  2085. if player.Character.Humanoid.Health <= 100 then
  2086. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[player.Name].Humanoid)
  2087. end
  2088. end
  2089. end
  2090. end
  2091. end
  2092. end
  2093.  
  2094. if string.find(lower,"/skev me") then
  2095.  
  2096. dab = game.Players.LocalPlayer.Name
  2097. if game.Players.LocalPlayer.Character.Humanoid.Health <= 100 then
  2098. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[dab].Humanoid)
  2099. end
  2100.  
  2101. end
  2102.  
  2103.  
  2104. if string.find(lower,"/e skev me") then
  2105.  
  2106. dab = game.Players.LocalPlayer.Name
  2107. if game.Players.LocalPlayer.Character.Humanoid.Health <= 100 then
  2108. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[dab].Humanoid)
  2109. end
  2110.  
  2111. end
  2112.  
  2113. if string.find(lower,"/e :skev me") then
  2114.  
  2115. dab = game.Players.LocalPlayer.Name
  2116. if game.Players.LocalPlayer.Character.Humanoid.Health <= 100 then
  2117. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[dab].Humanoid)
  2118. end
  2119.  
  2120. end
  2121.  
  2122.  
  2123. if string.find(lower,"/bulletproof ") then
  2124. local name = string.gsub(lower,":bulletproof ","")
  2125. local player = nil
  2126.  
  2127. if name == "others" then
  2128. for i,v in pairs(game.Players:GetChildren()) do
  2129. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  2130.  
  2131. if v:FindFirstChild("epic") then
  2132. v.epic:Destroy()
  2133. end
  2134.  
  2135. newepic(v.Name)
  2136. while v:FindFirstChild("epic") do
  2137. wait(0.5)
  2138. if v.Character.Humanoid.Health <= 100 then
  2139. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[v.Name].Humanoid)
  2140. else
  2141. game.Workspace.FilteringEnabled = true
  2142. end
  2143. end
  2144. end
  2145. end
  2146. else
  2147.  
  2148. names = game.Players:GetChildren()
  2149.  
  2150. for i,v in pairs(names) do
  2151. strlower = string.lower(v.Name)
  2152. sub = string.sub(strlower,1,#name)
  2153.  
  2154. if name == sub then
  2155. player = v
  2156. if player.Name ~= game.Players.LocalPlayer.Name then
  2157.  
  2158.  
  2159. if player:FindFirstChild("epic") then
  2160. player.epic:Destroy()
  2161. end
  2162.  
  2163. newepic(player.Name)
  2164. while player:FindFirstChild("epic") do
  2165. wait(0.5)
  2166. if player.Character.Humanoid.Health <= 100 then
  2167. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[player.Name].Humanoid)
  2168. else
  2169. game.Workspace.FilteringEnabled = true
  2170. end
  2171. end
  2172. end
  2173. end
  2174. end
  2175. end
  2176. end
  2177.  
  2178.  
  2179. if string.find(lower,"/e bulletproof ") then
  2180. local name = string.gsub(lower,"/e bulletproof ","")
  2181. local player = nil
  2182.  
  2183. if name == "others" then
  2184. for i,v in pairs(game.Players:GetChildren()) do
  2185. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  2186.  
  2187. if v:FindFirstChild("epic") then
  2188. v.epic:Destroy()
  2189. end
  2190.  
  2191. newepic(v.Name)
  2192. while v:FindFirstChild("epic") do
  2193. wait(0.5)
  2194. if v.Character.Humanoid.Health <= 100 then
  2195. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[v.Name].Humanoid)
  2196. else
  2197. game.Workspace.FilteringEnabled = true
  2198. end
  2199. end
  2200. end
  2201. end
  2202. else
  2203.  
  2204. names = game.Players:GetChildren()
  2205.  
  2206. for i,v in pairs(names) do
  2207. strlower = string.lower(v.Name)
  2208. sub = string.sub(strlower,1,#name)
  2209.  
  2210. if name == sub then
  2211. player = v
  2212. if player.Name ~= game.Players.LocalPlayer.Name then
  2213.  
  2214.  
  2215. if player:FindFirstChild("epic") then
  2216. player.epic:Destroy()
  2217. end
  2218.  
  2219. newepic(player.Name)
  2220. while player:FindFirstChild("epic") do
  2221. wait(0.5)
  2222. if player.Character.Humanoid.Health <= 100 then
  2223. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[player.Name].Humanoid)
  2224. else
  2225. game.Workspace.FilteringEnabled = true
  2226. end
  2227. end
  2228. end
  2229. end
  2230. end
  2231. end
  2232. end
  2233.  
  2234.  
  2235.  
  2236.  
  2237. if string.find(lower,"/e :bulletproof ") then
  2238. local name = string.gsub(lower,"/e :bulletproof ","")
  2239. local player = nil
  2240.  
  2241. if name == "others" then
  2242. for i,v in pairs(game.Players:GetChildren()) do
  2243. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  2244.  
  2245. if v:FindFirstChild("epic") then
  2246. v.epic:Destroy()
  2247. end
  2248.  
  2249. newepic(v.Name)
  2250. while v:FindFirstChild("epic") do
  2251. wait(0.5)
  2252. if v.Character.Humanoid.Health <= 100 then
  2253. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[v.Name].Humanoid)
  2254. else
  2255. game.Workspace.FilteringEnabled = true
  2256. end
  2257. end
  2258. end
  2259. end
  2260. else
  2261.  
  2262. names = game.Players:GetChildren()
  2263.  
  2264. for i,v in pairs(names) do
  2265. strlower = string.lower(v.Name)
  2266. sub = string.sub(strlower,1,#name)
  2267.  
  2268. if name == sub then
  2269. player = v
  2270. if player.Name ~= game.Players.LocalPlayer.Name then
  2271.  
  2272.  
  2273. if player:FindFirstChild("epic") then
  2274. player.epic:Destroy()
  2275. end
  2276.  
  2277. newepic(player.Name)
  2278. while player:FindFirstChild("epic") do
  2279. wait(0.5)
  2280. if player.Character.Humanoid.Health <= 100 then
  2281. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[player.Name].Humanoid)
  2282. else
  2283. game.Workspace.FilteringEnabled = true
  2284. end
  2285. end
  2286. end
  2287. end
  2288. end
  2289. end
  2290. end
  2291.  
  2292.  
  2293. if string.find(lower,"/unbulletproof ") then
  2294. local name = string.gsub(lower,":unbulletproof ","")
  2295. local player = nil
  2296.  
  2297. if name == "others" then
  2298. for i,v in pairs(game.Players:GetChildren()) do
  2299. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  2300.  
  2301. if v:FindFirstChild("epic") then
  2302. v.epic:Destroy()
  2303. end
  2304.  
  2305.  
  2306.  
  2307. end
  2308. end
  2309. else
  2310.  
  2311. names = game.Players:GetChildren()
  2312.  
  2313. for i,v in pairs(names) do
  2314. strlower = string.lower(v.Name)
  2315. sub = string.sub(strlower,1,#name)
  2316.  
  2317. if name == sub then
  2318. player = v
  2319. if player.Name ~= game.Players.LocalPlayer.Name then
  2320.  
  2321.  
  2322. if player:FindFirstChild("epic") then
  2323. player.epic:Destroy()
  2324. end
  2325.  
  2326. end
  2327. end
  2328. end
  2329. end
  2330. end
  2331.  
  2332.  
  2333.  
  2334. if string.find(lower,"/e unbulletproof ") then
  2335. local name = string.gsub(lower,"/e unbulletproof ","")
  2336. local player = nil
  2337.  
  2338. if name == "others" then
  2339. for i,v in pairs(game.Players:GetChildren()) do
  2340. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  2341.  
  2342. if v:FindFirstChild("epic") then
  2343. v.epic:Destroy()
  2344. end
  2345.  
  2346.  
  2347.  
  2348. end
  2349. end
  2350. else
  2351.  
  2352. names = game.Players:GetChildren()
  2353.  
  2354. for i,v in pairs(names) do
  2355. strlower = string.lower(v.Name)
  2356. sub = string.sub(strlower,1,#name)
  2357.  
  2358. if name == sub then
  2359. player = v
  2360. if player.Name ~= game.Players.LocalPlayer.Name then
  2361.  
  2362.  
  2363. if player:FindFirstChild("epic") then
  2364. player.epic:Destroy()
  2365. end
  2366.  
  2367. end
  2368. end
  2369. end
  2370. end
  2371. end
  2372.  
  2373.  
  2374. if string.find(lower,"/e :unbulletproof ") then
  2375. local name = string.gsub(lower,"/e :unbulletproof ","")
  2376. local player = nil
  2377.  
  2378. if name == "others" then
  2379. for i,v in pairs(game.Players:GetChildren()) do
  2380. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  2381.  
  2382. if v:FindFirstChild("epic") then
  2383. v.epic:Destroy()
  2384. end
  2385.  
  2386.  
  2387.  
  2388. end
  2389. end
  2390. else
  2391.  
  2392. names = game.Players:GetChildren()
  2393.  
  2394. for i,v in pairs(names) do
  2395. strlower = string.lower(v.Name)
  2396. sub = string.sub(strlower,1,#name)
  2397.  
  2398. if name == sub then
  2399. player = v
  2400. if player.Name ~= game.Players.LocalPlayer.Name then
  2401.  
  2402.  
  2403. if player:FindFirstChild("epic") then
  2404. player.epic:Destroy()
  2405. end
  2406.  
  2407. end
  2408. end
  2409. end
  2410. end
  2411. end
  2412.  
  2413.  
  2414.  
  2415. if string.find(lower,"/bulletproof me") then
  2416. local player = nil
  2417.  
  2418. if game.Players.LocalPlayer:FindFirstChild("epic") then
  2419. game.Players.LocalPlayer.epic:Destroy()
  2420. end
  2421.  
  2422. newepic(game.Players.LocalPlayer.Name)
  2423. while v:FindFirstChild("epic") do
  2424. wait(0.5)
  2425. if game.Players.LocalPlayer.Character.Humanoid.Health <= 100 then
  2426. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[game.Players.LocalPlayer.Name].Humanoid)
  2427. else
  2428. game.Workspace.FilteringEnabled = true
  2429. end
  2430.  
  2431. end
  2432. end
  2433.  
  2434. if string.find(lower,"/e bulletproof me") then
  2435. local player = nil
  2436.  
  2437. if game.Players.LocalPlayer:FindFirstChild("epic") then
  2438. game.Players.LocalPlayer.epic:Destroy()
  2439. end
  2440.  
  2441. newepic(game.Players.LocalPlayer.Name)
  2442. while v:FindFirstChild("epic") do
  2443. wait(0.5)
  2444. if game.Players.LocalPlayer.Character.Humanoid.Health <= 100 then
  2445. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[game.Players.LocalPlayer.Name].Humanoid)
  2446. else
  2447. game.Workspace.FilteringEnabled = true
  2448. end
  2449.  
  2450. end
  2451. end
  2452.  
  2453. if string.find(lower,"/e :bulletproof me") then
  2454. local player = nil
  2455.  
  2456. if game.Players.LocalPlayer:FindFirstChild("epic") then
  2457. game.Players.LocalPlayer.epic:Destroy()
  2458. end
  2459.  
  2460. newepic(game.Players.LocalPlayer.Name)
  2461. while v:FindFirstChild("epic") do
  2462. wait(0.5)
  2463. if game.Players.LocalPlayer.Character.Humanoid.Health <= 100 then
  2464. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[game.Players.LocalPlayer.Name].Humanoid)
  2465. else
  2466. game.Workspace.FilteringEnabled = true
  2467. end
  2468.  
  2469. end
  2470. end
  2471.  
  2472. if string.find(lower,"/unbulletproof me") then
  2473. local player = nil
  2474.  
  2475. if game.Players.LocalPlayer:FindFirstChild("epic") then
  2476. game.Players.LocalPlayer.epic:Destroy()
  2477. end
  2478.  
  2479.  
  2480.  
  2481. end
  2482.  
  2483. if string.find(lower,"/e :unbulletproof me") then
  2484. local player = nil
  2485.  
  2486. if game.Players.LocalPlayer:FindFirstChild("epic") then
  2487. game.Players.LocalPlayer.epic:Destroy()
  2488. end
  2489.  
  2490.  
  2491.  
  2492. end
  2493.  
  2494.  
  2495. if string.find(lower,"/e unbulletproof me") then
  2496. local player = nil
  2497.  
  2498. if game.Players.LocalPlayer:FindFirstChild("epic") then
  2499. game.Players.LocalPlayer.epic:Destroy()
  2500. end
  2501.  
  2502.  
  2503.  
  2504. end
  2505.  
  2506.  
  2507.  
  2508.  
  2509.  
  2510. if string.find(lower,"/cloakme") then
  2511. local player = nil
  2512.  
  2513. game.ReplicatedStorage.Event:FireServer("Cloak", game.Players.LocalPlayer.Character)
  2514.  
  2515. end
  2516.  
  2517. if string.find(lower,"/e cloakme") then
  2518. local player = nil
  2519.  
  2520. game.ReplicatedStorage.Event:FireServer("Cloak", game.Players.LocalPlayer.Character)
  2521.  
  2522. end
  2523.  
  2524. if string.find(lower,"/e :cloakme") then
  2525. local player = nil
  2526.  
  2527. game.ReplicatedStorage.Event:FireServer("Cloak", game.Players.LocalPlayer.Character)
  2528.  
  2529. end
  2530.  
  2531.  
  2532. if string.find(lower,"/kev me") then
  2533.  
  2534. dab = game.Players.LocalPlayer.Name
  2535. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[dab].Humanoid)
  2536.  
  2537. end
  2538.  
  2539. if string.find(lower,"/e kev me") then
  2540.  
  2541. dab = game.Players.LocalPlayer.Name
  2542. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[dab].Humanoid)
  2543.  
  2544.  
  2545. end
  2546.  
  2547. if string.find(lower,"/e :kev me") then
  2548.  
  2549. dab = game.Players.LocalPlayer.Name
  2550. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[dab].Humanoid)
  2551.  
  2552. end
  2553.  
  2554.  
  2555.  
  2556.  
  2557.  
  2558. if string.find(lower,"/uncloakme ") then
  2559. local name = string.gsub(lower,"/uncloakme ","")
  2560. local player = nil
  2561.  
  2562. game.ReplicatedStorage.Event:FireServer("UnCloak", game.Players.LocalPlayer.Character)
  2563.  
  2564. end
  2565.  
  2566. if string.find(lower,"/e testargs ") then
  2567. local name = string.gsub(lower,"/e testargs ","")
  2568. local dab = string.gsub(lower,"/e testargs ","","")
  2569. local player = nil
  2570.  
  2571. print(name)
  2572. print(dab)
  2573. end
  2574.  
  2575.  
  2576. if string.find(lower,"/e testargs2 ") then
  2577. local name = string.gsub(lower,"/e testargs2 ","")
  2578. local dab = string.gsub(lower,name.." ","")
  2579. local player = nil
  2580.  
  2581. print(name)
  2582. print(dab)
  2583. end
  2584.  
  2585.  
  2586. if string.find(lower,"/e testargs3 ") then
  2587. local name = string.gsub(lower,"/e testargs3 ","")
  2588. local nice = name.." "
  2589. local dab = string.gsub(lower,nice,"")
  2590. local player = nil
  2591.  
  2592. print(name)
  2593. print(dab)
  2594. end
  2595.  
  2596. if string.find(lower,"/e testargs4 ") then
  2597. local name = string.gsub(lower,"/e testargs4 "..name.." ","")
  2598. local dab = string.gsub(lower,name,"")
  2599. local player = nil
  2600.  
  2601. print(name)
  2602. print(dab)
  2603. end
  2604.  
  2605.  
  2606. if string.find(lower,"/e testargs5 ") then
  2607. local name = string.gsub(lower,"/e testargs5 ","")
  2608. local dab = string.gsub(lower,name.." ","")
  2609. local player = nil
  2610.  
  2611. print(name)
  2612. print(dab)
  2613. end
  2614.  
  2615.  
  2616. if string.find(lower,"/e testargs6 ") then
  2617. local name = string.gsub(lower,"/e testargs6 ","")
  2618. local dab = string.gsub(lower,"/e testargs6 "..name.." ","")
  2619. local player = nil
  2620.  
  2621. print(name)
  2622. print(dab)
  2623. end
  2624.  
  2625. if string.find(lower,"/e testargs7 ") then
  2626. local name = string.gsub(lower,"/e testargs7 ","")
  2627. local dab = string.gsub(lower, name, "(%w-)", "%1 %0")
  2628. local player = nil
  2629.  
  2630. print(name)
  2631. print(dab)
  2632. end
  2633.  
  2634.  
  2635. if string.find(lower,"/e testargs8 ") then
  2636. local name = string.gsub(lower,"/e testargs8 ","")
  2637. local dab = string.gsub(name, "(%w-)", "%1 %0", "")
  2638. local player = nil
  2639.  
  2640. print(name)
  2641. print(dab)
  2642. end
  2643.  
  2644.  
  2645.  
  2646.  
  2647. if string.find(lower,"/stealsong ") then
  2648. local name = string.gsub(lower,"/stealsong ","")
  2649. local player = nil
  2650.  
  2651. if name == "others" then
  2652. for i,v in pairs(game.Players:GetChildren()) do
  2653. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  2654.  
  2655. dab2 = game.Workspace.Ignore.Players[v.Name].Torso.Music.SoundId
  2656. print(dab2)
  2657.  
  2658. end
  2659. end
  2660. else
  2661.  
  2662. names = game.Players:GetChildren()
  2663.  
  2664. for i,v in pairs(names) do
  2665. strlower = string.lower(v.Name)
  2666. sub = string.sub(strlower,1,#name)
  2667.  
  2668. if name == sub then
  2669. player = v
  2670. if player.Name ~= game.Players.LocalPlayer.Name then
  2671. dab2 = game.Workspace.Ignore.Players[player.Name].Torso.Music.SoundId
  2672.  
  2673. print(dab2)
  2674. end
  2675. end
  2676. end
  2677. end
  2678. end
  2679.  
  2680. if string.find(lower,"/e :stealsong ") then
  2681. local name = string.gsub(lower,"/e :stealsong ","")
  2682. local player = nil
  2683.  
  2684. if name == "others" then
  2685. for i,v in pairs(game.Players:GetChildren()) do
  2686. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  2687.  
  2688. dab2 = game.Workspace.Ignore.Players[v.Name].Torso.Music.SoundId
  2689. print(dab2)
  2690.  
  2691. end
  2692. end
  2693. else
  2694.  
  2695. names = game.Players:GetChildren()
  2696.  
  2697. for i,v in pairs(names) do
  2698. strlower = string.lower(v.Name)
  2699. sub = string.sub(strlower,1,#name)
  2700.  
  2701. if name == sub then
  2702. player = v
  2703. if player.Name ~= game.Players.LocalPlayer.Name then
  2704. dab2 = game.Workspace.Ignore.Players[player.Name].Torso.Music.SoundId
  2705.  
  2706. print(dab2)
  2707. end
  2708. end
  2709. end
  2710. end
  2711. end
  2712.  
  2713. if string.find(lower,"/e stealsong ") then
  2714. local name = string.gsub(lower,"/e stealsong ","")
  2715. local player = nil
  2716.  
  2717. if name == "others" then
  2718. for i,v in pairs(game.Players:GetChildren()) do
  2719. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  2720.  
  2721. dab2 = game.Workspace.Ignore.Players[v.Name].Torso.Music.SoundId
  2722. print(dab2)
  2723.  
  2724. end
  2725. end
  2726. else
  2727.  
  2728. names = game.Players:GetChildren()
  2729.  
  2730. for i,v in pairs(names) do
  2731. strlower = string.lower(v.Name)
  2732. sub = string.sub(strlower,1,#name)
  2733.  
  2734. if name == sub then
  2735. player = v
  2736. if player.Name ~= game.Players.LocalPlayer.Name then
  2737. dab2 = game.Workspace.Ignore.Players[player.Name].Torso.Music.SoundId
  2738.  
  2739. print(dab2)
  2740. end
  2741. end
  2742. end
  2743. end
  2744. end
  2745.  
  2746. if string.find(lower,"/stealid ") then
  2747. local name = string.gsub(lower,"/stealid ","")
  2748. local player = nil
  2749.  
  2750. if name == "others" then
  2751. for i,v in pairs(game.Players:GetChildren()) do
  2752. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  2753.  
  2754. dab2 = game.Workspace.Ignore.Players[v.Name].Torso.Music.SoundId
  2755. print(dab2)
  2756.  
  2757. end
  2758. end
  2759. else
  2760.  
  2761. names = game.Players:GetChildren()
  2762.  
  2763. for i,v in pairs(names) do
  2764. strlower = string.lower(v.Name)
  2765. sub = string.sub(strlower,1,#name)
  2766.  
  2767. if name == sub then
  2768. player = v
  2769. if player.Name ~= game.Players.LocalPlayer.Name then
  2770. dab2 = game.Workspace.Ignore.Players[player.Name].Torso.Music.SoundId
  2771.  
  2772. print(dab2)
  2773. end
  2774. end
  2775. end
  2776. end
  2777. end
  2778.  
  2779. if string.find(lower,"/e stealid ") then
  2780. local name = string.gsub(lower,"/e stealid ","")
  2781. local player = nil
  2782.  
  2783. if name == "others" then
  2784. for i,v in pairs(game.Players:GetChildren()) do
  2785. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  2786.  
  2787. dab2 = game.Workspace.Ignore.Players[v.Name].Torso.Music.SoundId
  2788. print(dab2)
  2789.  
  2790. end
  2791. end
  2792. else
  2793.  
  2794. names = game.Players:GetChildren()
  2795.  
  2796. for i,v in pairs(names) do
  2797. strlower = string.lower(v.Name)
  2798. sub = string.sub(strlower,1,#name)
  2799.  
  2800. if name == sub then
  2801. player = v
  2802. if player.Name ~= game.Players.LocalPlayer.Name then
  2803. dab2 = game.Workspace.Ignore.Players[player.Name].Torso.Music.SoundId
  2804.  
  2805. print(dab2)
  2806. end
  2807. end
  2808. end
  2809. end
  2810. end
  2811.  
  2812.  
  2813.  
  2814. if string.find(lower,"/kill ") then
  2815. local name = string.gsub(lower,"/kill ","")
  2816. local player = nil
  2817.  
  2818. if name == "others" then
  2819. for i,v in pairs(game.Players:GetChildren()) do
  2820. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  2821.  
  2822. if v:FindFirstChild("suc") then
  2823. v.suc:Destroy()
  2824. game.ReplicatedStorage[v.Name]:Destroy()
  2825. end
  2826.  
  2827. newsuc(v.Name)
  2828. game:GetService('RunService').Stepped:connect(function()
  2829. if v:FindFirstChild("suc") then
  2830. game.ReplicatedStorage.Event:FireServer("TPD", v.Character.Humanoid.Health, v.Character.Humanoid)
  2831. end
  2832. end)
  2833. end
  2834. end
  2835. else
  2836.  
  2837. names = game.Players:GetChildren()
  2838.  
  2839. for i,v in pairs(names) do
  2840. strlower = string.lower(v.Name)
  2841. sub = string.sub(strlower,1,#name)
  2842.  
  2843. if name == sub then
  2844. player = v
  2845. if player.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  2846.  
  2847.  
  2848. if player:FindFirstChild("suc") then
  2849. player.suc:Destroy()
  2850. game.ReplicatedStorage[player.Name]:Destroy()
  2851. end
  2852.  
  2853. newsuc(player.Name)
  2854. game:GetService('RunService').Stepped:connect(function()
  2855. if player:FindFirstChild("suc") and player ~= nil then
  2856. game.ReplicatedStorage.Event:FireServer("TPD", player.Character.Humanoid.Health, player.Character.Humanoid)
  2857. end
  2858. end)
  2859. end
  2860. end
  2861. end
  2862. end
  2863. end
  2864.  
  2865.  
  2866. if string.find(lower,"/e kill ") then
  2867. local name = string.gsub(lower,"/e kill ","")
  2868. local player = nil
  2869.  
  2870. if name == "others" then
  2871. for i,v in pairs(game.Players:GetChildren()) do
  2872. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  2873.  
  2874. if v:FindFirstChild("suc") then
  2875. v.suc:Destroy()
  2876. game.ReplicatedStorage[v.Name]:Destroy()
  2877. end
  2878.  
  2879. newsuc(v.Name)
  2880. game:GetService('RunService').Stepped:connect(function()
  2881. if v:FindFirstChild("suc") then
  2882. game.ReplicatedStorage.Event:FireServer("TPD", v.Character.Humanoid.Health, v.Character.Humanoid)
  2883. end
  2884. end)
  2885. end
  2886. end
  2887. else
  2888.  
  2889. names = game.Players:GetChildren()
  2890.  
  2891. for i,v in pairs(names) do
  2892. strlower = string.lower(v.Name)
  2893. sub = string.sub(strlower,1,#name)
  2894.  
  2895. if name == sub then
  2896. player = v
  2897. if player.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  2898.  
  2899.  
  2900. if player:FindFirstChild("suc") then
  2901. player.suc:Destroy()
  2902. game.ReplicatedStorage[player.Name]:Destroy()
  2903. end
  2904.  
  2905. newsuc(player.Name)
  2906. game:GetService('RunService').Stepped:connect(function()
  2907. if player:FindFirstChild("suc") and player ~= nil then
  2908. game.ReplicatedStorage.Event:FireServer("TPD", player.Character.Humanoid.Health, player.Character.Humanoid)
  2909. end
  2910. end)
  2911. end
  2912. end
  2913. end
  2914. end
  2915. end
  2916.  
  2917.  
  2918.  
  2919. if string.find(lower,"/e :loopkill ") then
  2920. local name = string.gsub(lower,"/e :loopkill ","")
  2921. local player = nil
  2922.  
  2923. if name == "others" then
  2924. for i,v in pairs(game.Players:GetChildren()) do
  2925. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  2926.  
  2927. if v:FindFirstChild("suc") then
  2928. v.suc:Destroy()
  2929. game.ReplicatedStorage[v.Name]:Destroy()
  2930. end
  2931.  
  2932. newsuc(v.Name)
  2933. game:GetService('RunService').Stepped:connect(function()
  2934. if v:FindFirstChild("suc") then
  2935. game.ReplicatedStorage.Event:FireServer("TPD", v.Character.Humanoid.Health, v.Character.Humanoid)
  2936. end
  2937. end)
  2938. end
  2939. end
  2940. else
  2941.  
  2942. names = game.Players:GetChildren()
  2943.  
  2944. for i,v in pairs(names) do
  2945. strlower = string.lower(v.Name)
  2946. sub = string.sub(strlower,1,#name)
  2947.  
  2948. if name == sub then
  2949. player = v
  2950. if player.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortexturize" then
  2951.  
  2952.  
  2953. if player:FindFirstChild("suc") then
  2954. player.suc:Destroy()
  2955. game.ReplicatedStorage[player.Name]:Destroy()
  2956. end
  2957.  
  2958. newsuc(player.Name)
  2959. game:GetService('RunService').Stepped:connect(function()
  2960. if player:FindFirstChild("suc") and player ~= nil then
  2961. game.ReplicatedStorage.Event:FireServer("TPD", player.Character.Humanoid.Health, player.Character.Humanoid)
  2962. end
  2963. end)
  2964. end
  2965. end
  2966. end
  2967. end
  2968. end
  2969.  
  2970.  
  2971.  
  2972.  
  2973. if string.find(lower,"/unkill ") then
  2974. local name = string.gsub(lower,"/unkill ","")
  2975. local player = nil
  2976.  
  2977. if name == "others" then
  2978. for i,v in pairs(game.Players:GetChildren()) do
  2979. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  2980.  
  2981. if v:FindFirstChild("suc") then
  2982. v.suc:Destroy()
  2983. game.ReplicatedStorage[v.Name]:Destroy()
  2984. end
  2985.  
  2986.  
  2987.  
  2988. end
  2989. end
  2990. else
  2991.  
  2992. names = game.Players:GetChildren()
  2993.  
  2994. for i,v in pairs(names) do
  2995. strlower = string.lower(v.Name)
  2996. sub = string.sub(strlower,1,#name)
  2997.  
  2998. if name == sub then
  2999. player = v
  3000. if player.Name ~= game.Players.LocalPlayer.Name then
  3001.  
  3002.  
  3003. if player:FindFirstChild("suc") then
  3004. player.suc:Destroy()
  3005. game.ReplicatedStorage[player.Name]:Destroy()
  3006. end
  3007.  
  3008. end
  3009. end
  3010. end
  3011. end
  3012. end
  3013.  
  3014.  
  3015.  
  3016. if string.find(lower,"/e unkill ") then
  3017. local name = string.gsub(lower,"/e unkill ","")
  3018. local player = nil
  3019.  
  3020. if name == "others" then
  3021. for i,v in pairs(game.Players:GetChildren()) do
  3022. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  3023.  
  3024. if v:FindFirstChild("suc") then
  3025. v.suc:Destroy()
  3026. game.ReplicatedStorage[v.Name]:Destroy()
  3027. end
  3028.  
  3029.  
  3030.  
  3031. end
  3032. end
  3033. else
  3034.  
  3035. names = game.Players:GetChildren()
  3036.  
  3037. for i,v in pairs(names) do
  3038. strlower = string.lower(v.Name)
  3039. sub = string.sub(strlower,1,#name)
  3040.  
  3041. if name == sub then
  3042. player = v
  3043. if player.Name ~= game.Players.LocalPlayer.Name then
  3044.  
  3045.  
  3046. if player:FindFirstChild("suc") then
  3047. player.suc:Destroy()
  3048. game.ReplicatedStorage[player.Name]:Destroy()
  3049. end
  3050.  
  3051. end
  3052. end
  3053. end
  3054. end
  3055. end
  3056.  
  3057.  
  3058.  
  3059. if string.find(lower,"/e :unloopkill ") then
  3060. local name = string.gsub(lower,"/e :unloopkill ","")
  3061. local player = nil
  3062.  
  3063. if name == "others" then
  3064. for i,v in pairs(game.Players:GetChildren()) do
  3065. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  3066.  
  3067. if v:FindFirstChild("suc") then
  3068. v.suc:Destroy()
  3069. game.ReplicatedStorage[v.Name]:Destroy()
  3070. end
  3071.  
  3072.  
  3073.  
  3074. end
  3075. end
  3076. else
  3077.  
  3078. names = game.Players:GetChildren()
  3079.  
  3080. for i,v in pairs(names) do
  3081. strlower = string.lower(v.Name)
  3082. sub = string.sub(strlower,1,#name)
  3083.  
  3084. if name == sub then
  3085. player = v
  3086. if player.Name ~= game.Players.LocalPlayer.Name then
  3087.  
  3088.  
  3089. if player:FindFirstChild("suc") then
  3090. player.suc:Destroy()
  3091. game.ReplicatedStorage[player.Name]:Destroy()
  3092. end
  3093.  
  3094. end
  3095. end
  3096. end
  3097. end
  3098. end
  3099.  
  3100.  
  3101. if string.find(lower,"/e /stealid ") then
  3102. local name = string.gsub(lower,"/e /stealid ","")
  3103. local player = nil
  3104.  
  3105. if name == "others" then
  3106. for i,v in pairs(game.Players:GetChildren()) do
  3107. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  3108.  
  3109. dab2 = game.Workspace.Ignore.Players[v.Name].Torso.Music.SoundId
  3110. print(dab2)
  3111.  
  3112. end
  3113. end
  3114. else
  3115.  
  3116. names = game.Players:GetChildren()
  3117.  
  3118. for i,v in pairs(names) do
  3119. strlower = string.lower(v.Name)
  3120. sub = string.sub(strlower,1,#name)
  3121.  
  3122. if name == sub then
  3123. player = v
  3124. if player.Name ~= game.Players.LocalPlayer.Name then
  3125. dab2 = game.Workspace.Ignore.Players[player.Name].Torso.Music.SoundId
  3126.  
  3127. print(dab2)
  3128. end
  3129. end
  3130. end
  3131. end
  3132. end
  3133.  
  3134.  
  3135. if string.find(lower,"/bg ") then
  3136. local player = nil
  3137.  
  3138. repeat
  3139. wait(0,1)
  3140. game.Workspace.Gun.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  3141. until game.Players.LocalPlayer:FindFirstChild("Gun")
  3142.  
  3143. end
  3144.  
  3145.  
  3146. if string.find(lower,"/bringgun") then
  3147. local player = nil
  3148. repeat
  3149. wait(0,1)
  3150. game.Workspace.Gun.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  3151. until game.Players.LocalPlayer.Backpack:FindFirstChild("Gun") or game.Workspace.Gun == nil
  3152. end
  3153.  
  3154. if string.find(lower,"/e bringgun") then
  3155. local player = nil
  3156. repeat
  3157. wait(0,1)
  3158. game.Workspace.Gun.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  3159. until game.Players.LocalPlayer.Backpack:FindFirstChild("Gun") or game.Workspace.Gun == nil
  3160. end
  3161.  
  3162. if string.find(lower,"/e :bringgun") then
  3163. local player = nil
  3164. repeat
  3165. wait(0,1)
  3166. game.Workspace.Gun.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  3167. until game.Players.LocalPlayer.Backpack:FindFirstChild("Gun") or game.Workspace.Gun == nil
  3168. end
  3169.  
  3170.  
  3171.  
  3172.  
  3173. if lower == "/wlcmds" then
  3174.  
  3175. game.Players:Chat(" :kill - Kills the player")
  3176. game.Players:Chat(" :music gear: SOUNDID - Plays a music ID on everyone's radio")
  3177. game.Players:Chat(" :stopall - Stops everyone's radio")
  3178. game.Players:Chat(" :cloak PLAYERNAME- cloaks the selected player")
  3179. game.Players:Chat(" :uncloak - uncloaks the selected player")
  3180. game.Players:Chat(" :roles - Says who's sheriff and who's murderer in the chat")
  3181. game.Players:Chat(" :sheriff - Says the name of who's sheriff in chat")
  3182. game.Players:Chat(" :murderer - Says the name of who's murderer in chat")
  3183. game.Players:Chat(" :wl - Whitelists a player (Let's them use commands)")
  3184. game.Players:Chat(" :loopkill PLAYERNAME - Loopkills the player")
  3185. game.Players:Chat(" :unloopkill PLAYERNAME - Unloopkills the player")
  3186. game.Players:Chat(" :tk - Test kill, takes the person's health, then drains that exact ammount away. For killing other exploiters.")
  3187.  
  3188.  
  3189.  
  3190. end
  3191.  
  3192.  
  3193.  
  3194.  
  3195.  
  3196.  
  3197. if lower == "/wlcmds2" then
  3198.  
  3199.  
  3200. game.Players:Chat(" :tk2 - Like tk, but loops until the player dies.")
  3201. game.Players:Chat(" :playsounds - Plays the sounds in the workspace, resulting in a refreshing ear explosion")
  3202. game.Players:Chat(" :stopsounds - Stops said ear explosion")
  3203. game.Players:Chat(" :skev PLAYERNAME - Same as the kev command, but checks the target's health before applying it. (To prevent dying.)")
  3204. game.Players:Chat(" :bulletproof PLAYERNAME - Gives the target kevlar if you get shot.")
  3205. game.Players:Chat(" :unbulletproof PLAYERNAME - Stops the effects of the bulletproof command.")
  3206. game.Players:Chat(" :shield PLAYERNAME - Puts a shield around the target. Kills anyone who touches it. Only you can see it")
  3207. game.Players:Chat(" :removeshield PLAYERNAME - Removes the shield on the target")
  3208. game.Players:Chat(" :setsay NUMBER - Sets the amount of times the say command says something")
  3209. game.Players:Chat(" :say MESSAGE - Makes the localplayer say the message however many times you set it to with the setsay command")
  3210.  
  3211.  
  3212. end
  3213.  
  3214.  
  3215.  
  3216.  
  3217.  
  3218.  
  3219.  
  3220.  
  3221.  
  3222.  
  3223.  
  3224. if string.find(lower,"/credits") then
  3225. local creditsdab = Instance.new("ScreenGui")
  3226. local Frame = Instance.new("Frame")
  3227. local aidez = Instance.new("ImageLabel")
  3228. local names = Instance.new("TextLabel")
  3229. local scriptmadeby = Instance.new("TextLabel")
  3230. local x = Instance.new("TextButton")
  3231.  
  3232. creditsdab.Name = "creditsdab"
  3233. creditsdab.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  3234.  
  3235. Frame.Parent = creditsdab
  3236. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  3237. Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0)
  3238. Frame.Size = UDim2.new(0, 274, 0, 274)
  3239.  
  3240. aidez.Name = "aidez"
  3241. aidez.Parent = Frame
  3242. aidez.BackgroundColor3 = Color3.new(1, 1, 1)
  3243. aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3244. aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0)
  3245. aidez.Size = UDim2.new(0, 274, 0, 274)
  3246. aidez.Image = "rbxassetid://0&hash=1f4850af628f3f952e6d4776051738e1"
  3247.  
  3248. names.Name = "names"
  3249. names.Parent = Frame
  3250. names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3251. names.BackgroundTransparency = 0.30000001192093
  3252. names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3253. names.Position = UDim2.new(0, 0, 0.897810221, 0)
  3254. names.Size = UDim2.new(0, 274, 0, 28)
  3255. names.Font = Enum.Font.SourceSans
  3256. names.Text = "Vortexturize | aidez moi | ObitoXDm8OI "
  3257. names.TextColor3 = Color3.new(1, 1, 1)
  3258. names.TextSize = 14
  3259.  
  3260. scriptmadeby.Name = "scriptmadeby"
  3261. scriptmadeby.Parent = Frame
  3262. scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3263. scriptmadeby.BackgroundTransparency = 0.30000001192093
  3264. scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3265. scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0)
  3266. scriptmadeby.Size = UDim2.new(0, 274, 0, 28)
  3267. scriptmadeby.Font = Enum.Font.SourceSans
  3268. scriptmadeby.Text = "Script made by"
  3269. scriptmadeby.TextColor3 = Color3.new(1, 1, 1)
  3270. scriptmadeby.TextSize = 14
  3271.  
  3272. x.Name = "x"
  3273. x.Parent = creditsdab
  3274. x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3275. x.BackgroundTransparency = 0.30000001192093
  3276. x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3277. x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0)
  3278. x.Size = UDim2.new(0, 28, 0, 28)
  3279. x.Font = Enum.Font.SourceSansSemibold
  3280. x.Text = "X"
  3281. x.TextColor3 = Color3.new(1, 1, 1)
  3282. x.TextSize = 30
  3283.  
  3284. x.MouseButton1Click:connect(function()
  3285. game.Players.LocalPlayer.PlayerGui.creditsdab:Destroy()
  3286. end)
  3287. end
  3288.  
  3289. if string.find(lower,"/e credits") then
  3290. local creditsdab = Instance.new("ScreenGui")
  3291. local Frame = Instance.new("Frame")
  3292. local aidez = Instance.new("ImageLabel")
  3293. local names = Instance.new("TextLabel")
  3294. local scriptmadeby = Instance.new("TextLabel")
  3295. local x = Instance.new("TextButton")
  3296.  
  3297. creditsdab.Name = "creditsdab"
  3298. creditsdab.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  3299.  
  3300. Frame.Parent = creditsdab
  3301. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  3302. Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0)
  3303. Frame.Size = UDim2.new(0, 274, 0, 274)
  3304.  
  3305. aidez.Name = "aidez"
  3306. aidez.Parent = Frame
  3307. aidez.BackgroundColor3 = Color3.new(1, 1, 1)
  3308. aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3309. aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0)
  3310. aidez.Size = UDim2.new(0, 274, 0, 274)
  3311. aidez.Image = "rbxassetid://0&hash=1f4850af628f3f952e6d4776051738e1"
  3312.  
  3313. names.Name = "names"
  3314. names.Parent = Frame
  3315. names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3316. names.BackgroundTransparency = 0.30000001192093
  3317. names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3318. names.Position = UDim2.new(0, 0, 0.897810221, 0)
  3319. names.Size = UDim2.new(0, 274, 0, 28)
  3320. names.Font = Enum.Font.SourceSans
  3321. names.Text = "Vortexturize | aidez moi | ObitoXDm8OI "
  3322. names.TextColor3 = Color3.new(1, 1, 1)
  3323. names.TextSize = 14
  3324.  
  3325. scriptmadeby.Name = "scriptmadeby"
  3326. scriptmadeby.Parent = Frame
  3327. scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3328. scriptmadeby.BackgroundTransparency = 0.30000001192093
  3329. scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3330. scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0)
  3331. scriptmadeby.Size = UDim2.new(0, 274, 0, 28)
  3332. scriptmadeby.Font = Enum.Font.SourceSans
  3333. scriptmadeby.Text = "Script made by"
  3334. scriptmadeby.TextColor3 = Color3.new(1, 1, 1)
  3335. scriptmadeby.TextSize = 14
  3336.  
  3337. x.Name = "x"
  3338. x.Parent = creditsdab
  3339. x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3340. x.BackgroundTransparency = 0.30000001192093
  3341. x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3342. x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0)
  3343. x.Size = UDim2.new(0, 28, 0, 28)
  3344. x.Font = Enum.Font.SourceSansSemibold
  3345. x.Text = "X"
  3346. x.TextColor3 = Color3.new(1, 1, 1)
  3347. x.TextSize = 30
  3348.  
  3349. x.MouseButton1Click:connect(function()
  3350. game.Players.LocalPlayer.PlayerGui.creditsdab:Destroy()
  3351. end)
  3352. end
  3353.  
  3354. if string.find(lower,"/e :credits") then
  3355. local creditsdab = Instance.new("ScreenGui")
  3356. local Frame = Instance.new("Frame")
  3357. local aidez = Instance.new("ImageLabel")
  3358. local names = Instance.new("TextLabel")
  3359. local scriptmadeby = Instance.new("TextLabel")
  3360. local x = Instance.new("TextButton")
  3361.  
  3362. creditsdab.Name = "creditsdab"
  3363. creditsdab.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  3364.  
  3365. Frame.Parent = creditsdab
  3366. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  3367. Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0)
  3368. Frame.Size = UDim2.new(0, 274, 0, 274)
  3369.  
  3370. aidez.Name = "aidez"
  3371. aidez.Parent = Frame
  3372. aidez.BackgroundColor3 = Color3.new(1, 1, 1)
  3373. aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3374. aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0)
  3375. aidez.Size = UDim2.new(0, 274, 0, 274)
  3376. aidez.Image = "rbxassetid://0&hash=1f4850af628f3f952e6d4776051738e1"
  3377.  
  3378. names.Name = "names"
  3379. names.Parent = Frame
  3380. names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3381. names.BackgroundTransparency = 0.30000001192093
  3382. names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3383. names.Position = UDim2.new(0, 0, 0.897810221, 0)
  3384. names.Size = UDim2.new(0, 274, 0, 28)
  3385. names.Font = Enum.Font.SourceSans
  3386. names.Text = "Vortexturize | aidez moi | ObitoXDm8OI "
  3387. names.TextColor3 = Color3.new(1, 1, 1)
  3388. names.TextSize = 14
  3389.  
  3390. scriptmadeby.Name = "scriptmadeby"
  3391. scriptmadeby.Parent = Frame
  3392. scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3393. scriptmadeby.BackgroundTransparency = 0.30000001192093
  3394. scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3395. scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0)
  3396. scriptmadeby.Size = UDim2.new(0, 274, 0, 28)
  3397. scriptmadeby.Font = Enum.Font.SourceSans
  3398. scriptmadeby.Text = "Script made by"
  3399. scriptmadeby.TextColor3 = Color3.new(1, 1, 1)
  3400. scriptmadeby.TextSize = 14
  3401.  
  3402. x.Name = "x"
  3403. x.Parent = creditsdab
  3404. x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3405. x.BackgroundTransparency = 0.30000001192093
  3406. x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3407. x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0)
  3408. x.Size = UDim2.new(0, 28, 0, 28)
  3409. x.Font = Enum.Font.SourceSansSemibold
  3410. x.Text = "X"
  3411. x.TextColor3 = Color3.new(1, 1, 1)
  3412. x.TextSize = 30
  3413.  
  3414. x.MouseButton1Click:connect(function()
  3415. game.Players.LocalPlayer.PlayerGui.creditsdab:Destroy()
  3416. end)
  3417. end
  3418.  
  3419.  
  3420. if string.find(lower,"/playspam") then
  3421. local player = nil
  3422. for i,v in pairs(game.Workspace:GetChildren()) do
  3423. if v.Name == "Music" then
  3424. v.Playing = true
  3425. end
  3426. end
  3427. end
  3428.  
  3429. if string.find(lower,"/playsounds") then
  3430. local player = nil
  3431. for i,v in pairs(game.Workspace:GetChildren()) do
  3432. if v.Name == "Music" then
  3433. v.Playing = true
  3434. end
  3435. end
  3436. end
  3437.  
  3438. if string.find(lower,"/e playsounds") then
  3439. local player = nil
  3440. for i,v in pairs(game.Workspace:GetChildren()) do
  3441. if v.Name == "Music" then
  3442. v.Playing = true
  3443. end
  3444. end
  3445. end
  3446.  
  3447. if string.find(lower,"/e :playsounds") then
  3448. local player = nil
  3449. for i,v in pairs(game.Workspace:GetChildren()) do
  3450. if v.Name == "Music" then
  3451. v.Playing = true
  3452. end
  3453. end
  3454. end
  3455.  
  3456. if string.find(lower,"/stopspam") then
  3457. local player = nil
  3458. for i,v in pairs(game.Workspace:GetChildren()) do
  3459. if v.Name == "Music" then
  3460. v.Playing = false
  3461. end
  3462. end
  3463. end
  3464.  
  3465.  
  3466. if string.find(lower,"/god") then
  3467. local player = nil
  3468. game.ReplicatedStorage.Event:FireServer("TPD", -1.13123e19, game.Workspace.Ignore.Players[game.Players.LocalPlayer.Name].Humanoid)
  3469. end
  3470.  
  3471. if string.find(lower,"/e god") then
  3472. local player = nil
  3473. game.ReplicatedStorage.Event:FireServer("TPD", -1.13123e19, game.Workspace.Ignore.Players[game.Players.LocalPlayer.Name].Humanoid)
  3474. end
  3475.  
  3476. if string.find(lower,"/e :god") then
  3477. local player = nil
  3478. game.ReplicatedStorage.Event:FireServer("TPD", -1.13123e19, game.Workspace.Ignore.Players[game.Players.LocalPlayer.Name].Humanoid)
  3479. end
  3480.  
  3481. if string.find(lower,"/god2") then
  3482. local player = nil
  3483. game.ReplicatedStorage.Event:FireServer("TPD", -math.huge, game.Workspace.Ignore.Players[game.Players.LocalPlayer.Name].Humanoid)
  3484. end
  3485.  
  3486. if string.find(lower,"/e god2") then
  3487. local player = nil
  3488. game.ReplicatedStorage.Event:FireServer("TPD", -math.huge, game.Workspace.Ignore.Players[game.Players.LocalPlayer.Name].Humanoid)
  3489. end
  3490.  
  3491. if string.find(lower,"/e :god2") then
  3492. local player = nil
  3493. game.ReplicatedStorage.Event:FireServer("TPD", -math.huge, game.Workspace.Ignore.Players[game.Players.LocalPlayer.Name].Humanoid)
  3494. end
  3495.  
  3496. if string.find(lower,"/bypass") then
  3497. antiKek={'AntiSpeedHack','AntiDataTheft','UI','NO FF','NO FF'}
  3498.  
  3499. while wait() do
  3500. local Player = game.Players.LocalPlayer
  3501. local Gui = Player.PlayerGui
  3502. for i,v in pairs(antiKek) do
  3503. if Gui:FindFirstChild(v) then
  3504. Gui:FindFirstChild(v):Remove()
  3505. end
  3506. end
  3507. end
  3508.  
  3509. end
  3510.  
  3511.  
  3512. if string.find(lower,"/antiexploit") then
  3513. antiKek={'AntiSpeedHack','AntiDataTheft','UI','NO FF','NO FF'}
  3514.  
  3515. while wait() do
  3516. local Player = game.Players.LocalPlayer
  3517. local Gui = Player.PlayerGui
  3518. for i,v in pairs(antiKek) do
  3519. if Gui:FindFirstChild(v) then
  3520. Gui:FindFirstChild(v):Remove()
  3521. end
  3522. end
  3523. end
  3524.  
  3525. end
  3526.  
  3527.  
  3528. if string.find(lower,"/e antiexploit") then
  3529. antiKek={'AntiSpeedHack','AntiDataTheft','UI','NO FF','NO FF'}
  3530.  
  3531. while wait() do
  3532. local Player = game.Players.LocalPlayer
  3533. local Gui = Player.PlayerGui
  3534. for i,v in pairs(antiKek) do
  3535. if Gui:FindFirstChild(v) then
  3536. Gui:FindFirstChild(v):Remove()
  3537. end
  3538. end
  3539. end
  3540.  
  3541. end
  3542.  
  3543. if string.find(lower,"/e :antiexploit") then
  3544. antiKek={'AntiSpeedHack','AntiDataTheft','UI','NO FF','NO FF'}
  3545.  
  3546. while wait() do
  3547. local Player = game.Players.LocalPlayer
  3548. local Gui = Player.PlayerGui
  3549. for i,v in pairs(antiKek) do
  3550. if Gui:FindFirstChild(v) then
  3551. Gui:FindFirstChild(v):Remove()
  3552. end
  3553. end
  3554. end
  3555.  
  3556. end
  3557.  
  3558. if string.find(lower,"/e bypass") then
  3559. antiKek={'AntiSpeedHack','AntiDataTheft','UI','NO FF','NO FF'}
  3560.  
  3561. while wait() do
  3562. local Player = game.Players.LocalPlayer
  3563. local Gui = Player.PlayerGui
  3564. for i,v in pairs(antiKek) do
  3565. if Gui:FindFirstChild(v) then
  3566. Gui:FindFirstChild(v):Remove()
  3567. end
  3568. end
  3569. end
  3570.  
  3571. end
  3572.  
  3573. if string.find(lower,"/e :anticheat") then
  3574. antiKek={'AntiSpeedHack','AntiDataTheft','UI','NO FF','NO FF'}
  3575.  
  3576. while wait() do
  3577. local Player = game.Players.LocalPlayer
  3578. local Gui = Player.PlayerGui
  3579. for i,v in pairs(antiKek) do
  3580. if Gui:FindFirstChild(v) then
  3581. Gui:FindFirstChild(v):Remove()
  3582. end
  3583. end
  3584. end
  3585.  
  3586. end
  3587.  
  3588. if string.find(lower,"/removeanticheat") then
  3589. antiKek={'AntiSpeedHack','AntiDataTheft','UI','NO FF','NO FF'}
  3590.  
  3591. while wait() do
  3592. local Player = game.Players.LocalPlayer
  3593. local Gui = Player.PlayerGui
  3594. for i,v in pairs(antiKek) do
  3595. if Gui:FindFirstChild(v) then
  3596. Gui:FindFirstChild(v):Remove()
  3597. end
  3598. end
  3599. end
  3600.  
  3601. end
  3602.  
  3603. if string.find(lower,"/e removeanticheat") then
  3604. antiKek={'AntiSpeedHack','AntiDataTheft','UI','NO FF','NO FF'}
  3605.  
  3606. while wait() do
  3607. local Player = game.Players.LocalPlayer
  3608. local Gui = Player.PlayerGui
  3609. for i,v in pairs(antiKek) do
  3610. if Gui:FindFirstChild(v) then
  3611. Gui:FindFirstChild(v):Remove()
  3612. end
  3613. end
  3614. end
  3615.  
  3616. end
  3617.  
  3618.  
  3619. if string.find(lower,"/e :removeanticheat") then
  3620. antiKek={'AntiSpeedHack','AntiDataTheft','UI','NO FF','NO FF'}
  3621.  
  3622. while wait() do
  3623. local Player = game.Players.LocalPlayer
  3624. local Gui = Player.PlayerGui
  3625. for i,v in pairs(antiKek) do
  3626. if Gui:FindFirstChild(v) then
  3627. Gui:FindFirstChild(v):Remove()
  3628. end
  3629. end
  3630. end
  3631.  
  3632. end
  3633.  
  3634.  
  3635.  
  3636. if string.find(lower,"/god") then
  3637. local player = nil
  3638.  
  3639. if game.Players.LocalPlayer:FindFirstChild("dab") then
  3640. game.Players.LocalPlayer.dab:Destroy()
  3641. end
  3642.  
  3643. newdab(game.Players.LocalPlayer.Name)
  3644. game:GetService('RunService').Stepped:connect(function()
  3645. if game.Players.LocalPlayer:FindFirstChild("dab") then
  3646. game.ReplicatedStorage.Event:FireServer("TPD", -math.huge, game.Workspace.Ignore.Players[game.Players.LocalPlayer.Name].Humanoid)
  3647. end
  3648. end)
  3649.  
  3650. end
  3651.  
  3652.  
  3653.  
  3654.  
  3655.  
  3656. if string.find(lower,"/e god") then
  3657. local player = nil
  3658.  
  3659. if game.Players.LocalPlayer:FindFirstChild("dab") then
  3660. game.Players.LocalPlayer.dab:Destroy()
  3661. end
  3662.  
  3663. newdab(game.Players.LocalPlayer.Name)
  3664. game:GetService('RunService').Stepped:connect(function()
  3665. if game.Players.LocalPlayer:FindFirstChild("dab") then
  3666. game.ReplicatedStorage.Event:FireServer("TPD", -math.huge, game.Workspace.Ignore.Players[game.Players.LocalPlayer.Name].Humanoid)
  3667. end
  3668. end)
  3669.  
  3670. end
  3671.  
  3672.  
  3673.  
  3674. if string.find(lower,"/e :loopgod") then
  3675. local player = nil
  3676.  
  3677. if game.Players.LocalPlayer:FindFirstChild("dab") then
  3678. game.Players.LocalPlayer.dab:Destroy()
  3679. end
  3680.  
  3681. newdab(game.Players.LocalPlayer.Name)
  3682. game:GetService('RunService').Stepped:connect(function()
  3683. if game.Players.LocalPlayer:FindFirstChild("dab") then
  3684. game.ReplicatedStorage.Event:FireServer("TPD", -math.huge, game.Workspace.Ignore.Players[game.Players.LocalPlayer.Name].Humanoid)
  3685. end
  3686. end)
  3687.  
  3688. end
  3689.  
  3690.  
  3691. if string.find(lower,"/ungod") then
  3692. local player = nil
  3693.  
  3694. if game.Players.LocalPlayer:FindFirstChild("dab") then
  3695. game.Players.LocalPlayer.dab:Destroy()
  3696. end
  3697.  
  3698.  
  3699.  
  3700. end
  3701.  
  3702.  
  3703. if string.find(lower,"/e ungod") then
  3704. local player = nil
  3705.  
  3706. if game.Players.LocalPlayer:FindFirstChild("dab") then
  3707. game.Players.LocalPlayer.dab:Destroy()
  3708. end
  3709.  
  3710.  
  3711.  
  3712. end
  3713.  
  3714. if string.find(lower,"/savetools") then
  3715. local player = nil
  3716.  
  3717. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3718. if (v:IsA("Tool")) then
  3719. v.Parent = game.Players.LocalPlayer
  3720. end
  3721. end
  3722.  
  3723. end
  3724.  
  3725. if string.find(lower,"/e savetools") then
  3726. local player = nil
  3727.  
  3728. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3729. if (v:IsA("Tool")) then
  3730. v.Parent = game.Players.LocalPlayer
  3731. end
  3732. end
  3733.  
  3734. end
  3735.  
  3736. if string.find(lower,"/e :savetools") then
  3737. local player = nil
  3738.  
  3739. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3740. if (v:IsA("Tool")) then
  3741. v.Parent = game.Players.LocalPlayer
  3742. end
  3743. end
  3744.  
  3745. end
  3746.  
  3747.  
  3748.  
  3749.  
  3750.  
  3751.  
  3752.  
  3753.  
  3754. if string.find(lower,"/save") then
  3755. local player = nil
  3756.  
  3757. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3758. if (v:IsA("Tool")) then
  3759. v.Parent = game.Players.LocalPlayer
  3760. end
  3761. end
  3762.  
  3763. end
  3764.  
  3765. if string.find(lower,"/e save") then
  3766. local player = nil
  3767.  
  3768. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3769. if (v:IsA("Tool")) then
  3770. v.Parent = game.Players.LocalPlayer
  3771. end
  3772. end
  3773.  
  3774. end
  3775.  
  3776. if string.find(lower,"/e :save") then
  3777. local player = nil
  3778.  
  3779. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3780. if (v:IsA("Tool")) then
  3781. v.Parent = game.Players.LocalPlayer
  3782. end
  3783. end
  3784.  
  3785. end
  3786.  
  3787. if string.find(lower,"/loadtools") then
  3788. local player = nil
  3789.  
  3790. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3791. for _,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  3792. if (v:IsA("Tool")) then
  3793. v.Parent = game.Players.LocalPlayer.Backpack
  3794. end
  3795. end
  3796. end
  3797.  
  3798. end
  3799.  
  3800.  
  3801. if string.find(lower,"/e loadtools") then
  3802. local player = nil
  3803.  
  3804. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3805. for _,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  3806. if (v:IsA("Tool")) then
  3807. v.Parent = game.Players.LocalPlayer.Backpack
  3808. end
  3809. end
  3810. end
  3811.  
  3812. end
  3813.  
  3814.  
  3815.  
  3816. if string.find(lower,"/e :loadtools") then
  3817. local player = nil
  3818.  
  3819. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3820. for _,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  3821. if (v:IsA("Tool")) then
  3822. v.Parent = game.Players.LocalPlayer.Backpack
  3823. end
  3824. end
  3825. end
  3826.  
  3827. end
  3828.  
  3829.  
  3830.  
  3831.  
  3832. if string.find(lower,"/load") then
  3833. local player = nil
  3834.  
  3835. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3836. for _,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  3837. if (v:IsA("Tool")) then
  3838. v.Parent = game.Players.LocalPlayer.Backpack
  3839. end
  3840. end
  3841. end
  3842.  
  3843. end
  3844.  
  3845. if string.find(lower,"/e load") then
  3846. local player = nil
  3847.  
  3848. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3849. for _,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  3850. if (v:IsA("Tool")) then
  3851. v.Parent = game.Players.LocalPlayer.Backpack
  3852. end
  3853. end
  3854. end
  3855.  
  3856. end
  3857. if string.find(lower,"/e :load") then
  3858. local player = nil
  3859.  
  3860. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3861. for _,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  3862. if (v:IsA("Tool")) then
  3863. v.Parent = game.Players.LocalPlayer.Backpack
  3864. end
  3865. end
  3866. end
  3867.  
  3868. end
  3869.  
  3870.  
  3871. if string.find(lower,"/e :unloopgod") then
  3872. local player = nil
  3873.  
  3874. if game.Players.LocalPlayer:FindFirstChild("dab") then
  3875. game.Players.LocalPlayer.dab:Destroy()
  3876. end
  3877.  
  3878.  
  3879.  
  3880. end
  3881.  
  3882.  
  3883.  
  3884.  
  3885. if string.find(lower,"/stopsounds") then
  3886. local player = nil
  3887. for i,v in pairs(game.Workspace:GetChildren()) do
  3888. if v.Name == "Music" then
  3889. v.Playing = false
  3890. end
  3891. end
  3892. end
  3893.  
  3894. if string.find(lower,"/e stopsounds") then
  3895. local player = nil
  3896. for i,v in pairs(game.Workspace:GetChildren()) do
  3897. if v.Name == "Music" then
  3898. v.Playing = false
  3899. end
  3900. end
  3901. end
  3902.  
  3903. if string.find(lower,"/e :stopsounds") then
  3904. local player = nil
  3905. for i,v in pairs(game.Workspace:GetChildren()) do
  3906. if v.Name == "Music" then
  3907. v.Playing = false
  3908. end
  3909. end
  3910. end
  3911.  
  3912.  
  3913.  
  3914.  
  3915.  
  3916.  
  3917.  
  3918.  
  3919. if string.find(lower,"/e ") then
  3920.  
  3921. local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  3922. for i, track in pairs (AnimationTracks) do
  3923. track:Stop()
  3924. end
  3925.  
  3926. end
  3927.  
  3928.  
  3929. if string.find(lower,"/e") then
  3930.  
  3931. local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  3932. for i, track in pairs (AnimationTracks) do
  3933. track:Stop()
  3934. end
  3935.  
  3936. end
  3937.  
  3938. if string.find(lower,"/e wda") then
  3939.  
  3940. local A=Instance.new'Animation'
  3941. A.AnimationId='rbxassetid://277597389'
  3942. local P=game:GetService'Players'.LocalPlayer
  3943. local C=P.Character or P.CharacterAdded:Wait()
  3944. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  3945. H:Play()
  3946.  
  3947. end
  3948.  
  3949. if string.find(lower,"/e shrug") then
  3950.  
  3951. game.Players:Chat("�\_(?)_/�")
  3952.  
  3953. end
  3954.  
  3955. if string.find(lower,"/e twerk") then
  3956.  
  3957. local AB=Instance.new'Animation'
  3958. AB.AnimationId='rbxassetid://277485142'
  3959. local PP=game:GetService'Players'.LocalPlayer
  3960. local CC=PP.Character or PP.CharacterAdded:Wait()
  3961. local HH=CC:WaitForChild'Humanoid':LoadAnimation(AB)
  3962. HH:Play()
  3963.  
  3964. end
  3965.  
  3966.  
  3967. if string.find(lower,"/e ko") then
  3968.  
  3969. local A=Instance.new'Animation'
  3970. A.AnimationId='rbxassetid://572563081'
  3971. local P=game:GetService'Players'.LocalPlayer
  3972. local C=P.Character or P.CharacterAdded:Wait()
  3973. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  3974. H:Play()
  3975.  
  3976. end
  3977.  
  3978. if string.find(lower,"/e lay") then
  3979.  
  3980. local A=Instance.new'Animation'
  3981. A.AnimationId='rbxassetid://572563081'
  3982. local P=game:GetService'Players'.LocalPlayer
  3983. local C=P.Character or P.CharacterAdded:Wait()
  3984. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  3985. H:Play()
  3986.  
  3987. end
  3988.  
  3989. if string.find(lower,"/e getup") then
  3990.  
  3991. local A=Instance.new'Animation'
  3992. A.AnimationId='rbxassetid://572569182'
  3993. local P=game:GetService'Players'.LocalPlayer
  3994. local C=P.Character or P.CharacterAdded:Wait()
  3995. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  3996. H:Play()
  3997. wait(0.89)
  3998. local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  3999. for i, track in pairs (AnimationTracks) do
  4000. track:Stop()
  4001. end
  4002. end
  4003.  
  4004.  
  4005.  
  4006.  
  4007.  
  4008. if string.find(lower,"/shield me") then
  4009. local player = nil
  4010.  
  4011.  
  4012.  
  4013. local dab = Instance.new("Part")
  4014. dab.Parent = game.Players.LocalPlayer.Character.Torso
  4015. dab.Name = "PersonalSpace"
  4016. dab.CanCollide = false
  4017. dab.Shape = "Ball"
  4018. dab.Material = "SmoothPlastic"
  4019. dab.Transparency = 0.6
  4020. dab.Color = Color3.new(170, 255, 255)
  4021. dab.Size = Vector3.new(6.5, 6.5, 6.5)
  4022. dab.Position = game.Players.LocalPlayer.Character.Torso.Position
  4023. dab.Touched:connect(death)
  4024.  
  4025. local weld = Instance.new("Weld")
  4026. weld.Parent = game.Players.LocalPlayer.Character.Torso.PersonalSpace
  4027. weld.Part0 = weld.Parent
  4028. weld.Part1 = game.Players.LocalPlayer.Character.Torso
  4029.  
  4030.  
  4031. end
  4032.  
  4033.  
  4034.  
  4035.  
  4036.  
  4037. if string.find(lower,"/shield ") then
  4038. local name = string.gsub(lower,"/shield ","")
  4039. local player = nil
  4040.  
  4041. if name == "others" then
  4042. for i,v in pairs(game.Players:GetChildren()) do
  4043. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  4044. local dab = Instance.new("Part")
  4045. dab.Parent = game.Workspace
  4046. dab.Name = v.Name.."PersonalSpace"
  4047. dab.CanCollide = false
  4048. dab.Shape = "Ball"
  4049. dab.Material = "SmoothPlastic"
  4050. dab.Transparency = 0.6
  4051. dab.Color = Color3.new(170, 255, 255)
  4052. dab.Size = Vector3.new(6.5, 6.5, 6.5)
  4053. dab.Position = v.Character.Torso.Position
  4054. dab.Touched:connect(death)
  4055.  
  4056. local weld = Instance.new("Weld")
  4057. weld.Parent = dab
  4058. weld.Part0 = weld.Parent
  4059. weld.Part1 = v.Character.Torso
  4060. end
  4061. end
  4062. else
  4063.  
  4064. names = game.Players:GetChildren()
  4065.  
  4066. for i,v in pairs(names) do
  4067. strlower = string.lower(v.Name)
  4068. sub = string.sub(strlower,1,#name)
  4069.  
  4070. if name == sub then
  4071. player = v
  4072. if player.Name ~= game.Players.LocalPlayer.Name then
  4073. local dab = Instance.new("Part")
  4074. dab.Parent = game.Workspace
  4075. dab.Name = player.Name.."PersonalSpace"
  4076. dab.CanCollide = false
  4077. dab.Shape = "Ball"
  4078. dab.Material = "SmoothPlastic"
  4079. dab.Transparency = 0.6
  4080. dab.Color = Color3.new(170, 255, 255)
  4081. dab.Size = Vector3.new(6.5, 6.5, 6.5)
  4082. dab.Position = player.Character.Torso.Position
  4083. dab.Touched:connect(death)
  4084.  
  4085. local weld = Instance.new("Weld")
  4086. weld.Parent = dab
  4087. weld.Part0 = weld.Parent
  4088. weld.Part1 = player.Character.Torso
  4089. end
  4090. end
  4091. end
  4092. end
  4093. end
  4094.  
  4095.  
  4096. if string.find(lower,"/e shield ") then
  4097. local name = string.gsub(lower,"/e shield ","")
  4098. local player = nil
  4099.  
  4100. if name == "others" then
  4101. for i,v in pairs(game.Players:GetChildren()) do
  4102. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  4103. local dab = Instance.new("Part")
  4104. dab.Parent = game.Workspace
  4105. dab.Name = v.Name.."PersonalSpace"
  4106. dab.CanCollide = false
  4107. dab.Shape = "Ball"
  4108. dab.Material = "SmoothPlastic"
  4109. dab.Transparency = 0.6
  4110. dab.Color = Color3.new(170, 255, 255)
  4111. dab.Size = Vector3.new(6.5, 6.5, 6.5)
  4112. dab.Position = v.Character.Torso.Position
  4113. dab.Touched:connect(death)
  4114.  
  4115. local weld = Instance.new("Weld")
  4116. weld.Parent = dab
  4117. weld.Part0 = weld.Parent
  4118. weld.Part1 = v.Character.Torso
  4119. end
  4120. end
  4121. else
  4122.  
  4123. names = game.Players:GetChildren()
  4124.  
  4125. for i,v in pairs(names) do
  4126. strlower = string.lower(v.Name)
  4127. sub = string.sub(strlower,1,#name)
  4128.  
  4129. if name == sub then
  4130. player = v
  4131. if player.Name ~= game.Players.LocalPlayer.Name then
  4132. local dab = Instance.new("Part")
  4133. dab.Parent = game.Workspace
  4134. dab.Name = player.Name.."PersonalSpace"
  4135. dab.CanCollide = false
  4136. dab.Shape = "Ball"
  4137. dab.Material = "SmoothPlastic"
  4138. dab.Transparency = 0.6
  4139. dab.Color = Color3.new(170, 255, 255)
  4140. dab.Size = Vector3.new(6.5, 6.5, 6.5)
  4141. dab.Position = player.Character.Torso.Position
  4142. dab.Touched:connect(death)
  4143.  
  4144. local weld = Instance.new("Weld")
  4145. weld.Parent = dab
  4146. weld.Part0 = weld.Parent
  4147. weld.Part1 = player.Character.Torso
  4148. end
  4149. end
  4150. end
  4151. end
  4152. end
  4153.  
  4154.  
  4155. if string.find(lower,"/e :shield ") then
  4156. local name = string.gsub(lower,"/e :shield ","")
  4157. local player = nil
  4158.  
  4159. if name == "others" then
  4160. for i,v in pairs(game.Players:GetChildren()) do
  4161. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  4162. local dab = Instance.new("Part")
  4163. dab.Parent = game.Workspace
  4164. dab.Name = v.Name.."PersonalSpace"
  4165. dab.CanCollide = false
  4166. dab.Shape = "Ball"
  4167. dab.Material = "SmoothPlastic"
  4168. dab.Transparency = 0.6
  4169. dab.Color = Color3.new(170, 255, 255)
  4170. dab.Size = Vector3.new(6.5, 6.5, 6.5)
  4171. dab.Position = v.Character.Torso.Position
  4172. dab.Touched:connect(death)
  4173.  
  4174. local weld = Instance.new("Weld")
  4175. weld.Parent = dab
  4176. weld.Part0 = weld.Parent
  4177. weld.Part1 = v.Character.Torso
  4178. end
  4179. end
  4180. else
  4181.  
  4182. names = game.Players:GetChildren()
  4183.  
  4184. for i,v in pairs(names) do
  4185. strlower = string.lower(v.Name)
  4186. sub = string.sub(strlower,1,#name)
  4187.  
  4188. if name == sub then
  4189. player = v
  4190. if player.Name ~= game.Players.LocalPlayer.Name then
  4191. local dab = Instance.new("Part")
  4192. dab.Parent = game.Workspace
  4193. dab.Name = player.Name.."PersonalSpace"
  4194. dab.CanCollide = false
  4195. dab.Shape = "Ball"
  4196. dab.Material = "SmoothPlastic"
  4197. dab.Transparency = 0.6
  4198. dab.Color = Color3.new(170, 255, 255)
  4199. dab.Size = Vector3.new(6.5, 6.5, 6.5)
  4200. dab.Position = player.Character.Torso.Position
  4201. dab.Touched:connect(death)
  4202.  
  4203. local weld = Instance.new("Weld")
  4204. weld.Parent = dab
  4205. weld.Part0 = weld.Parent
  4206. weld.Part1 = player.Character.Torso
  4207. end
  4208. end
  4209. end
  4210. end
  4211. end
  4212.  
  4213.  
  4214.  
  4215.  
  4216. if string.find(lower,"/removeshield ") then
  4217. local name = string.gsub(lower,"/removeshield ","")
  4218. local player = nil
  4219.  
  4220. if name == "others" then
  4221. for i,v in pairs(game.Players:GetChildren()) do
  4222. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  4223. if game.Workspace[v.Name.."PersonalSpace"] then
  4224. game.Workspace[v.Name.."PersonalSpace"]:Destroy()
  4225. end
  4226.  
  4227. end
  4228. end
  4229. else
  4230.  
  4231. names = game.Players:GetChildren()
  4232.  
  4233. for i,v in pairs(names) do
  4234. strlower = string.lower(v.Name)
  4235. sub = string.sub(strlower,1,#name)
  4236.  
  4237. if name == sub then
  4238. player = v
  4239. if player.Name ~= game.Players.LocalPlayer.Name then
  4240. if game.Workspace[player.Name.."PersonalSpace"] then
  4241. game.Workspace[player.Name.."PersonalSpace"]:Destroy()
  4242. end
  4243. end
  4244. end
  4245. end
  4246. end
  4247. end
  4248.  
  4249.  
  4250.  
  4251. if string.find(lower,"/e removeshield ") then
  4252. local name = string.gsub(lower,"/e removeshield ","")
  4253. local player = nil
  4254.  
  4255. if name == "others" then
  4256. for i,v in pairs(game.Players:GetChildren()) do
  4257. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  4258. if game.Workspace[v.Name.."PersonalSpace"] then
  4259. game.Workspace[v.Name.."PersonalSpace"]:Destroy()
  4260. end
  4261.  
  4262. end
  4263. end
  4264. else
  4265.  
  4266. names = game.Players:GetChildren()
  4267.  
  4268. for i,v in pairs(names) do
  4269. strlower = string.lower(v.Name)
  4270. sub = string.sub(strlower,1,#name)
  4271.  
  4272. if name == sub then
  4273. player = v
  4274. if player.Name ~= game.Players.LocalPlayer.Name then
  4275. if game.Workspace[player.Name.."PersonalSpace"] then
  4276. game.Workspace[player.Name.."PersonalSpace"]:Destroy()
  4277. end
  4278. end
  4279. end
  4280. end
  4281. end
  4282. end
  4283.  
  4284. if string.find(lower,"/e :removeshield ") then
  4285. local name = string.gsub(lower,"/e :removeshield ","")
  4286. local player = nil
  4287.  
  4288. if name == "others" then
  4289. for i,v in pairs(game.Players:GetChildren()) do
  4290. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  4291. if game.Workspace[v.Name.."PersonalSpace"] then
  4292. game.Workspace[v.Name.."PersonalSpace"]:Destroy()
  4293. end
  4294.  
  4295. end
  4296. end
  4297. else
  4298.  
  4299. names = game.Players:GetChildren()
  4300.  
  4301. for i,v in pairs(names) do
  4302. strlower = string.lower(v.Name)
  4303. sub = string.sub(strlower,1,#name)
  4304.  
  4305. if name == sub then
  4306. player = v
  4307. if player.Name ~= game.Players.LocalPlayer.Name then
  4308. if game.Workspace[player.Name.."PersonalSpace"] then
  4309. game.Workspace[player.Name.."PersonalSpace"]:Destroy()
  4310. end
  4311. end
  4312. end
  4313. end
  4314. end
  4315. end
  4316.  
  4317.  
  4318.  
  4319.  
  4320. if string.find(lower,"/e shield me") then
  4321. local player = nil
  4322.  
  4323.  
  4324.  
  4325. local dab = Instance.new("Part")
  4326. dab.Parent = game.Players.LocalPlayer.Character.Torso
  4327. dab.Name = "PersonalSpace"
  4328. dab.CanCollide = false
  4329. dab.Shape = "Ball"
  4330. dab.Material = "SmoothPlastic"
  4331. dab.Transparency = 0.6
  4332. dab.Color = Color3.new(170, 255, 255)
  4333. dab.Size = Vector3.new(6.5, 6.5, 6.5)
  4334. dab.Position = game.Players.LocalPlayer.Character.Torso.Position
  4335. dab.Touched:connect(death)
  4336.  
  4337. local weld = Instance.new("Weld")
  4338. weld.Parent = game.Players.LocalPlayer.Character.Torso.PersonalSpace
  4339. weld.Part0 = weld.Parent
  4340. weld.Part1 = game.Players.LocalPlayer.Character.Torso
  4341.  
  4342.  
  4343. end
  4344.  
  4345.  
  4346. if string.find(lower,"/e :shield me") then
  4347. local player = nil
  4348.  
  4349.  
  4350.  
  4351. local dab = Instance.new("Part")
  4352. dab.Parent = game.Players.LocalPlayer.Character.Torso
  4353. dab.Name = "PersonalSpace"
  4354. dab.CanCollide = false
  4355. dab.Shape = "Ball"
  4356. dab.Material = "SmoothPlastic"
  4357. dab.Transparency = 0.6
  4358. dab.Color = Color3.new(170, 255, 255)
  4359. dab.Size = Vector3.new(6.5, 6.5, 6.5)
  4360. dab.Position = game.Players.LocalPlayer.Character.Torso.Position
  4361. dab.Touched:connect(death)
  4362.  
  4363. local weld = Instance.new("Weld")
  4364. weld.Parent = game.Players.LocalPlayer.Character.Torso.PersonalSpace
  4365. weld.Part0 = weld.Parent
  4366. weld.Part1 = game.Players.LocalPlayer.Character.Torso
  4367.  
  4368.  
  4369. end
  4370.  
  4371.  
  4372.  
  4373.  
  4374.  
  4375.  
  4376.  
  4377. if string.find(lower,"/removeshield me") then
  4378. local player = nil
  4379. if game.Players.LocalPlayer.Character.Torso.PersonalSpace then
  4380. game.Players.LocalPlayer.Character.Torso.PersonalSpace:Destroy()
  4381. end
  4382. end
  4383.  
  4384.  
  4385. if string.find(lower,"/e removeshield me") then
  4386. local player = nil
  4387. if game.Players.LocalPlayer.Character.Torso.PersonalSpace then
  4388. game.Players.LocalPlayer.Character.Torso.PersonalSpace:Destroy()
  4389. end
  4390. end
  4391.  
  4392.  
  4393. if string.find(lower,"/e :removeshield me") then
  4394. local player = nil
  4395. if game.Players.LocalPlayer.Character.Torso.PersonalSpace then
  4396. game.Players.LocalPlayer.Character.Torso.PersonalSpace:Destroy()
  4397. end
  4398. end
  4399.  
  4400.  
  4401. if string.find(lower,"/flyspeed ") then
  4402. local name = string.gsub(lower,"/flyspeed ","")
  4403. local player = nil
  4404.  
  4405. iyflyspeed = name
  4406.  
  4407. end
  4408.  
  4409.  
  4410. if string.find(lower,"/e flyspeed ") then
  4411. local name = string.gsub(lower,"/e flyspeed ","")
  4412. local player = nil
  4413.  
  4414. iyflyspeed = name
  4415.  
  4416. end
  4417.  
  4418.  
  4419. if string.find(lower,"/e :flyspeed ") then
  4420. local name = string.gsub(lower,"/e :flyspeed ","")
  4421. local player = nil
  4422.  
  4423. iyflyspeed = name
  4424.  
  4425. end
  4426.  
  4427.  
  4428.  
  4429.  
  4430. if string.find(lower,"/e deathtouch") then
  4431.  
  4432. local epic = Instance.new("Tool")
  4433. local dab = Instance.new("Part")
  4434. local plr = game.Players.LocalPlayer
  4435. local tar_obj = nil
  4436. dab.Parent = epic
  4437. dab.Size = Vector3.new(2, 2, 2)
  4438. dab.Transparency = 1
  4439. epic.Parent = plr.Backpack
  4440. epic.Name = "Death Touch"
  4441. dab.Name = "Handle"
  4442. epic.Equipped:Connect(function(m_S)
  4443. dab.Touched:connect(death)
  4444. end)
  4445. end
  4446.  
  4447. if string.find(lower,"/e :deathtouch") then
  4448.  
  4449. local epic = Instance.new("Tool")
  4450. local dab = Instance.new("Part")
  4451. local plr = game.Players.LocalPlayer
  4452. local tar_obj = nil
  4453. dab.Parent = epic
  4454. dab.Size = Vector3.new(2, 2, 2)
  4455. dab.Transparency = 1
  4456. epic.Parent = plr.Backpack
  4457. epic.Name = "Death Touch"
  4458. dab.Name = "Handle"
  4459. epic.Equipped:Connect(function(m_S)
  4460. dab.Touched:connect(death)
  4461. end)
  4462. end
  4463.  
  4464. if string.find(lower,"/deathtouch") then
  4465.  
  4466. local epic = Instance.new("Tool")
  4467. local dab = Instance.new("Part")
  4468. local plr = game.Players.LocalPlayer
  4469. local tar_obj = nil
  4470. dab.Parent = epic
  4471. dab.Size = Vector3.new(2, 2, 2)
  4472. dab.Transparency = 1
  4473. epic.Parent = plr.Backpack
  4474. epic.Name = "Death Touch"
  4475. dab.Name = "Handle"
  4476. epic.Equipped:Connect(function(m_S)
  4477. dab.Touched:connect(death)
  4478. end)
  4479. end
  4480.  
  4481. if string.find(lower,"/e spaz") then
  4482.  
  4483. local A=Instance.new'Animation'
  4484. A.AnimationId='rbxassetid://277597389'
  4485. local P=game:GetService'Players'.LocalPlayer
  4486. local C=P.Character or P.CharacterAdded:Wait()
  4487. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  4488. H:Play()
  4489.  
  4490. end
  4491.  
  4492.  
  4493. if string.find(lower,"/punch") then
  4494.  
  4495. local epic = Instance.new("Tool")
  4496. local dab = Instance.new("Part")
  4497. local plr = game.Players.LocalPlayer
  4498. local tar_obj = nil
  4499. dab.Parent = epic
  4500. dab.Size = Vector3.new(2, 2, 2)
  4501. dab.Transparency = 1
  4502. epic.Parent = plr.Backpack
  4503. epic.Name = "Punch"
  4504. dab.Name = "Handle"
  4505. epic.Equipped:Connect(function(m_S)
  4506. m_S.Button1Down:Connect(function()
  4507.  
  4508. local A=Instance.new'Animation'
  4509. A.AnimationId='rbxassetid://572551390'
  4510. local P=game:GetService'Players'.LocalPlayer
  4511. local C=P.Character or P.CharacterAdded:Wait()
  4512. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  4513. H:Play()
  4514. dab.Touched:connect(death)
  4515.  
  4516.  
  4517.  
  4518.  
  4519. end)
  4520. end)
  4521.  
  4522. end
  4523.  
  4524. if string.find(lower,"/e :punch") then
  4525.  
  4526. local epic = Instance.new("Tool")
  4527. local dab = Instance.new("Part")
  4528. local plr = game.Players.LocalPlayer
  4529. local tar_obj = nil
  4530. dab.Parent = epic
  4531. dab.Size = Vector3.new(2, 2, 2)
  4532. dab.Transparency = 1
  4533. epic.Parent = plr.Backpack
  4534. epic.Name = "Punch"
  4535. dab.Name = "Handle"
  4536. epic.Equipped:Connect(function(m_S)
  4537. m_S.Button1Down:Connect(function()
  4538.  
  4539. local A=Instance.new'Animation'
  4540. A.AnimationId='rbxassetid://572551390'
  4541. local P=game:GetService'Players'.LocalPlayer
  4542. local C=P.Character or P.CharacterAdded:Wait()
  4543. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  4544. H:Play()
  4545. dab.Touched:connect(death)
  4546.  
  4547.  
  4548.  
  4549.  
  4550. end)
  4551. end)
  4552.  
  4553. end
  4554.  
  4555. if string.find(lower,"/e punch") then
  4556.  
  4557. local epic = Instance.new("Tool")
  4558. local dab = Instance.new("Part")
  4559. local plr = game.Players.LocalPlayer
  4560. local tar_obj = nil
  4561. dab.Parent = epic
  4562. dab.Size = Vector3.new(2, 2, 2)
  4563. dab.Transparency = 1
  4564. epic.Parent = plr.Backpack
  4565. epic.Name = "Punch"
  4566. dab.Name = "Handle"
  4567. epic.Equipped:Connect(function(m_S)
  4568. m_S.Button1Down:Connect(function()
  4569.  
  4570. local A=Instance.new'Animation'
  4571. A.AnimationId='rbxassetid://572551390'
  4572. local P=game:GetService'Players'.LocalPlayer
  4573. local C=P.Character or P.CharacterAdded:Wait()
  4574. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  4575. H:Play()
  4576. dab.Touched:connect(death)
  4577.  
  4578.  
  4579.  
  4580.  
  4581. end)
  4582. end)
  4583.  
  4584. end
  4585.  
  4586.  
  4587. if string.find(lower,"/kungfu") then
  4588.  
  4589. local epic = Instance.new("Tool")
  4590. local dab = Instance.new("Part")
  4591. local plr = game.Players.LocalPlayer
  4592. local tar_obj = nil
  4593. dab.Parent = epic
  4594. dab.Size = Vector3.new(2, 2, 2)
  4595. dab.Transparency = 1
  4596. epic.Parent = plr.Backpack
  4597. epic.Name = "Punch"
  4598. dab.Name = "Handle"
  4599. epic.Equipped:Connect(function(m_S)
  4600. local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  4601. for i, track in pairs (AnimationTracks) do
  4602. track:Stop()
  4603. end
  4604. local A=Instance.new'Animation'
  4605. A.AnimationId='rbxassetid://572575467'
  4606. local P=game:GetService'Players'.LocalPlayer
  4607. local C=P.Character or P.CharacterAdded:Wait()
  4608. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  4609. H:Play()
  4610.  
  4611.  
  4612. m_S.Button1Down:Connect(function()
  4613.  
  4614. local A=Instance.new'Animation'
  4615. A.AnimationId='rbxassetid://572551390'
  4616. local P=game:GetService'Players'.LocalPlayer
  4617. local C=P.Character or P.CharacterAdded:Wait()
  4618. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  4619. H:Play()
  4620. dab.Touched:connect(death)
  4621.  
  4622.  
  4623.  
  4624.  
  4625. end)
  4626. end)
  4627.  
  4628. end
  4629.  
  4630.  
  4631. if string.find(lower,"/e :kungfu") then
  4632.  
  4633. local epic = Instance.new("Tool")
  4634. local dab = Instance.new("Part")
  4635. local plr = game.Players.LocalPlayer
  4636. local tar_obj = nil
  4637. dab.Parent = epic
  4638. dab.Size = Vector3.new(2, 2, 2)
  4639. dab.Transparency = 1
  4640. epic.Parent = plr.Backpack
  4641. epic.Name = "Punch"
  4642. dab.Name = "Handle"
  4643. epic.Equipped:Connect(function(m_S)
  4644. local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  4645. for i, track in pairs (AnimationTracks) do
  4646. track:Stop()
  4647. end
  4648. local A=Instance.new'Animation'
  4649. A.AnimationId='rbxassetid://572575467'
  4650. local P=game:GetService'Players'.LocalPlayer
  4651. local C=P.Character or P.CharacterAdded:Wait()
  4652. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  4653. H:Play()
  4654.  
  4655.  
  4656. m_S.Button1Down:Connect(function()
  4657.  
  4658. local A=Instance.new'Animation'
  4659. A.AnimationId='rbxassetid://572551390'
  4660. local P=game:GetService'Players'.LocalPlayer
  4661. local C=P.Character or P.CharacterAdded:Wait()
  4662. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  4663. H:Play()
  4664. dab.Touched:connect(death)
  4665.  
  4666.  
  4667.  
  4668.  
  4669. end)
  4670. end)
  4671.  
  4672. end
  4673.  
  4674. if string.find(lower,"/e kungfu") then
  4675.  
  4676. local epic = Instance.new("Tool")
  4677. local dab = Instance.new("Part")
  4678. local plr = game.Players.LocalPlayer
  4679. local tar_obj = nil
  4680. dab.Parent = epic
  4681. dab.Size = Vector3.new(2, 2, 2)
  4682. dab.Transparency = 1
  4683. epic.Parent = plr.Backpack
  4684. epic.Name = "Punch"
  4685. dab.Name = "Handle"
  4686. epic.Equipped:Connect(function(m_S)
  4687. local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  4688. for i, track in pairs (AnimationTracks) do
  4689. track:Stop()
  4690. end
  4691. local A=Instance.new'Animation'
  4692. A.AnimationId='rbxassetid://572575467'
  4693. local P=game:GetService'Players'.LocalPlayer
  4694. local C=P.Character or P.CharacterAdded:Wait()
  4695. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  4696. H:Play()
  4697.  
  4698.  
  4699. m_S.Button1Down:Connect(function()
  4700.  
  4701. local A=Instance.new'Animation'
  4702. A.AnimationId='rbxassetid://572551390'
  4703. local P=game:GetService'Players'.LocalPlayer
  4704. local C=P.Character or P.CharacterAdded:Wait()
  4705. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  4706. H:Play()
  4707. dab.Touched:connect(death)
  4708.  
  4709.  
  4710.  
  4711.  
  4712. end)
  4713. end)
  4714.  
  4715. end
  4716.  
  4717.  
  4718.  
  4719.  
  4720. if string.find(lower,"/weakkungfu") then
  4721.  
  4722. local epic = Instance.new("Tool")
  4723. local dab = Instance.new("Part")
  4724. local plr = game.Players.LocalPlayer
  4725. local tar_obj = nil
  4726. dab.Parent = epic
  4727. dab.Size = Vector3.new(1, 1, 1)
  4728. dab.Transparency = 1
  4729. epic.Parent = plr.Backpack
  4730. epic.Name = "Punch"
  4731. dab.Name = "Handle"
  4732. epic.Equipped:Connect(function(m_S)
  4733. local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  4734. for i, track in pairs (AnimationTracks) do
  4735. track:Stop()
  4736. end
  4737. local A=Instance.new'Animation'
  4738. A.AnimationId='rbxassetid://572575467'
  4739. local P=game:GetService'Players'.LocalPlayer
  4740. local C=P.Character or P.CharacterAdded:Wait()
  4741. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  4742. H:Play()
  4743. m_S.Button1Down:Connect(function()
  4744.  
  4745. local A=Instance.new'Animation'
  4746. A.AnimationId='rbxassetid://572551390'
  4747. local P=game:GetService'Players'.LocalPlayer
  4748. local C=P.Character or P.CharacterAdded:Wait()
  4749. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  4750. H:Play()
  4751. dab.Touched:connect(death2)
  4752.  
  4753.  
  4754.  
  4755.  
  4756. end)
  4757. end)
  4758.  
  4759.  
  4760. end
  4761.  
  4762. if string.find(lower,"/e weakkungfu") then
  4763.  
  4764. local epic = Instance.new("Tool")
  4765. local dab = Instance.new("Part")
  4766. local plr = game.Players.LocalPlayer
  4767. local tar_obj = nil
  4768. dab.Parent = epic
  4769. dab.Size = Vector3.new(1, 1, 1)
  4770. dab.Transparency = 1
  4771. epic.Parent = plr.Backpack
  4772. epic.Name = "Punch"
  4773. dab.Name = "Handle"
  4774. epic.Equipped:Connect(function(m_S)
  4775. local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  4776. for i, track in pairs (AnimationTracks) do
  4777. track:Stop()
  4778. end
  4779. local A=Instance.new'Animation'
  4780. A.AnimationId='rbxassetid://572575467'
  4781. local P=game:GetService'Players'.LocalPlayer
  4782. local C=P.Character or P.CharacterAdded:Wait()
  4783. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  4784. H:Play()
  4785. m_S.Button1Down:Connect(function()
  4786.  
  4787. local A=Instance.new'Animation'
  4788. A.AnimationId='rbxassetid://572551390'
  4789. local P=game:GetService'Players'.LocalPlayer
  4790. local C=P.Character or P.CharacterAdded:Wait()
  4791. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  4792. H:Play()
  4793. dab.Touched:connect(death2)
  4794.  
  4795.  
  4796.  
  4797.  
  4798. end)
  4799. end)
  4800.  
  4801.  
  4802. end
  4803.  
  4804.  
  4805. if string.find(lower,"/e :weakkungfu") then
  4806.  
  4807. local epic = Instance.new("Tool")
  4808. local dab = Instance.new("Part")
  4809. local plr = game.Players.LocalPlayer
  4810. local tar_obj = nil
  4811. dab.Parent = epic
  4812. dab.Size = Vector3.new(1, 1, 1)
  4813. dab.Transparency = 1
  4814. epic.Parent = plr.Backpack
  4815. epic.Name = "Punch"
  4816. dab.Name = "Handle"
  4817. epic.Equipped:Connect(function(m_S)
  4818. local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  4819. for i, track in pairs (AnimationTracks) do
  4820. track:Stop()
  4821. end
  4822. local A=Instance.new'Animation'
  4823. A.AnimationId='rbxassetid://572575467'
  4824. local P=game:GetService'Players'.LocalPlayer
  4825. local C=P.Character or P.CharacterAdded:Wait()
  4826. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  4827. H:Play()
  4828. m_S.Button1Down:Connect(function()
  4829.  
  4830. local A=Instance.new'Animation'
  4831. A.AnimationId='rbxassetid://572551390'
  4832. local P=game:GetService'Players'.LocalPlayer
  4833. local C=P.Character or P.CharacterAdded:Wait()
  4834. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  4835. H:Play()
  4836. dab.Touched:connect(death2)
  4837.  
  4838.  
  4839.  
  4840.  
  4841. end)
  4842. end)
  4843.  
  4844.  
  4845. end
  4846.  
  4847.  
  4848.  
  4849. if string.find(lower,"/ora") then
  4850.  
  4851. local epic = Instance.new("Tool")
  4852. local dab = Instance.new("Part")
  4853. local plr = game.Players.LocalPlayer
  4854. local tar_obj = nil
  4855. dab.Parent = epic
  4856. dab.Size = Vector3.new(1, 1, 1)
  4857. dab.Transparency = 1
  4858. epic.Parent = plr.Backpack
  4859. epic.Name = "ORARARA"
  4860. dab.Name = "Handle"
  4861. epic.Equipped:Connect(function(m_S)
  4862. game.ReplicatedStorage.Event:FireServer("PlayRadio", game.Players.LocalPlayer, 791374350)
  4863. m_S.Button1Down:Connect(function()
  4864.  
  4865. local A=Instance.new'Animation'
  4866. A.AnimationId='rbxassetid://572551390'
  4867. local P=game:GetService'Players'.LocalPlayer
  4868. local C=P.Character or P.CharacterAdded:Wait()
  4869. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  4870. H:Play()
  4871.  
  4872. dab.Touched:connect(death2)
  4873.  
  4874.  
  4875.  
  4876.  
  4877. end)
  4878. end)
  4879. epic.Unequipped:Connect(function()
  4880. game.ReplicatedStorage.Event:FireServer("StopRadio", game.Players.LocalPlayer)
  4881. end)
  4882.  
  4883.  
  4884. end
  4885.  
  4886.  
  4887.  
  4888. if string.find(lower,"/e ora") then
  4889.  
  4890. local epic = Instance.new("Tool")
  4891. local dab = Instance.new("Part")
  4892. local plr = game.Players.LocalPlayer
  4893. local tar_obj = nil
  4894. dab.Parent = epic
  4895. dab.Size = Vector3.new(1, 1, 1)
  4896. dab.Transparency = 1
  4897. epic.Parent = plr.Backpack
  4898. epic.Name = "ORARARA"
  4899. dab.Name = "Handle"
  4900. epic.Equipped:Connect(function(m_S)
  4901. game.ReplicatedStorage.Event:FireServer("PlayRadio", game.Players.LocalPlayer, 791374350)
  4902. m_S.Button1Down:Connect(function()
  4903.  
  4904. local A=Instance.new'Animation'
  4905. A.AnimationId='rbxassetid://572551390'
  4906. local P=game:GetService'Players'.LocalPlayer
  4907. local C=P.Character or P.CharacterAdded:Wait()
  4908. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  4909. H:Play()
  4910.  
  4911. dab.Touched:connect(death2)
  4912.  
  4913.  
  4914.  
  4915.  
  4916. end)
  4917. end)
  4918. epic.Unequipped:Connect(function()
  4919. game.ReplicatedStorage.Event:FireServer("StopRadio", game.Players.LocalPlayer)
  4920. end)
  4921.  
  4922.  
  4923. end
  4924.  
  4925.  
  4926.  
  4927. if string.find(lower,"/e :ora") then
  4928.  
  4929. local epic = Instance.new("Tool")
  4930. local dab = Instance.new("Part")
  4931. local plr = game.Players.LocalPlayer
  4932. local tar_obj = nil
  4933. dab.Parent = epic
  4934. dab.Size = Vector3.new(1, 1, 1)
  4935. dab.Transparency = 1
  4936. epic.Parent = plr.Backpack
  4937. epic.Name = "ORARARA"
  4938. dab.Name = "Handle"
  4939. epic.Equipped:Connect(function(m_S)
  4940. game.ReplicatedStorage.Event:FireServer("PlayRadio", game.Players.LocalPlayer, 791374350)
  4941. m_S.Button1Down:Connect(function()
  4942.  
  4943. local A=Instance.new'Animation'
  4944. A.AnimationId='rbxassetid://572551390'
  4945. local P=game:GetService'Players'.LocalPlayer
  4946. local C=P.Character or P.CharacterAdded:Wait()
  4947. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  4948. H:Play()
  4949.  
  4950. dab.Touched:connect(death2)
  4951.  
  4952.  
  4953.  
  4954.  
  4955. end)
  4956. end)
  4957. epic.Unequipped:Connect(function()
  4958. game.ReplicatedStorage.Event:FireServer("StopRadio", game.Players.LocalPlayer)
  4959. end)
  4960.  
  4961.  
  4962. end
  4963.  
  4964.  
  4965.  
  4966. if string.find(lower,"/charge") then
  4967.  
  4968. local epic = Instance.new("Tool")
  4969. local dab = Instance.new("Part")
  4970. local plr = game.Players.LocalPlayer
  4971. local tar_obj = nil
  4972. dab.Parent = epic
  4973. dab.Size = Vector3.new(1, 1, 1)
  4974. dab.Transparency = 1
  4975. epic.Parent = plr.Backpack
  4976. epic.Name = "epic"
  4977. dab.Name = "Handle"
  4978. epic.Equipped:Connect(function(m_S)
  4979. local A=Instance.new'Animation'
  4980. A.AnimationId='rbxassetid://320586929'
  4981. local P=game:GetService'Players'.LocalPlayer
  4982. local C=P.Character or P.CharacterAdded:Wait()
  4983. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  4984. H:Play()
  4985. dab.Touched:connect(death)
  4986. m_S.Button1Down:Connect(function()
  4987.  
  4988.  
  4989.  
  4990.  
  4991.  
  4992.  
  4993.  
  4994.  
  4995. end)
  4996. end)
  4997. epic.Unequipped:Connect(function()
  4998. local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  4999. for i, track in pairs (AnimationTracks) do
  5000. track:Stop()
  5001. end
  5002. end)
  5003.  
  5004.  
  5005. end
  5006.  
  5007.  
  5008.  
  5009. if string.find(lower,"/e charge") then
  5010.  
  5011. local epic = Instance.new("Tool")
  5012. local dab = Instance.new("Part")
  5013. local plr = game.Players.LocalPlayer
  5014. local tar_obj = nil
  5015. dab.Parent = epic
  5016. dab.Size = Vector3.new(1, 1, 1)
  5017. dab.Transparency = 1
  5018. epic.Parent = plr.Backpack
  5019. epic.Name = "epic"
  5020. dab.Name = "Handle"
  5021. epic.Equipped:Connect(function(m_S)
  5022. local A=Instance.new'Animation'
  5023. A.AnimationId='rbxassetid://320586929'
  5024. local P=game:GetService'Players'.LocalPlayer
  5025. local C=P.Character or P.CharacterAdded:Wait()
  5026. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  5027. H:Play()
  5028. dab.Touched:connect(death)
  5029. m_S.Button1Down:Connect(function()
  5030.  
  5031.  
  5032.  
  5033.  
  5034.  
  5035.  
  5036.  
  5037.  
  5038. end)
  5039. end)
  5040. epic.Unequipped:Connect(function()
  5041. local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  5042. for i, track in pairs (AnimationTracks) do
  5043. track:Stop()
  5044. end
  5045. end)
  5046.  
  5047.  
  5048. end
  5049.  
  5050. if string.find(lower,"/e :charge") then
  5051.  
  5052. local epic = Instance.new("Tool")
  5053. local dab = Instance.new("Part")
  5054. local plr = game.Players.LocalPlayer
  5055. local tar_obj = nil
  5056. dab.Parent = epic
  5057. dab.Size = Vector3.new(1, 1, 1)
  5058. dab.Transparency = 1
  5059. epic.Parent = plr.Backpack
  5060. epic.Name = "epic"
  5061. dab.Name = "Handle"
  5062. epic.Equipped:Connect(function(m_S)
  5063. local A=Instance.new'Animation'
  5064. A.AnimationId='rbxassetid://320586929'
  5065. local P=game:GetService'Players'.LocalPlayer
  5066. local C=P.Character or P.CharacterAdded:Wait()
  5067. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  5068. H:Play()
  5069. dab.Touched:connect(death)
  5070. m_S.Button1Down:Connect(function()
  5071.  
  5072.  
  5073.  
  5074.  
  5075.  
  5076.  
  5077.  
  5078.  
  5079. end)
  5080. end)
  5081. epic.Unequipped:Connect(function()
  5082. local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  5083. for i, track in pairs (AnimationTracks) do
  5084. track:Stop()
  5085. end
  5086. end)
  5087.  
  5088.  
  5089. end
  5090.  
  5091.  
  5092.  
  5093. if string.find(lower,"/tackle") then
  5094.  
  5095. local epic = Instance.new("Tool")
  5096. local dab = Instance.new("Part")
  5097. local plr = game.Players.LocalPlayer
  5098. local tar_obj = nil
  5099. dab.Parent = epic
  5100. dab.Size = Vector3.new(1, 1, 1)
  5101. dab.Transparency = 1
  5102. epic.Parent = plr.Backpack
  5103. epic.Name = "epic"
  5104. dab.Name = "Handle"
  5105. epic.Equipped:Connect(function(m_S)
  5106. local A=Instance.new'Animation'
  5107. A.AnimationId='rbxassetid://320586929'
  5108. local P=game:GetService'Players'.LocalPlayer
  5109. local C=P.Character or P.CharacterAdded:Wait()
  5110. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  5111. H:Play()
  5112. dab.Touched:connect(death)
  5113. m_S.Button1Down:Connect(function()
  5114.  
  5115.  
  5116.  
  5117.  
  5118.  
  5119.  
  5120.  
  5121.  
  5122. end)
  5123. end)
  5124. epic.Unequipped:Connect(function()
  5125. local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  5126. for i, track in pairs (AnimationTracks) do
  5127. track:Stop()
  5128. end
  5129. end)
  5130.  
  5131.  
  5132. end
  5133.  
  5134.  
  5135.  
  5136. if string.find(lower,"/e tackle") then
  5137.  
  5138. local epic = Instance.new("Tool")
  5139. local dab = Instance.new("Part")
  5140. local plr = game.Players.LocalPlayer
  5141. local tar_obj = nil
  5142. dab.Parent = epic
  5143. dab.Size = Vector3.new(1, 1, 1)
  5144. dab.Transparency = 1
  5145. epic.Parent = plr.Backpack
  5146. epic.Name = "epic"
  5147. dab.Name = "Handle"
  5148. epic.Equipped:Connect(function(m_S)
  5149. local A=Instance.new'Animation'
  5150. A.AnimationId='rbxassetid://320586929'
  5151. local P=game:GetService'Players'.LocalPlayer
  5152. local C=P.Character or P.CharacterAdded:Wait()
  5153. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  5154. H:Play()
  5155. dab.Touched:connect(death)
  5156. m_S.Button1Down:Connect(function()
  5157.  
  5158.  
  5159.  
  5160.  
  5161.  
  5162.  
  5163.  
  5164.  
  5165. end)
  5166. end)
  5167. epic.Unequipped:Connect(function()
  5168. local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  5169. for i, track in pairs (AnimationTracks) do
  5170. track:Stop()
  5171. end
  5172. end)
  5173.  
  5174.  
  5175. end
  5176.  
  5177.  
  5178.  
  5179.  
  5180. if string.find(lower,"/e :tackle") then
  5181.  
  5182. local epic = Instance.new("Tool")
  5183. local dab = Instance.new("Part")
  5184. local plr = game.Players.LocalPlayer
  5185. local tar_obj = nil
  5186. dab.Parent = epic
  5187. dab.Size = Vector3.new(1, 1, 1)
  5188. dab.Transparency = 1
  5189. epic.Parent = plr.Backpack
  5190. epic.Name = "epic"
  5191. dab.Name = "Handle"
  5192. epic.Equipped:Connect(function(m_S)
  5193. local A=Instance.new'Animation'
  5194. A.AnimationId='rbxassetid://320586929'
  5195. local P=game:GetService'Players'.LocalPlayer
  5196. local C=P.Character or P.CharacterAdded:Wait()
  5197. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  5198. H:Play()
  5199. dab.Touched:connect(death)
  5200. m_S.Button1Down:Connect(function()
  5201.  
  5202.  
  5203.  
  5204.  
  5205.  
  5206.  
  5207.  
  5208.  
  5209. end)
  5210. end)
  5211. epic.Unequipped:Connect(function()
  5212. local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  5213. for i, track in pairs (AnimationTracks) do
  5214. track:Stop()
  5215. end
  5216. end)
  5217.  
  5218.  
  5219. end
  5220.  
  5221.  
  5222. if string.find(lower,"/fly") then
  5223.  
  5224. sFLY()
  5225. flydab = true
  5226.  
  5227. end
  5228.  
  5229. if string.find(lower,"/e fly") then
  5230.  
  5231. sFLY()
  5232. flydab = true
  5233.  
  5234. end
  5235.  
  5236. if string.find(lower,"/e :fly") then
  5237.  
  5238. sFLY()
  5239. flydab = true
  5240.  
  5241. end
  5242.  
  5243.  
  5244. if string.find(lower,"/unfly") then
  5245.  
  5246. NOFLY()
  5247. flydab = false
  5248.  
  5249. end
  5250.  
  5251.  
  5252. if string.find(lower,"/e unfly") then
  5253.  
  5254. NOFLY()
  5255. flydab = false
  5256.  
  5257. end
  5258.  
  5259. if string.find(lower,"/e :unfly") then
  5260.  
  5261. NOFLY()
  5262. flydab = false
  5263.  
  5264. end
  5265.  
  5266. if string.find(lower,"/noclip") then
  5267.  
  5268.  
  5269. if game.Players.LocalPlayer:FindFirstChild("noclip") then
  5270. game.Players.LocalPlayer.noclip:Destroy()
  5271. end
  5272.  
  5273. noclip(game.Players.LocalPlayer.Name)
  5274.  
  5275.  
  5276.  
  5277. game:GetService('RunService').Stepped:connect(function()
  5278. if game.Players.LocalPlayer:FindFirstChild("noclip") then
  5279. game.Players.LocalPlayer.Character.Head.CanCollide = false
  5280. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  5281. end
  5282. end)
  5283.  
  5284.  
  5285.  
  5286. end
  5287.  
  5288. if string.find(lower,"/e noclip") then
  5289.  
  5290. if game.Players.LocalPlayer:FindFirstChild("noclip") then
  5291. game.Players.LocalPlayer.noclip:Destroy()
  5292. end
  5293.  
  5294. noclip(game.Players.LocalPlayer.Name)
  5295.  
  5296.  
  5297.  
  5298. game:GetService('RunService').Stepped:connect(function()
  5299. if game.Players.LocalPlayer:FindFirstChild("noclip") then
  5300. game.Players.LocalPlayer.Character.Head.CanCollide = false
  5301. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  5302. end
  5303. end)
  5304.  
  5305. end
  5306.  
  5307. if string.find(lower,"/e :noclip") then
  5308.  
  5309. if game.Players.LocalPlayer:FindFirstChild("noclip") then
  5310. game.Players.LocalPlayer.noclip:Destroy()
  5311. end
  5312.  
  5313. noclip(game.Players.LocalPlayer.Name)
  5314.  
  5315.  
  5316.  
  5317. game:GetService('RunService').Stepped:connect(function()
  5318. if game.Players.LocalPlayer:FindFirstChild("noclip") then
  5319. game.Players.LocalPlayer.Character.Head.CanCollide = false
  5320. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  5321. end
  5322. end)
  5323.  
  5324. end
  5325.  
  5326.  
  5327.  
  5328.  
  5329. if string.find(lower,"/nc") then
  5330.  
  5331. if game.Players.LocalPlayer:FindFirstChild("noclip") then
  5332. game.Players.LocalPlayer.noclip:Destroy()
  5333. end
  5334.  
  5335. noclip(game.Players.LocalPlayer.Name)
  5336.  
  5337.  
  5338.  
  5339. game:GetService('RunService').Stepped:connect(function()
  5340. if game.Players.LocalPlayer:FindFirstChild("noclip") then
  5341. game.Players.LocalPlayer.Character.Head.CanCollide = false
  5342. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  5343. end
  5344. end)
  5345.  
  5346. end
  5347.  
  5348. if string.find(lower,"/e nc") then
  5349.  
  5350. if game.Players.LocalPlayer:FindFirstChild("noclip") then
  5351. game.Players.LocalPlayer.noclip:Destroy()
  5352. end
  5353.  
  5354. noclip(game.Players.LocalPlayer.Name)
  5355.  
  5356.  
  5357.  
  5358. game:GetService('RunService').Stepped:connect(function()
  5359. if game.Players.LocalPlayer:FindFirstChild("noclip") then
  5360. game.Players.LocalPlayer.Character.Head.CanCollide = false
  5361. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  5362. end
  5363. end)
  5364.  
  5365. end
  5366.  
  5367. if string.find(lower,"/e :nc") then
  5368.  
  5369. if game.Players.LocalPlayer:FindFirstChild("noclip") then
  5370. game.Players.LocalPlayer.noclip:Destroy()
  5371. end
  5372.  
  5373. noclip(game.Players.LocalPlayer.Name)
  5374.  
  5375.  
  5376.  
  5377. game:GetService('RunService').Stepped:connect(function()
  5378. if game.Players.LocalPlayer:FindFirstChild("noclip") then
  5379. game.Players.LocalPlayer.Character.Head.CanCollide = false
  5380. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  5381. end
  5382. end)
  5383.  
  5384. end
  5385.  
  5386.  
  5387.  
  5388.  
  5389. if string.find(lower,"/clip") then
  5390.  
  5391. game.Players.LocalPlayer.noclip:Destroy()
  5392.  
  5393. end
  5394.  
  5395. if string.find(lower,"/e clip") then
  5396.  
  5397. game.Players.LocalPlayer.noclip:Destroy()
  5398.  
  5399. end
  5400.  
  5401. if string.find(lower,"/e :clip") then
  5402.  
  5403. game.Players.LocalPlayer.noclip:Destroy()
  5404.  
  5405. end
  5406.  
  5407.  
  5408.  
  5409.  
  5410.  
  5411.  
  5412.  
  5413. if string.find(lower,"/cmds") then
  5414. local Cmds = Instance.new("ScreenGui")
  5415. local Background = Instance.new("ImageLabel")
  5416. local Scroll = Instance.new("ScrollingFrame")
  5417. local bypass = Instance.new("TextLabel")
  5418. local cloak = Instance.new("TextLabel")
  5419. local cloakme = Instance.new("TextLabel")
  5420. local cmds = Instance.new("TextLabel")
  5421. local kill = Instance.new("TextLabel")
  5422. local stopsounds = Instance.new("TextLabel")
  5423. local ws = Instance.new("TextLabel")
  5424. local uncloakme = Instance.new("TextLabel")
  5425. local shieldme = Instance.new("TextLabel")
  5426. local e = Instance.new("TextLabel")
  5427. local wls = Instance.new("TextLabel")
  5428. local removeshieldme = Instance.new("TextLabel")
  5429. local tk2 = Instance.new("TextLabel")
  5430. local loadtools = Instance.new("TextLabel")
  5431. local tk = Instance.new("TextLabel")
  5432. local savetools = Instance.new("TextLabel")
  5433. local unview = Instance.new("TextLabel")
  5434. local skev = Instance.new("TextLabel")
  5435. local Credits = Instance.new("TextLabel")
  5436. local bulletproof = Instance.new("TextLabel")
  5437. local view = Instance.new("TextLabel")
  5438. local to = Instance.new("TextLabel")
  5439. local ungod = Instance.new("TextLabel")
  5440. local unwl = Instance.new("TextLabel")
  5441. local kev = Instance.new("TextLabel")
  5442. local playsounds = Instance.new("TextLabel")
  5443. local wl = Instance.new("TextLabel")
  5444. local removeshield = Instance.new("TextLabel")
  5445. local deathtouch = Instance.new("TextLabel")
  5446. local etwerk = Instance.new("TextLabel")
  5447. local unbulletproof = Instance.new("TextLabel")
  5448. local shield = Instance.new("TextLabel")
  5449. local kungfu = Instance.new("TextLabel")
  5450. local bringgun = Instance.new("TextLabel")
  5451. local espaz = Instance.new("TextLabel")
  5452. local kill murderer = Instance.new("TextLabel")
  5453. local kill sheriff = Instance.new("TextLabel")
  5454. local god = Instance.new("TextLabel")
  5455. local murder = Instance.new("TextLabel")
  5456. local musicgear = Instance.new("TextLabel")
  5457. local radio = Instance.new("TextLabel")
  5458. local radio all = Instance.new("TextLabel")
  5459. local printroles = Instance.new("TextLabel")
  5460. local roles = Instance.new("TextLabel")
  5461. local sheriff = Instance.new("TextLabel")
  5462. local stealsong = Instance.new("TextLabel")
  5463. local uncloak = Instance.new("TextLabel")
  5464. local radio = Instance.new("TextLabel")
  5465. local play_2 = Instance.new("TextLabel")
  5466. local stop = Instance.new("TextLabel")
  5467. local XButton = Instance.new("TextButton")
  5468.  
  5469. Cmds.Name = "Cmds"
  5470. Cmds.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  5471.  
  5472. Background.Name = "Background"
  5473. Background.Parent = Cmds
  5474. Background.BackgroundColor3 = Color3.new(1, 1, 1)
  5475. Background.Position = UDim2.new(0.324435323, 0, 0.0436432622, 0)
  5476. Background.Size = UDim2.new(0, 480, 0, 480)
  5477. Background.ZIndex = 0
  5478. Background.Image = "rbxassetid://0&hash=a9e521a7d12d33b211097c38b3339a49"
  5479. Background.Draggable = true
  5480.  
  5481. Scroll.Name = "Scroll"
  5482. Scroll.Parent = Background
  5483. Scroll.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5484. Scroll.BackgroundTransparency = 0.89999997615814
  5485. Scroll.Position = UDim2.new(-0.000695437193, 0, -0.000106737018, 0)
  5486. Scroll.Size = UDim2.new(0, 480, 0, 480)
  5487. Scroll.CanvasPosition = Vector2.new(12, 850)
  5488. Scroll.CanvasSize = UDim2.new(0, 0, 3, 0)
  5489.  
  5490. anticheat.Name = "anticheat"
  5491. anticheat.Parent = Scroll
  5492. anticheat.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5493. anticheat.BackgroundTransparency = 0.40000000596046
  5494. anticheat.Position = UDim2.new(0.0250000004, 0, 0.25230056, 0)
  5495. anticheat.Size = UDim2.new(0, 467, 0, 21)
  5496. anticheat.Font = Enum.Font.SourceSans
  5497. anticheat.Text = "/anticheat - Removes the anticheat (Needed to have more than 200 health.)"
  5498. anticheat.TextColor3 = Color3.new(1, 1, 1)
  5499. anticheat.TextScaled = true
  5500. anticheat.TextSize = 14
  5501. anticheat.TextWrapped = true
  5502. anticheat.TextXAlignment = Enum.TextXAlignment.Left
  5503.  
  5504. cloak.Name = "cloak"
  5505. cloak.Parent = Scroll
  5506. cloak.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5507. cloak.BackgroundTransparency = 0.40000000596046
  5508. cloak.Position = UDim2.new(0.0250000004, 0, 0.105984271, 0)
  5509. cloak.Size = UDim2.new(0, 467, 0, 21)
  5510. cloak.Font = Enum.Font.SourceSans
  5511. cloak.Text = "/cloak PLAYERNAME - cloaks the selected player"
  5512. cloak.TextColor3 = Color3.new(1, 1, 1)
  5513. cloak.TextScaled = true
  5514. cloak.TextSize = 14
  5515. cloak.TextWrapped = true
  5516. cloak.TextXAlignment = Enum.TextXAlignment.Left
  5517.  
  5518. cloakme.Name = "cloakme"
  5519. cloakme.Parent = Scroll
  5520. cloakme.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5521. cloakme.BackgroundTransparency = 0.40000000596046
  5522. cloakme.Position = UDim2.new(0.0250000004, 0, 0.0794738084, 0)
  5523. cloakme.Size = UDim2.new(0, 467, 0, 21)
  5524. cloakme.Font = Enum.Font.SourceSans
  5525. cloakme.Text = "/cloakme - cloaks you"
  5526. cloakme.TextColor3 = Color3.new(1, 1, 1)
  5527. cloakme.TextScaled = true
  5528. cloakme.TextSize = 14
  5529. cloakme.TextWrapped = true
  5530. cloakme.TextXAlignment = Enum.TextXAlignment.Left
  5531.  
  5532. cmds.Name = "cmds"
  5533. cmds.Parent = Scroll
  5534. cmds.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5535. cmds.BackgroundTransparency = 0.40000000596046
  5536. cmds.Position = UDim2.new(0.0250000004, 0, 0, 0)
  5537. cmds.Size = UDim2.new(0, 467, 0, 21)
  5538. cmds.Font = Enum.Font.SourceSans
  5539. cmds.Text = ":cmds - I wonder what this does."
  5540. cmds.TextColor3 = Color3.new(1, 1, 1)
  5541. cmds.TextScaled = true
  5542. cmds.TextSize = 14
  5543. cmds.TextWrapped = true
  5544. cmds.TextXAlignment = Enum.TextXAlignment.Left
  5545.  
  5546. god.Name = "god"
  5547. god.Parent = Scroll
  5548. god.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5549. god.BackgroundTransparency = 0.40000000596046
  5550. god.Position = UDim2.new(0.0250000004, 0, 0.265954584, 0)
  5551. god.Size = UDim2.new(0, 467, 0, 21)
  5552. god.Font = Enum.Font.SourceSans
  5553. god.Text = ":god - Gods you (Anticheat must be removed, or else you'll just die.)"
  5554. god.TextColor3 = Color3.new(1, 1, 1)
  5555. god.TextScaled = true
  5556. god.TextSize = 14
  5557. god.TextWrapped = true
  5558. god.TextXAlignment = Enum.TextXAlignment.Left
  5559.  
  5560. kill.Name = "kill"
  5561. kill.Parent = Scroll
  5562. kill.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5563. kill.BackgroundTransparency = 0.40000000596046
  5564. kill.Position = UDim2.new(0.0250000004, 0, 0.0134032164, 0)
  5565. kill.Size = UDim2.new(0, 467, 0, 21)
  5566. kill.Font = Enum.Font.SourceSans
  5567. kill.Text = ":kill PLAYERNAME - Kills the target"
  5568. kill.TextColor3 = Color3.new(1, 1, 1)
  5569. kill.TextScaled = true
  5570. kill.TextSize = 14
  5571. kill.TextWrapped = true
  5572. kill.TextXAlignment = Enum.TextXAlignment.Left
  5573.  
  5574. stopsounds.Name = "stopsounds"
  5575. stopsounds.Parent = Scroll
  5576. stopsounds.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5577. stopsounds.BackgroundTransparency = 0.40000000596046
  5578. stopsounds.Position = UDim2.new(0.0250000004, 0, 0.358617485, 0)
  5579. stopsounds.Size = UDim2.new(0, 467, 0, 21)
  5580. stopsounds.Font = Enum.Font.SourceSans
  5581. stopsounds.Text = ":stopsounds - Stops said ear explosion"
  5582. stopsounds.TextColor3 = Color3.new(1, 1, 1)
  5583. stopsounds.TextScaled = true
  5584. stopsounds.TextSize = 14
  5585. stopsounds.TextWrapped = true
  5586. stopsounds.TextXAlignment = Enum.TextXAlignment.Left
  5587.  
  5588. ws.Name = "ws"
  5589. ws.Parent = Scroll
  5590. ws.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5591. ws.BackgroundTransparency = 0.40000000596046
  5592. ws.Position = UDim2.new(0.0250000004, 0, 0.597816586, 0)
  5593. ws.Size = UDim2.new(0, 467, 0, 21)
  5594. ws.Font = Enum.Font.SourceSans
  5595. ws.Text = ":ws NUMBER - Changes your speed to the number"
  5596. ws.TextColor3 = Color3.new(1, 1, 1)
  5597. ws.TextScaled = true
  5598. ws.TextSize = 14
  5599. ws.TextWrapped = true
  5600. ws.TextXAlignment = Enum.TextXAlignment.Left
  5601.  
  5602. uncloakme.Name = "uncloakme"
  5603. uncloakme.Parent = Scroll
  5604. uncloakme.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5605. uncloakme.BackgroundTransparency = 0.40000000596046
  5606. uncloakme.Position = UDim2.new(0.0250000004, 0, 0.0927702859, 0)
  5607. uncloakme.Size = UDim2.new(0, 467, 0, 21)
  5608. uncloakme.Font = Enum.Font.SourceSans
  5609. uncloakme.Text = ":uncloakme - uncloaks you"
  5610. uncloakme.TextColor3 = Color3.new(1, 1, 1)
  5611. uncloakme.TextScaled = true
  5612. uncloakme.TextSize = 14
  5613. uncloakme.TextWrapped = true
  5614. uncloakme.TextXAlignment = Enum.TextXAlignment.Left
  5615.  
  5616. shieldme.Name = "shieldme"
  5617. shieldme.Parent = Scroll
  5618. shieldme.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5619. shieldme.BackgroundTransparency = 0.40000000596046
  5620. shieldme.Position = UDim2.new(0.0250000004, 0, 0.544685662, 0)
  5621. shieldme.Size = UDim2.new(0, 467, 0, 21)
  5622. shieldme.Font = Enum.Font.SourceSans
  5623. shieldme.Text = ":shield me - Puts a shield around you. Kills anyone who touches it. Only you can see it"
  5624. shieldme.TextColor3 = Color3.new(1, 1, 1)
  5625. shieldme.TextScaled = true
  5626. shieldme.TextSize = 14
  5627. shieldme.TextWrapped = true
  5628. shieldme.TextXAlignment = Enum.TextXAlignment.Left
  5629.  
  5630. e.Name = "e"
  5631. e.Parent = Scroll
  5632. e.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5633. e.BackgroundTransparency = 0.40000000596046
  5634. e.Position = UDim2.new(0.0250000022, 0, 0.477873266, 0)
  5635. e.Size = UDim2.new(0, 467, 0, 21)
  5636. e.Font = Enum.Font.SourceSans
  5637. e.Text = "/e - Stops your animations."
  5638. e.TextColor3 = Color3.new(1, 1, 1)
  5639. e.TextScaled = true
  5640. e.TextSize = 14
  5641. e.TextWrapped = true
  5642. e.TextXAlignment = Enum.TextXAlignment.Left
  5643.  
  5644. wls.Name = "wls"
  5645. wls.Parent = Scroll
  5646. wls.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5647. wls.BackgroundTransparency = 0.40000000596046
  5648. wls.Position = UDim2.new(0.0250000004, 0, 0.239279091, 0)
  5649. wls.Size = UDim2.new(0, 467, 0, 21)
  5650. wls.Font = Enum.Font.SourceSans
  5651. wls.Text = ":wls Outputs the names of whitelisted players to the dev console"
  5652. wls.TextColor3 = Color3.new(1, 1, 1)
  5653. wls.TextScaled = true
  5654. wls.TextSize = 14
  5655. wls.TextWrapped = true
  5656. wls.TextXAlignment = Enum.TextXAlignment.Left
  5657.  
  5658. removeshieldme.Name = "removeshieldme"
  5659. removeshieldme.Parent = Scroll
  5660. removeshieldme.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5661. removeshieldme.BackgroundTransparency = 0.40000000596046
  5662. removeshieldme.Position = UDim2.new(0.0250000004, 0, 0.558119655, 0)
  5663. removeshieldme.Size = UDim2.new(0, 467, 0, 21)
  5664. removeshieldme.Font = Enum.Font.SourceSans
  5665. removeshieldme.Text = ":removeshield me - Removes the shield placed on you"
  5666. removeshieldme.TextColor3 = Color3.new(1, 1, 1)
  5667. removeshieldme.TextScaled = true
  5668. removeshieldme.TextSize = 14
  5669. removeshieldme.TextWrapped = true
  5670. removeshieldme.TextXAlignment = Enum.TextXAlignment.Left
  5671.  
  5672. tk2.Name = "tk2"
  5673. tk2.Parent = Scroll
  5674. tk2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5675. tk2.BackgroundTransparency = 0.40000000596046
  5676. tk2.Position = UDim2.new(0.0250000004, 0, 0.332134485, 0)
  5677. tk2.Size = UDim2.new(0, 467, 0, 21)
  5678. tk2.Font = Enum.Font.SourceSans
  5679. tk2.Text = ":tk2 - Like tk, but loops until the player dies."
  5680. tk2.TextColor3 = Color3.new(1, 1, 1)
  5681. tk2.TextScaled = true
  5682. tk2.TextSize = 14
  5683. tk2.TextWrapped = true
  5684. tk2.TextXAlignment = Enum.TextXAlignment.Left
  5685.  
  5686. loadtools.Name = "loadtools"
  5687. loadtools.Parent = Scroll
  5688. loadtools.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5689. loadtools.BackgroundTransparency = 0.40000000596046
  5690. loadtools.Position = UDim2.new(0.0250000022, 0, 0.385292858, 0)
  5691. loadtools.Size = UDim2.new(0, 467, 0, 21)
  5692. loadtools.Font = Enum.Font.SourceSans
  5693. loadtools.Text = ":loadtools - Takes your tools out of the magic vault (For using knives and stuff in the lobby.)"
  5694. loadtools.TextColor3 = Color3.new(1, 1, 1)
  5695. loadtools.TextScaled = true
  5696. loadtools.TextSize = 14
  5697. loadtools.TextWrapped = true
  5698. loadtools.TextXAlignment = Enum.TextXAlignment.Left
  5699.  
  5700. tk.Name = "tk"
  5701. tk.Parent = Scroll
  5702. tk.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5703. tk.BackgroundTransparency = 0.40000000596046
  5704. tk.Position = UDim2.new(0.0250000004, 0, 0.318480492, 0)
  5705. tk.Size = UDim2.new(0, 467, 0, 21)
  5706. tk.Font = Enum.Font.SourceSans
  5707. tk.Text = ":tk PLAYERNAME - Test kill, takes the target's health, then drains that exact ammount away. For killing other exploiters."
  5708. tk.TextColor3 = Color3.new(1, 1, 1)
  5709. tk.TextScaled = true
  5710. tk.TextSize = 14
  5711. tk.TextWrapped = true
  5712. tk.TextXAlignment = Enum.TextXAlignment.Left
  5713.  
  5714. savetools.Name = "savetools"
  5715. savetools.Parent = Scroll
  5716. savetools.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5717. savetools.BackgroundTransparency = 0.40000000596046
  5718. savetools.Position = UDim2.new(0.0250000004, 0, 0.371638954, 0)
  5719. savetools.Size = UDim2.new(0, 467, 0, 21)
  5720. savetools.Font = Enum.Font.SourceSans
  5721. savetools.Text = ":savetools - Stores your tools in a magic vault (Stays in the vault even if you die.)"
  5722. savetools.TextColor3 = Color3.new(1, 1, 1)
  5723. savetools.TextScaled = true
  5724. savetools.TextSize = 14
  5725. savetools.TextWrapped = true
  5726. savetools.TextXAlignment = Enum.TextXAlignment.Left
  5727.  
  5728. unview.Name = "unview"
  5729. unview.Parent = Scroll
  5730. unview.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5731. unview.BackgroundTransparency = 0.40000000596046
  5732. unview.Position = UDim2.new(0.0250000004, 0, 0.584162593, 0)
  5733. unview.Size = UDim2.new(0, 467, 0, 21)
  5734. unview.Font = Enum.Font.SourceSans
  5735. unview.Text = ":unview - Unviews the target"
  5736. unview.TextColor3 = Color3.new(1, 1, 1)
  5737. unview.TextScaled = true
  5738. unview.TextSize = 14
  5739. unview.TextWrapped = true
  5740. unview.TextXAlignment = Enum.TextXAlignment.Left
  5741.  
  5742. skev.Name = "skev"
  5743. skev.Parent = Scroll
  5744. skev.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5745. skev.BackgroundTransparency = 0.40000000596046
  5746. skev.Position = UDim2.new(0.0250000004, 0, 0.41196838, 0)
  5747. skev.Size = UDim2.new(0, 467, 0, 21)
  5748. skev.Font = Enum.Font.SourceSans
  5749. skev.Text = ":skev - Same as the kev command, but checks the target's health before applying it. (To prevent dying.)"
  5750. skev.TextColor3 = Color3.new(1, 1, 1)
  5751. skev.TextScaled = true
  5752. skev.TextSize = 14
  5753. skev.TextWrapped = true
  5754. skev.TextXAlignment = Enum.TextXAlignment.Left
  5755.  
  5756. Credits.Name = "Credits"
  5757. Credits.Parent = Scroll
  5758. Credits.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5759. Credits.BackgroundTransparency = 0.40000000596046
  5760. Credits.Position = UDim2.new(0.0250000004, 0, 0.670799673, 0)
  5761. Credits.Size = UDim2.new(0, 467, 0, 21)
  5762. Credits.Font = Enum.Font.SourceSans
  5763. Credits.Text = ":credits - Shows the cool gui you saw when you executed the script."
  5764. Credits.TextColor3 = Color3.new(1, 1, 1)
  5765. Credits.TextScaled = true
  5766. Credits.TextSize = 14
  5767. Credits.TextWrapped = true
  5768. Credits.TextXAlignment = Enum.TextXAlignment.Left
  5769.  
  5770. bulletproof.Name = "bulletproof"
  5771. bulletproof.Parent = Scroll
  5772. bulletproof.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5773. bulletproof.BackgroundTransparency = 0.40000000596046
  5774. bulletproof.Position = UDim2.new(0.0250000004, 0, 0.424989879, 0)
  5775. bulletproof.Size = UDim2.new(0, 467, 0, 21)
  5776. bulletproof.Font = Enum.Font.SourceSans
  5777. bulletproof.Text = ":bulletproof PLAYERNAME - Automatically gives the target kevlar if they get shot."
  5778. bulletproof.TextColor3 = Color3.new(1, 1, 1)
  5779. bulletproof.TextScaled = true
  5780. bulletproof.TextSize = 14
  5781. bulletproof.TextWrapped = true
  5782. bulletproof.TextXAlignment = Enum.TextXAlignment.Left
  5783.  
  5784. view.Name = "view"
  5785. view.Parent = Scroll
  5786. view.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5787. view.BackgroundTransparency = 0.40000000596046
  5788. view.Position = UDim2.new(0.0250000004, 0, 0.571141005, 0)
  5789. view.Size = UDim2.new(0, 467, 0, 21)
  5790. view.Font = Enum.Font.SourceSans
  5791. view.Text = ":view PLAYERNAME - Views the target"
  5792. view.TextColor3 = Color3.new(1, 1, 1)
  5793. view.TextScaled = true
  5794. view.TextSize = 14
  5795. view.TextWrapped = true
  5796. view.TextXAlignment = Enum.TextXAlignment.Left
  5797.  
  5798. goto.Name = "goto"
  5799. goto.Parent = Scroll
  5800. goto.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5801. goto.BackgroundTransparency = 0.40000000596046
  5802. goto.Position = UDim2.new(0.0250000004, 0, 0.611250579, 0)
  5803. goto.Size = UDim2.new(0, 467, 0, 21)
  5804. goto.Font = Enum.Font.SourceSans
  5805. goto.Text = ":goto PLAYERNAME - teleports you to the target"
  5806. goto.TextColor3 = Color3.new(1, 1, 1)
  5807. goto.TextScaled = true
  5808. goto.TextSize = 14
  5809. goto.TextWrapped = true
  5810. goto.TextXAlignment = Enum.TextXAlignment.Left
  5811.  
  5812. unloopgod.Name = "unloopgod"
  5813. unloopgod.Parent = Scroll
  5814. unloopgod.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5815. unloopgod.BackgroundTransparency = 0.40000000596046
  5816. unloopgod.Position = UDim2.new(0.0250000022, 0, 0.292437524, 0)
  5817. unloopgod.Size = UDim2.new(0, 467, 0, 21)
  5818. unloopgod.Font = Enum.Font.SourceSans
  5819. unloopgod.Text = ":unloopgod - Unloopgods the you"
  5820. unloopgod.TextColor3 = Color3.new(1, 1, 1)
  5821. unloopgod.TextScaled = true
  5822. unloopgod.TextSize = 14
  5823. unloopgod.TextWrapped = true
  5824. unloopgod.TextXAlignment = Enum.TextXAlignment.Left
  5825.  
  5826. unwl.Name = "unwl"
  5827. unwl.Parent = Scroll
  5828. unwl.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5829. unwl.BackgroundTransparency = 0.40000000596046
  5830. unwl.Position = UDim2.new(0.0250000004, 0, 0.225625128, 0)
  5831. unwl.Size = UDim2.new(0, 467, 0, 21)
  5832. unwl.Font = Enum.Font.SourceSans
  5833. unwl.Text = ":unwl PLAYERNAME - Unwhitelists a player"
  5834. unwl.TextColor3 = Color3.new(1, 1, 1)
  5835. unwl.TextScaled = true
  5836. unwl.TextSize = 14
  5837. unwl.TextWrapped = true
  5838. unwl.TextXAlignment = Enum.TextXAlignment.Left
  5839.  
  5840. kev.Name = "kev"
  5841. kev.Parent = Scroll
  5842. kev.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5843. kev.BackgroundTransparency = 0.40000000596046
  5844. kev.Position = UDim2.new(0.0250000004, 0, 0.398314416, 0)
  5845. kev.Size = UDim2.new(0, 467, 0, 21)
  5846. kev.Font = Enum.Font.SourceSans
  5847. kev.Text = ":kev - Gives you kevlar. You'll die if you use this when you already have kevlar on."
  5848. kev.TextColor3 = Color3.new(1, 1, 1)
  5849. kev.TextScaled = true
  5850. kev.TextSize = 14
  5851. kev.TextWrapped = true
  5852. kev.TextXAlignment = Enum.TextXAlignment.Left
  5853.  
  5854. playsounds.Name = "playsounds"
  5855. playsounds.Parent = Scroll
  5856. playsounds.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5857. playsounds.BackgroundTransparency = 0.40000000596046
  5858. playsounds.Position = UDim2.new(0.0250000004, 0, 0.345155984, 0)
  5859. playsounds.Size = UDim2.new(0, 467, 0, 21)
  5860. playsounds.Font = Enum.Font.SourceSans
  5861. playsounds.Text = ":playsounds - Plays the sounds in the workspace, resulting in a refreshing ear explosion"
  5862. playsounds.TextColor3 = Color3.new(1, 1, 1)
  5863. playsounds.TextScaled = true
  5864. playsounds.TextSize = 14
  5865. playsounds.TextWrapped = true
  5866. playsounds.TextXAlignment = Enum.TextXAlignment.Left
  5867.  
  5868. wl.Name = "wl"
  5869. wl.Parent = Scroll
  5870. wl.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5871. wl.BackgroundTransparency = 0.40000000596046
  5872. wl.Position = UDim2.new(0.0250000004, 0, 0.212603629, 0)
  5873. wl.Size = UDim2.new(0, 467, 0, 21)
  5874. wl.Font = Enum.Font.SourceSans
  5875. wl.Text = ":wl PLAYERNAME - Whitelists a player (Let's them use commands)"
  5876. wl.TextColor3 = Color3.new(1, 1, 1)
  5877. wl.TextScaled = true
  5878. wl.TextSize = 14
  5879. wl.TextWrapped = true
  5880. wl.TextXAlignment = Enum.TextXAlignment.Left
  5881.  
  5882. removeshield.Name = "removeshield"
  5883. removeshield.Parent = Scroll
  5884. removeshield.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5885. removeshield.BackgroundTransparency = 0.40000000596046
  5886. removeshield.Position = UDim2.new(0.0250000004, 0, 0.531031668, 0)
  5887. removeshield.Size = UDim2.new(0, 467, 0, 21)
  5888. removeshield.Font = Enum.Font.SourceSans
  5889. removeshield.Text = ":removeshield PLAYERNAME - Removes the shield on the target"
  5890. removeshield.TextColor3 = Color3.new(1, 1, 1)
  5891. removeshield.TextScaled = true
  5892. removeshield.TextSize = 14
  5893. removeshield.TextWrapped = true
  5894. removeshield.TextXAlignment = Enum.TextXAlignment.Left
  5895.  
  5896. deathtouch.Name = "deathtouch"
  5897. deathtouch.Parent = Scroll
  5898. deathtouch.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5899. deathtouch.BackgroundTransparency = 0.40000000596046
  5900. deathtouch.Position = UDim2.new(0.0250000004, 0, 0.491334736, 0)
  5901. deathtouch.Size = UDim2.new(0, 467, 0, 21)
  5902. deathtouch.Font = Enum.Font.SourceSans
  5903. deathtouch.Text = ":deathtouch - Gives you a tool that kills anyone you touch with it"
  5904. deathtouch.TextColor3 = Color3.new(1, 1, 1)
  5905. deathtouch.TextScaled = true
  5906. deathtouch.TextSize = 14
  5907. deathtouch.TextWrapped = true
  5908. deathtouch.TextXAlignment = Enum.TextXAlignment.Left
  5909.  
  5910. etwerk.Name = "etwerk"
  5911. etwerk.Parent = Scroll
  5912. etwerk.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5913. etwerk.BackgroundTransparency = 0.40000000596046
  5914. etwerk.Position = UDim2.new(0.0250000004, 0, 0.451830268, 0)
  5915. etwerk.Size = UDim2.new(0, 467, 0, 21)
  5916. etwerk.Font = Enum.Font.SourceSans
  5917. etwerk.Text = "/e twerk - Bad meme, dead meme. But it's here, so enjoy. (Animation)"
  5918. etwerk.TextColor3 = Color3.new(1, 1, 1)
  5919. etwerk.TextScaled = true
  5920. etwerk.TextSize = 14
  5921. etwerk.TextWrapped = true
  5922. etwerk.TextXAlignment = Enum.TextXAlignment.Left
  5923.  
  5924. unbulletproof.Name = "unbulletproof"
  5925. unbulletproof.Parent = Scroll
  5926. unbulletproof.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5927. unbulletproof.BackgroundTransparency = 0.40000000596046
  5928. unbulletproof.Position = UDim2.new(0.0250000004, 0, 0.438176334, 0)
  5929. unbulletproof.Size = UDim2.new(0, 467, 0, 21)
  5930. unbulletproof.Font = Enum.Font.SourceSans
  5931. unbulletproof.Text = ":unbulletproof - Stops the effects of the bulletproof command."
  5932. unbulletproof.TextColor3 = Color3.new(1, 1, 1)
  5933. unbulletproof.TextScaled = true
  5934. unbulletproof.TextSize = 14
  5935. unbulletproof.TextWrapped = true
  5936. unbulletproof.TextXAlignment = Enum.TextXAlignment.Left
  5937.  
  5938. shield.Name = "shield"
  5939. shield.Parent = Scroll
  5940. shield.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5941. shield.BackgroundTransparency = 0.40000000596046
  5942. shield.Position = UDim2.new(0.0250000004, 0, 0.51801008, 0)
  5943. shield.Size = UDim2.new(0, 467, 0, 21)
  5944. shield.Font = Enum.Font.SourceSans
  5945. shield.Text = ":shield PLAYERNAME - Puts a shield around the target. Kills anyone who touches it. Only you can see it"
  5946. shield.TextColor3 = Color3.new(1, 1, 1)
  5947. shield.TextScaled = true
  5948. shield.TextSize = 14
  5949. shield.TextWrapped = true
  5950. shield.TextXAlignment = Enum.TextXAlignment.Left
  5951.  
  5952. kungfu.Name = "kungfu"
  5953. kungfu.Parent = Scroll
  5954. kungfu.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5955. kungfu.BackgroundTransparency = 0.40000000596046
  5956. kungfu.Position = UDim2.new(0.0250000004, 0, 0.50498873, 0)
  5957. kungfu.Size = UDim2.new(0, 467, 0, 21)
  5958. kungfu.Font = Enum.Font.SourceSans
  5959. kungfu.Text = ":kungfu - Gives you a tool that lets you become a kung fu god"
  5960. kungfu.TextColor3 = Color3.new(1, 1, 1)
  5961. kungfu.TextScaled = true
  5962. kungfu.TextSize = 14
  5963. kungfu.TextWrapped = true
  5964. kungfu.TextXAlignment = Enum.TextXAlignment.Left
  5965.  
  5966. bringgun.Name = "bringgun"
  5967. bringgun.Parent = Scroll
  5968. bringgun.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5969. bringgun.BackgroundTransparency = 0.40000000596046
  5970. bringgun.Position = UDim2.new(0.0250000004, 0, 0.305459023, 0)
  5971. bringgun.Size = UDim2.new(0, 467, 0, 21)
  5972. bringgun.Font = Enum.Font.SourceSans
  5973. bringgun.Text = ":bringgun - Brings the gun (Also set to a hotkey, if you press \"=\" the gun will come to you. [Might have to try multiple times.])"
  5974. bringgun.TextColor3 = Color3.new(1, 1, 1)
  5975. bringgun.TextScaled = true
  5976. bringgun.TextSize = 14
  5977. bringgun.TextWrapped = true
  5978. bringgun.TextXAlignment = Enum.TextXAlignment.Left
  5979.  
  5980. espaz.Name = "espaz"
  5981. espaz.Parent = Scroll
  5982. espaz.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5983. espaz.BackgroundTransparency = 0.40000000596046
  5984. espaz.Position = UDim2.new(0.0250000004, 0, 0.464851797, 0)
  5985. espaz.Size = UDim2.new(0, 467, 0, 21)
  5986. espaz.Font = Enum.Font.SourceSans
  5987. espaz.Text = "/e spaz - That can't be healthy for your body. (Animation)"
  5988. espaz.TextColor3 = Color3.new(1, 1, 1)
  5989. espaz.TextScaled = true
  5990. espaz.TextSize = 14
  5991. espaz.TextWrapped = true
  5992. espaz.TextXAlignment = Enum.TextXAlignment.Left
  5993.  
  5994. killmurderer.Name = "killmurderer"
  5995. killmurderer.Parent = Scroll
  5996. killmurderer.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  5997. killmurderer.BackgroundTransparency = 0.40000000596046
  5998. killmurderer.Position = UDim2.new(0.0250000004, 0, 0.185928196, 0)
  5999. killmurderer.Size = UDim2.new(0, 467, 0, 21)
  6000. killmurderer.Font = Enum.Font.SourceSans
  6001. killmurderer.Text = ":killmurderer - Kills whoever is murderer. (Works on groups.)"
  6002. killmurderer.TextColor3 = Color3.new(1, 1, 1)
  6003. killmurderer.TextScaled = true
  6004. killmurderer.TextSize = 14
  6005. killmurderer.TextWrapped = true
  6006. killmurderer.TextXAlignment = Enum.TextXAlignment.Left
  6007.  
  6008. killsheriff.Name = "killsheriff"
  6009. killsheriff.Parent = Scroll
  6010. killsheriff.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6011. killsheriff.BackgroundTransparency = 0.40000000596046
  6012. killsheriff.Position = UDim2.new(0.0250000004, 0, 0.198949665, 0)
  6013. killsheriff.Size = UDim2.new(0, 467, 0, 21)
  6014. killsheriff.Font = Enum.Font.SourceSans
  6015. killsheriff.Text = ":killsheriff - Kills whoever is sheriff. (Works on groups.)"
  6016. killsheriff.TextColor3 = Color3.new(1, 1, 1)
  6017. killsheriff.TextScaled = true
  6018. killsheriff.TextSize = 14
  6019. killsheriff.TextWrapped = true
  6020. killsheriff.TextXAlignment = Enum.TextXAlignment.Left
  6021.  
  6022. loopgod.Name = "loopgod"
  6023. loopgod.Parent = Scroll
  6024. loopgod.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6025. loopgod.BackgroundTransparency = 0.40000000596046
  6026. loopgod.Position = UDim2.new(0.0250000004, 0, 0.27878353, 0)
  6027. loopgod.Size = UDim2.new(0, 467, 0, 21)
  6028. loopgod.Font = Enum.Font.SourceSans
  6029. loopgod.Text = ":loopgod - Loopgods you."
  6030. loopgod.TextColor3 = Color3.new(1, 1, 1)
  6031. loopgod.TextScaled = true
  6032. loopgod.TextSize = 14
  6033. loopgod.TextWrapped = true
  6034. loopgod.TextXAlignment = Enum.TextXAlignment.Left
  6035.  
  6036. murder.Name = "murder"
  6037. murder.Parent = Scroll
  6038. murder.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6039. murder.BackgroundTransparency = 0.40000000596046
  6040. murder.Position = UDim2.new(0.0250000004, 0, 0.159445211, 0)
  6041. murder.Size = UDim2.new(0, 467, 0, 21)
  6042. murder.Font = Enum.Font.SourceSans
  6043. murder.Text = ":murderer - Says the name of who's murderer in chat"
  6044. murder.TextColor3 = Color3.new(1, 1, 1)
  6045. murder.TextScaled = true
  6046. murder.TextSize = 14
  6047. murder.TextWrapped = true
  6048. murder.TextXAlignment = Enum.TextXAlignment.Left
  6049.  
  6050. musicgear.Name = "musicgear"
  6051. musicgear.Parent = Scroll
  6052. musicgear.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6053. musicgear.BackgroundTransparency = 0.40000000596046
  6054. musicgear.Position = UDim2.new(0.0250000004, 0, 0.0528933853, 0)
  6055. musicgear.Size = UDim2.new(0, 467, 0, 21)
  6056. musicgear.Font = Enum.Font.SourceSans
  6057. musicgear.Text = ":music gear: SONGID - Plays a music ID on everyone's radio (For whitelisted users, or when you want to show your ID)"
  6058. musicgear.TextColor3 = Color3.new(1, 1, 1)
  6059. musicgear.TextScaled = true
  6060. musicgear.TextSize = 14
  6061. musicgear.TextWrapped = true
  6062. musicgear.TextXAlignment = Enum.TextXAlignment.Left
  6063.  
  6064. playme.Name = "playme"
  6065. playme.Parent = Scroll
  6066. playme.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6067. playme.BackgroundTransparency = 0.40000000596046
  6068. playme.Position = UDim2.new(0.0250000004, 0, 0.0395743847, 0)
  6069. playme.Size = UDim2.new(0, 467, 0, 21)
  6070. playme.Font = Enum.Font.SourceSans
  6071. playme.Text = ":play me SONGID - Plays an ID on your radio"
  6072. playme.TextColor3 = Color3.new(1, 1, 1)
  6073. playme.TextScaled = true
  6074. playme.TextSize = 14
  6075. playme.TextWrapped = true
  6076. playme.TextXAlignment = Enum.TextXAlignment.Left
  6077.  
  6078. playall.Name = "playall"
  6079. playall.Parent = Scroll
  6080. playall.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6081. playall.BackgroundTransparency = 0.40000000596046
  6082. playall.Position = UDim2.new(0.0250000004, 0, 0.0262806565, 0)
  6083. playall.Size = UDim2.new(0, 467, 0, 21)
  6084. playall.Font = Enum.Font.SourceSans
  6085. playall.Text = ":playall SONGID - Plays a music ID on everyone's radio."
  6086. playall.TextColor3 = Color3.new(1, 1, 1)
  6087. playall.TextScaled = true
  6088. playall.TextSize = 14
  6089. playall.TextWrapped = true
  6090. playall.TextXAlignment = Enum.TextXAlignment.Left
  6091.  
  6092. printroles.Name = "printroles"
  6093. printroles.Parent = Scroll
  6094. printroles.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6095. printroles.BackgroundTransparency = 0.40000000596046
  6096. printroles.Position = UDim2.new(0.0250000004, 0, 0.17246671, 0)
  6097. printroles.Size = UDim2.new(0, 467, 0, 21)
  6098. printroles.Font = Enum.Font.SourceSans
  6099. printroles.Text = ":printroles - Prints who's sheriff and who's murderer to the dev console."
  6100. printroles.TextColor3 = Color3.new(1, 1, 1)
  6101. printroles.TextScaled = true
  6102. printroles.TextSize = 14
  6103. printroles.TextWrapped = true
  6104. printroles.TextXAlignment = Enum.TextXAlignment.Left
  6105.  
  6106. roles.Name = "roles"
  6107. roles.Parent = Scroll
  6108. roles.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6109. roles.BackgroundTransparency = 0.40000000596046
  6110. roles.Position = UDim2.new(0.0250000004, 0, 0.132769749, 0)
  6111. roles.Size = UDim2.new(0, 467, 0, 21)
  6112. roles.Font = Enum.Font.SourceSans
  6113. roles.Text = ":roles - Says who's sheriff and who's murderer in the chat (:whois also works)"
  6114. roles.TextColor3 = Color3.new(1, 1, 1)
  6115. roles.TextScaled = true
  6116. roles.TextSize = 14
  6117. roles.TextWrapped = true
  6118. roles.TextXAlignment = Enum.TextXAlignment.Left
  6119.  
  6120. sheriff.Name = "sheriff"
  6121. sheriff.Parent = Scroll
  6122. sheriff.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6123. sheriff.BackgroundTransparency = 0.40000000596046
  6124. sheriff.Position = UDim2.new(0.0250000004, 0, 0.146423727, 0)
  6125. sheriff.Size = UDim2.new(0, 467, 0, 21)
  6126. sheriff.Font = Enum.Font.SourceSans
  6127. sheriff.Text = ":sheriff - Says the name of who's sheriff in chat"
  6128. sheriff.TextColor3 = Color3.new(1, 1, 1)
  6129. sheriff.TextScaled = true
  6130. sheriff.TextSize = 14
  6131. sheriff.TextWrapped = true
  6132. sheriff.TextXAlignment = Enum.TextXAlignment.Left
  6133.  
  6134. stealsong.Name = "stealsong"
  6135. stealsong.Parent = Scroll
  6136. stealsong.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6137. stealsong.BackgroundTransparency = 0.40000000596046
  6138. stealsong.Position = UDim2.new(0.0250000004, 0, 0.0666998401, 0)
  6139. stealsong.Size = UDim2.new(0, 467, 0, 21)
  6140. stealsong.Font = Enum.Font.SourceSans
  6141. stealsong.Text = ":stealsong PLAYERNAME - Steals the person's song ID (That they're playing on their radio)"
  6142. stealsong.TextColor3 = Color3.new(1, 1, 1)
  6143. stealsong.TextScaled = true
  6144. stealsong.TextSize = 14
  6145. stealsong.TextWrapped = true
  6146. stealsong.TextXAlignment = Enum.TextXAlignment.Left
  6147.  
  6148. uncloak.Name = "uncloak"
  6149. uncloak.Parent = Scroll
  6150. uncloak.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6151. uncloak.BackgroundTransparency = 0.40000000596046
  6152. uncloak.Position = UDim2.new(0.0250000004, 0, 0.119418263, 0)
  6153. uncloak.Size = UDim2.new(0, 467, 0, 21)
  6154. uncloak.Font = Enum.Font.SourceSans
  6155. uncloak.Text = ":uncloak PLAYERNAME - uncloaks the selected player"
  6156. uncloak.TextColor3 = Color3.new(1, 1, 1)
  6157. uncloak.TextScaled = true
  6158. uncloak.TextSize = 14
  6159. uncloak.TextWrapped = true
  6160. uncloak.TextXAlignment = Enum.TextXAlignment.Left
  6161.  
  6162. play.Name = "play"
  6163. play.Parent = Scroll
  6164. play.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6165. play.BackgroundTransparency = 0.40000000596046
  6166. play.Position = UDim2.new(0.0250000004, 0, 0.625833869, 0)
  6167. play.Size = UDim2.new(0, 467, 0, 21)
  6168. play.Font = Enum.Font.SourceSans
  6169. play.Text = ":play PLAYERNAME - Plays the id put into the ID GUI on the target player"
  6170. play.TextColor3 = Color3.new(1, 1, 1)
  6171. play.TextScaled = true
  6172. play.TextSize = 14
  6173. play.TextWrapped = true
  6174. play.TextXAlignment = Enum.TextXAlignment.Left
  6175.  
  6176. play_2.Name = "play"
  6177. play_2.Parent = Scroll
  6178. play_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6179. play_2.BackgroundTransparency = 0.40000000596046
  6180. play_2.Position = UDim2.new(0.0250000004, 0, 0.641806066, 0)
  6181. play_2.Size = UDim2.new(0, 467, 0, 21)
  6182. play_2.Font = Enum.Font.SourceSans
  6183. play_2.Text = ":stop PLAYERNAME - Stops the radio of the target"
  6184. play_2.TextColor3 = Color3.new(1, 1, 1)
  6185. play_2.TextScaled = true
  6186. play_2.TextSize = 14
  6187. play_2.TextWrapped = true
  6188. play_2.TextXAlignment = Enum.TextXAlignment.Left
  6189.  
  6190. stopme.Name = "stopme"
  6191. stopme.Parent = Scroll
  6192. stopme.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6193. stopme.BackgroundTransparency = 0.40000000596046
  6194. stopme.Position = UDim2.new(0.0250000004, 0, 0.656389415, 0)
  6195. stopme.Size = UDim2.new(0, 467, 0, 21)
  6196. stopme.Font = Enum.Font.SourceSans
  6197. stopme.Text = ":stop me - Stops your radio"
  6198. stopme.TextColor3 = Color3.new(1, 1, 1)
  6199. stopme.TextScaled = true
  6200. stopme.TextSize = 14
  6201. stopme.TextWrapped = true
  6202. stopme.TextXAlignment = Enum.TextXAlignment.Left
  6203.  
  6204. XButton.Name = "XButton"
  6205. XButton.Parent = Background
  6206. XButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6207. XButton.Position = UDim2.new(1, 0, 0, 0)
  6208. XButton.Size = UDim2.new(0, 30, 0, 30)
  6209. XButton.Font = Enum.Font.SciFi
  6210. XButton.Text = "X"
  6211. XButton.TextColor3 = Color3.new(1, 1, 1)
  6212. XButton.TextScaled = true
  6213. XButton.TextSize = 14
  6214. XButton.TextWrapped = true
  6215. XButton.MouseButton1Click:connect(function()
  6216. game.Players.LocalPlayer.PlayerGui.Cmds:Destroy()
  6217. end)
  6218.  
  6219.  
  6220.  
  6221. end
  6222.  
  6223. if string.find(lower,"/e cmds") then
  6224. local Cmds = Instance.new("ScreenGui")
  6225. local Background = Instance.new("ImageLabel")
  6226. local Scroll = Instance.new("ScrollingFrame")
  6227. local bypass = Instance.new("TextLabel")
  6228. local cloak = Instance.new("TextLabel")
  6229. local cloakme = Instance.new("TextLabel")
  6230. local cmds = Instance.new("TextLabel")
  6231. local kill = Instance.new("TextLabel")
  6232. local stopsounds = Instance.new("TextLabel")
  6233. local ws = Instance.new("TextLabel")
  6234. local uncloakme = Instance.new("TextLabel")
  6235. local shieldme = Instance.new("TextLabel")
  6236. local e = Instance.new("TextLabel")
  6237. local wls = Instance.new("TextLabel")
  6238. local removeshieldme = Instance.new("TextLabel")
  6239. local tk2 = Instance.new("TextLabel")
  6240. local loadtools = Instance.new("TextLabel")
  6241. local tk = Instance.new("TextLabel")
  6242. local savetools = Instance.new("TextLabel")
  6243. local unview = Instance.new("TextLabel")
  6244. local skev = Instance.new("TextLabel")
  6245. local Credits = Instance.new("TextLabel")
  6246. local bulletproof = Instance.new("TextLabel")
  6247. local view = Instance.new("TextLabel")
  6248. local to = Instance.new("TextLabel")
  6249. local ungod = Instance.new("TextLabel")
  6250. local unwl = Instance.new("TextLabel")
  6251. local kev = Instance.new("TextLabel")
  6252. local playsounds = Instance.new("TextLabel")
  6253. local wl = Instance.new("TextLabel")
  6254. local removeshield = Instance.new("TextLabel")
  6255. local deathtouch = Instance.new("TextLabel")
  6256. local etwerk = Instance.new("TextLabel")
  6257. local unbulletproof = Instance.new("TextLabel")
  6258. local shield = Instance.new("TextLabel")
  6259. local kungfu = Instance.new("TextLabel")
  6260. local bringgun = Instance.new("TextLabel")
  6261. local espaz = Instance.new("TextLabel")
  6262. local kill murderer = Instance.new("TextLabel")
  6263. local kill sheriff = Instance.new("TextLabel")
  6264. local god = Instance.new("TextLabel")
  6265. local murder = Instance.new("TextLabel")
  6266. local musicgear = Instance.new("TextLabel")
  6267. local radio = Instance.new("TextLabel")
  6268. local radio all = Instance.new("TextLabel")
  6269. local printroles = Instance.new("TextLabel")
  6270. local roles = Instance.new("TextLabel")
  6271. local sheriff = Instance.new("TextLabel")
  6272. local stealsong = Instance.new("TextLabel")
  6273. local uncloak = Instance.new("TextLabel")
  6274. local radio = Instance.new("TextLabel")
  6275. local play_2 = Instance.new("TextLabel")
  6276. local stop = Instance.new("TextLabel")
  6277. local XButton = Instance.new("TextButton")
  6278.  
  6279. Cmds.Name = "Cmds"
  6280. Cmds.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  6281.  
  6282. Background.Name = "Background"
  6283. Background.Parent = Cmds
  6284. Background.BackgroundColor3 = Color3.new(1, 1, 1)
  6285. Background.Position = UDim2.new(0.324435323, 0, 0.0436432622, 0)
  6286. Background.Size = UDim2.new(0, 480, 0, 480)
  6287. Background.ZIndex = 0
  6288. Background.Image = "rbxassetid://0&hash=a9e521a7d12d33b211097c38b3339a49"
  6289. Background.Draggable = true
  6290.  
  6291. Scroll.Name = "Scroll"
  6292. Scroll.Parent = Background
  6293. Scroll.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6294. Scroll.BackgroundTransparency = 0.89999997615814
  6295. Scroll.Position = UDim2.new(-0.000695437193, 0, -0.000106737018, 0)
  6296. Scroll.Size = UDim2.new(0, 480, 0, 480)
  6297. Scroll.CanvasPosition = Vector2.new(12, 850)
  6298. Scroll.CanvasSize = UDim2.new(0, 0, 3, 0)
  6299.  
  6300. anticheat.Name = "anticheat"
  6301. anticheat.Parent = Scroll
  6302. anticheat.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6303. anticheat.BackgroundTransparency = 0.40000000596046
  6304. anticheat.Position = UDim2.new(0.0250000004, 0, 0.25230056, 0)
  6305. anticheat.Size = UDim2.new(0, 467, 0, 21)
  6306. anticheat.Font = Enum.Font.SourceSans
  6307. anticheat.Text = ":anticheat - Removes the anticheat (Needed to have more than 200 health.)"
  6308. anticheat.TextColor3 = Color3.new(1, 1, 1)
  6309. anticheat.TextScaled = true
  6310. anticheat.TextSize = 14
  6311. anticheat.TextWrapped = true
  6312. anticheat.TextXAlignment = Enum.TextXAlignment.Left
  6313.  
  6314. cloak.Name = "cloak"
  6315. cloak.Parent = Scroll
  6316. cloak.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6317. cloak.BackgroundTransparency = 0.40000000596046
  6318. cloak.Position = UDim2.new(0.0250000004, 0, 0.105984271, 0)
  6319. cloak.Size = UDim2.new(0, 467, 0, 21)
  6320. cloak.Font = Enum.Font.SourceSans
  6321. cloak.Text = ":cloak PLAYERNAME - cloaks the selected player"
  6322. cloak.TextColor3 = Color3.new(1, 1, 1)
  6323. cloak.TextScaled = true
  6324. cloak.TextSize = 14
  6325. cloak.TextWrapped = true
  6326. cloak.TextXAlignment = Enum.TextXAlignment.Left
  6327.  
  6328. cloakme.Name = "cloakme"
  6329. cloakme.Parent = Scroll
  6330. cloakme.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6331. cloakme.BackgroundTransparency = 0.40000000596046
  6332. cloakme.Position = UDim2.new(0.0250000004, 0, 0.0794738084, 0)
  6333. cloakme.Size = UDim2.new(0, 467, 0, 21)
  6334. cloakme.Font = Enum.Font.SourceSans
  6335. cloakme.Text = ":cloakme - cloaks you"
  6336. cloakme.TextColor3 = Color3.new(1, 1, 1)
  6337. cloakme.TextScaled = true
  6338. cloakme.TextSize = 14
  6339. cloakme.TextWrapped = true
  6340. cloakme.TextXAlignment = Enum.TextXAlignment.Left
  6341.  
  6342. cmds.Name = "cmds"
  6343. cmds.Parent = Scroll
  6344. cmds.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6345. cmds.BackgroundTransparency = 0.40000000596046
  6346. cmds.Position = UDim2.new(0.0250000004, 0, 0, 0)
  6347. cmds.Size = UDim2.new(0, 467, 0, 21)
  6348. cmds.Font = Enum.Font.SourceSans
  6349. cmds.Text = ":cmds - I wonder what this does."
  6350. cmds.TextColor3 = Color3.new(1, 1, 1)
  6351. cmds.TextScaled = true
  6352. cmds.TextSize = 14
  6353. cmds.TextWrapped = true
  6354. cmds.TextXAlignment = Enum.TextXAlignment.Left
  6355.  
  6356. god.Name = "god"
  6357. god.Parent = Scroll
  6358. god.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6359. god.BackgroundTransparency = 0.40000000596046
  6360. god.Position = UDim2.new(0.0250000004, 0, 0.265954584, 0)
  6361. god.Size = UDim2.new(0, 467, 0, 21)
  6362. god.Font = Enum.Font.SourceSans
  6363. god.Text = ":god - Gods you (Anticheat must be removed, or else you'll just die.)"
  6364. god.TextColor3 = Color3.new(1, 1, 1)
  6365. god.TextScaled = true
  6366. god.TextSize = 14
  6367. god.TextWrapped = true
  6368. god.TextXAlignment = Enum.TextXAlignment.Left
  6369.  
  6370. kill.Name = "kill"
  6371. kill.Parent = Scroll
  6372. kill.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6373. kill.BackgroundTransparency = 0.40000000596046
  6374. kill.Position = UDim2.new(0.0250000004, 0, 0.0134032164, 0)
  6375. kill.Size = UDim2.new(0, 467, 0, 21)
  6376. kill.Font = Enum.Font.SourceSans
  6377. kill.Text = ":kill PLAYERNAME - Kills the target"
  6378. kill.TextColor3 = Color3.new(1, 1, 1)
  6379. kill.TextScaled = true
  6380. kill.TextSize = 14
  6381. kill.TextWrapped = true
  6382. kill.TextXAlignment = Enum.TextXAlignment.Left
  6383.  
  6384. stopsounds.Name = "stopsounds"
  6385. stopsounds.Parent = Scroll
  6386. stopsounds.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6387. stopsounds.BackgroundTransparency = 0.40000000596046
  6388. stopsounds.Position = UDim2.new(0.0250000004, 0, 0.358617485, 0)
  6389. stopsounds.Size = UDim2.new(0, 467, 0, 21)
  6390. stopsounds.Font = Enum.Font.SourceSans
  6391. stopsounds.Text = ":stopsounds - Stops said ear explosion"
  6392. stopsounds.TextColor3 = Color3.new(1, 1, 1)
  6393. stopsounds.TextScaled = true
  6394. stopsounds.TextSize = 14
  6395. stopsounds.TextWrapped = true
  6396. stopsounds.TextXAlignment = Enum.TextXAlignment.Left
  6397.  
  6398. ws.Name = "ws"
  6399. ws.Parent = Scroll
  6400. ws.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6401. ws.BackgroundTransparency = 0.40000000596046
  6402. ws.Position = UDim2.new(0.0250000004, 0, 0.597816586, 0)
  6403. ws.Size = UDim2.new(0, 467, 0, 21)
  6404. ws.Font = Enum.Font.SourceSans
  6405. ws.Text = ":ws NUMBER - Changes your speed to the number"
  6406. ws.TextColor3 = Color3.new(1, 1, 1)
  6407. ws.TextScaled = true
  6408. ws.TextSize = 14
  6409. ws.TextWrapped = true
  6410. ws.TextXAlignment = Enum.TextXAlignment.Left
  6411.  
  6412. uncloakme.Name = "uncloakme"
  6413. uncloakme.Parent = Scroll
  6414. uncloakme.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6415. uncloakme.BackgroundTransparency = 0.40000000596046
  6416. uncloakme.Position = UDim2.new(0.0250000004, 0, 0.0927702859, 0)
  6417. uncloakme.Size = UDim2.new(0, 467, 0, 21)
  6418. uncloakme.Font = Enum.Font.SourceSans
  6419. uncloakme.Text = ":uncloakme - uncloaks you"
  6420. uncloakme.TextColor3 = Color3.new(1, 1, 1)
  6421. uncloakme.TextScaled = true
  6422. uncloakme.TextSize = 14
  6423. uncloakme.TextWrapped = true
  6424. uncloakme.TextXAlignment = Enum.TextXAlignment.Left
  6425.  
  6426. shieldme.Name = "shieldme"
  6427. shieldme.Parent = Scroll
  6428. shieldme.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6429. shieldme.BackgroundTransparency = 0.40000000596046
  6430. shieldme.Position = UDim2.new(0.0250000004, 0, 0.544685662, 0)
  6431. shieldme.Size = UDim2.new(0, 467, 0, 21)
  6432. shieldme.Font = Enum.Font.SourceSans
  6433. shieldme.Text = ":shield me - Puts a shield around you. Kills anyone who touches it. Only you can see it"
  6434. shieldme.TextColor3 = Color3.new(1, 1, 1)
  6435. shieldme.TextScaled = true
  6436. shieldme.TextSize = 14
  6437. shieldme.TextWrapped = true
  6438. shieldme.TextXAlignment = Enum.TextXAlignment.Left
  6439.  
  6440. e.Name = "e"
  6441. e.Parent = Scroll
  6442. e.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6443. e.BackgroundTransparency = 0.40000000596046
  6444. e.Position = UDim2.new(0.0250000022, 0, 0.477873266, 0)
  6445. e.Size = UDim2.new(0, 467, 0, 21)
  6446. e.Font = Enum.Font.SourceSans
  6447. e.Text = "/e - Stops your animations."
  6448. e.TextColor3 = Color3.new(1, 1, 1)
  6449. e.TextScaled = true
  6450. e.TextSize = 14
  6451. e.TextWrapped = true
  6452. e.TextXAlignment = Enum.TextXAlignment.Left
  6453.  
  6454. wls.Name = "wls"
  6455. wls.Parent = Scroll
  6456. wls.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6457. wls.BackgroundTransparency = 0.40000000596046
  6458. wls.Position = UDim2.new(0.0250000004, 0, 0.239279091, 0)
  6459. wls.Size = UDim2.new(0, 467, 0, 21)
  6460. wls.Font = Enum.Font.SourceSans
  6461. wls.Text = ":wls Outputs the names of whitelisted players to the dev console"
  6462. wls.TextColor3 = Color3.new(1, 1, 1)
  6463. wls.TextScaled = true
  6464. wls.TextSize = 14
  6465. wls.TextWrapped = true
  6466. wls.TextXAlignment = Enum.TextXAlignment.Left
  6467.  
  6468. removeshieldme.Name = "removeshieldme"
  6469. removeshieldme.Parent = Scroll
  6470. removeshieldme.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6471. removeshieldme.BackgroundTransparency = 0.40000000596046
  6472. removeshieldme.Position = UDim2.new(0.0250000004, 0, 0.558119655, 0)
  6473. removeshieldme.Size = UDim2.new(0, 467, 0, 21)
  6474. removeshieldme.Font = Enum.Font.SourceSans
  6475. removeshieldme.Text = ":removeshield me - Removes the shield placed on you"
  6476. removeshieldme.TextColor3 = Color3.new(1, 1, 1)
  6477. removeshieldme.TextScaled = true
  6478. removeshieldme.TextSize = 14
  6479. removeshieldme.TextWrapped = true
  6480. removeshieldme.TextXAlignment = Enum.TextXAlignment.Left
  6481.  
  6482. tk2.Name = "tk2"
  6483. tk2.Parent = Scroll
  6484. tk2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6485. tk2.BackgroundTransparency = 0.40000000596046
  6486. tk2.Position = UDim2.new(0.0250000004, 0, 0.332134485, 0)
  6487. tk2.Size = UDim2.new(0, 467, 0, 21)
  6488. tk2.Font = Enum.Font.SourceSans
  6489. tk2.Text = ":tk2 - Like tk, but loops until the player dies."
  6490. tk2.TextColor3 = Color3.new(1, 1, 1)
  6491. tk2.TextScaled = true
  6492. tk2.TextSize = 14
  6493. tk2.TextWrapped = true
  6494. tk2.TextXAlignment = Enum.TextXAlignment.Left
  6495.  
  6496. loadtools.Name = "loadtools"
  6497. loadtools.Parent = Scroll
  6498. loadtools.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6499. loadtools.BackgroundTransparency = 0.40000000596046
  6500. loadtools.Position = UDim2.new(0.0250000022, 0, 0.385292858, 0)
  6501. loadtools.Size = UDim2.new(0, 467, 0, 21)
  6502. loadtools.Font = Enum.Font.SourceSans
  6503. loadtools.Text = ":loadtools - Takes your tools out of the magic vault (For using knives and stuff in the lobby.)"
  6504. loadtools.TextColor3 = Color3.new(1, 1, 1)
  6505. loadtools.TextScaled = true
  6506. loadtools.TextSize = 14
  6507. loadtools.TextWrapped = true
  6508. loadtools.TextXAlignment = Enum.TextXAlignment.Left
  6509.  
  6510. tk.Name = "tk"
  6511. tk.Parent = Scroll
  6512. tk.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6513. tk.BackgroundTransparency = 0.40000000596046
  6514. tk.Position = UDim2.new(0.0250000004, 0, 0.318480492, 0)
  6515. tk.Size = UDim2.new(0, 467, 0, 21)
  6516. tk.Font = Enum.Font.SourceSans
  6517. tk.Text = ":tk PLAYERNAME - Test kill, takes the target's health, then drains that exact ammount away. For killing other exploiters."
  6518. tk.TextColor3 = Color3.new(1, 1, 1)
  6519. tk.TextScaled = true
  6520. tk.TextSize = 14
  6521. tk.TextWrapped = true
  6522. tk.TextXAlignment = Enum.TextXAlignment.Left
  6523.  
  6524. savetools.Name = "savetools"
  6525. savetools.Parent = Scroll
  6526. savetools.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6527. savetools.BackgroundTransparency = 0.40000000596046
  6528. savetools.Position = UDim2.new(0.0250000004, 0, 0.371638954, 0)
  6529. savetools.Size = UDim2.new(0, 467, 0, 21)
  6530. savetools.Font = Enum.Font.SourceSans
  6531. savetools.Text = ":savetools - Stores your tools in a magic vault (Stays in the vault even if you die.)"
  6532. savetools.TextColor3 = Color3.new(1, 1, 1)
  6533. savetools.TextScaled = true
  6534. savetools.TextSize = 14
  6535. savetools.TextWrapped = true
  6536. savetools.TextXAlignment = Enum.TextXAlignment.Left
  6537.  
  6538. unview.Name = "unview"
  6539. unview.Parent = Scroll
  6540. unview.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6541. unview.BackgroundTransparency = 0.40000000596046
  6542. unview.Position = UDim2.new(0.0250000004, 0, 0.584162593, 0)
  6543. unview.Size = UDim2.new(0, 467, 0, 21)
  6544. unview.Font = Enum.Font.SourceSans
  6545. unview.Text = ":unview - Unviews the target"
  6546. unview.TextColor3 = Color3.new(1, 1, 1)
  6547. unview.TextScaled = true
  6548. unview.TextSize = 14
  6549. unview.TextWrapped = true
  6550. unview.TextXAlignment = Enum.TextXAlignment.Left
  6551.  
  6552. skev.Name = "skev"
  6553. skev.Parent = Scroll
  6554. skev.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6555. skev.BackgroundTransparency = 0.40000000596046
  6556. skev.Position = UDim2.new(0.0250000004, 0, 0.41196838, 0)
  6557. skev.Size = UDim2.new(0, 467, 0, 21)
  6558. skev.Font = Enum.Font.SourceSans
  6559. skev.Text = ":skev - Same as the kev command, but checks the target's health before applying it. (To prevent dying.)"
  6560. skev.TextColor3 = Color3.new(1, 1, 1)
  6561. skev.TextScaled = true
  6562. skev.TextSize = 14
  6563. skev.TextWrapped = true
  6564. skev.TextXAlignment = Enum.TextXAlignment.Left
  6565.  
  6566. Credits.Name = "Credits"
  6567. Credits.Parent = Scroll
  6568. Credits.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6569. Credits.BackgroundTransparency = 0.40000000596046
  6570. Credits.Position = UDim2.new(0.0250000004, 0, 0.670799673, 0)
  6571. Credits.Size = UDim2.new(0, 467, 0, 21)
  6572. Credits.Font = Enum.Font.SourceSans
  6573. Credits.Text = ":credits - Shows the cool gui you saw when you executed the script."
  6574. Credits.TextColor3 = Color3.new(1, 1, 1)
  6575. Credits.TextScaled = true
  6576. Credits.TextSize = 14
  6577. Credits.TextWrapped = true
  6578. Credits.TextXAlignment = Enum.TextXAlignment.Left
  6579.  
  6580. bulletproof.Name = "bulletproof"
  6581. bulletproof.Parent = Scroll
  6582. bulletproof.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6583. bulletproof.BackgroundTransparency = 0.40000000596046
  6584. bulletproof.Position = UDim2.new(0.0250000004, 0, 0.424989879, 0)
  6585. bulletproof.Size = UDim2.new(0, 467, 0, 21)
  6586. bulletproof.Font = Enum.Font.SourceSans
  6587. bulletproof.Text = ":bulletproof PLAYERNAME - Automatically gives the target kevlar if they get shot."
  6588. bulletproof.TextColor3 = Color3.new(1, 1, 1)
  6589. bulletproof.TextScaled = true
  6590. bulletproof.TextSize = 14
  6591. bulletproof.TextWrapped = true
  6592. bulletproof.TextXAlignment = Enum.TextXAlignment.Left
  6593.  
  6594. view.Name = "view"
  6595. view.Parent = Scroll
  6596. view.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6597. view.BackgroundTransparency = 0.40000000596046
  6598. view.Position = UDim2.new(0.0250000004, 0, 0.571141005, 0)
  6599. view.Size = UDim2.new(0, 467, 0, 21)
  6600. view.Font = Enum.Font.SourceSans
  6601. view.Text = ":view PLAYERNAME - Views the target"
  6602. view.TextColor3 = Color3.new(1, 1, 1)
  6603. view.TextScaled = true
  6604. view.TextSize = 14
  6605. view.TextWrapped = true
  6606. view.TextXAlignment = Enum.TextXAlignment.Left
  6607.  
  6608. goto.Name = "goto"
  6609. goto.Parent = Scroll
  6610. goto.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6611. goto.BackgroundTransparency = 0.40000000596046
  6612. goto.Position = UDim2.new(0.0250000004, 0, 0.611250579, 0)
  6613. goto.Size = UDim2.new(0, 467, 0, 21)
  6614. goto.Font = Enum.Font.SourceSans
  6615. goto.Text = ":goto PLAYERNAME - teleports you to the target"
  6616. goto.TextColor3 = Color3.new(1, 1, 1)
  6617. goto.TextScaled = true
  6618. goto.TextSize = 14
  6619. goto.TextWrapped = true
  6620. goto.TextXAlignment = Enum.TextXAlignment.Left
  6621.  
  6622. unloopgod.Name = "unloopgod"
  6623. unloopgod.Parent = Scroll
  6624. unloopgod.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6625. unloopgod.BackgroundTransparency = 0.40000000596046
  6626. unloopgod.Position = UDim2.new(0.0250000022, 0, 0.292437524, 0)
  6627. unloopgod.Size = UDim2.new(0, 467, 0, 21)
  6628. unloopgod.Font = Enum.Font.SourceSans
  6629. unloopgod.Text = ":unloopgod - Unloopgods the you"
  6630. unloopgod.TextColor3 = Color3.new(1, 1, 1)
  6631. unloopgod.TextScaled = true
  6632. unloopgod.TextSize = 14
  6633. unloopgod.TextWrapped = true
  6634. unloopgod.TextXAlignment = Enum.TextXAlignment.Left
  6635.  
  6636. unwl.Name = "unwl"
  6637. unwl.Parent = Scroll
  6638. unwl.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6639. unwl.BackgroundTransparency = 0.40000000596046
  6640. unwl.Position = UDim2.new(0.0250000004, 0, 0.225625128, 0)
  6641. unwl.Size = UDim2.new(0, 467, 0, 21)
  6642. unwl.Font = Enum.Font.SourceSans
  6643. unwl.Text = ":unwl PLAYERNAME - Unwhitelists a player"
  6644. unwl.TextColor3 = Color3.new(1, 1, 1)
  6645. unwl.TextScaled = true
  6646. unwl.TextSize = 14
  6647. unwl.TextWrapped = true
  6648. unwl.TextXAlignment = Enum.TextXAlignment.Left
  6649.  
  6650. kev.Name = "kev"
  6651. kev.Parent = Scroll
  6652. kev.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6653. kev.BackgroundTransparency = 0.40000000596046
  6654. kev.Position = UDim2.new(0.0250000004, 0, 0.398314416, 0)
  6655. kev.Size = UDim2.new(0, 467, 0, 21)
  6656. kev.Font = Enum.Font.SourceSans
  6657. kev.Text = ":kev - Gives you kevlar. You'll die if you use this when you already have kevlar on."
  6658. kev.TextColor3 = Color3.new(1, 1, 1)
  6659. kev.TextScaled = true
  6660. kev.TextSize = 14
  6661. kev.TextWrapped = true
  6662. kev.TextXAlignment = Enum.TextXAlignment.Left
  6663.  
  6664. playsounds.Name = "playsounds"
  6665. playsounds.Parent = Scroll
  6666. playsounds.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6667. playsounds.BackgroundTransparency = 0.40000000596046
  6668. playsounds.Position = UDim2.new(0.0250000004, 0, 0.345155984, 0)
  6669. playsounds.Size = UDim2.new(0, 467, 0, 21)
  6670. playsounds.Font = Enum.Font.SourceSans
  6671. playsounds.Text = ":playsounds - Plays the sounds in the workspace, resulting in a refreshing ear explosion"
  6672. playsounds.TextColor3 = Color3.new(1, 1, 1)
  6673. playsounds.TextScaled = true
  6674. playsounds.TextSize = 14
  6675. playsounds.TextWrapped = true
  6676. playsounds.TextXAlignment = Enum.TextXAlignment.Left
  6677.  
  6678. wl.Name = "wl"
  6679. wl.Parent = Scroll
  6680. wl.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6681. wl.BackgroundTransparency = 0.40000000596046
  6682. wl.Position = UDim2.new(0.0250000004, 0, 0.212603629, 0)
  6683. wl.Size = UDim2.new(0, 467, 0, 21)
  6684. wl.Font = Enum.Font.SourceSans
  6685. wl.Text = ":wl PLAYERNAME - Whitelists a player (Let's them use commands)"
  6686. wl.TextColor3 = Color3.new(1, 1, 1)
  6687. wl.TextScaled = true
  6688. wl.TextSize = 14
  6689. wl.TextWrapped = true
  6690. wl.TextXAlignment = Enum.TextXAlignment.Left
  6691.  
  6692. removeshield.Name = "removeshield"
  6693. removeshield.Parent = Scroll
  6694. removeshield.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6695. removeshield.BackgroundTransparency = 0.40000000596046
  6696. removeshield.Position = UDim2.new(0.0250000004, 0, 0.531031668, 0)
  6697. removeshield.Size = UDim2.new(0, 467, 0, 21)
  6698. removeshield.Font = Enum.Font.SourceSans
  6699. removeshield.Text = ":removeshield PLAYERNAME - Removes the shield on the target"
  6700. removeshield.TextColor3 = Color3.new(1, 1, 1)
  6701. removeshield.TextScaled = true
  6702. removeshield.TextSize = 14
  6703. removeshield.TextWrapped = true
  6704. removeshield.TextXAlignment = Enum.TextXAlignment.Left
  6705.  
  6706. deathtouch.Name = "deathtouch"
  6707. deathtouch.Parent = Scroll
  6708. deathtouch.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6709. deathtouch.BackgroundTransparency = 0.40000000596046
  6710. deathtouch.Position = UDim2.new(0.0250000004, 0, 0.491334736, 0)
  6711. deathtouch.Size = UDim2.new(0, 467, 0, 21)
  6712. deathtouch.Font = Enum.Font.SourceSans
  6713. deathtouch.Text = ":deathtouch - Gives you a tool that kills anyone you touch with it"
  6714. deathtouch.TextColor3 = Color3.new(1, 1, 1)
  6715. deathtouch.TextScaled = true
  6716. deathtouch.TextSize = 14
  6717. deathtouch.TextWrapped = true
  6718. deathtouch.TextXAlignment = Enum.TextXAlignment.Left
  6719.  
  6720. etwerk.Name = "etwerk"
  6721. etwerk.Parent = Scroll
  6722. etwerk.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6723. etwerk.BackgroundTransparency = 0.40000000596046
  6724. etwerk.Position = UDim2.new(0.0250000004, 0, 0.451830268, 0)
  6725. etwerk.Size = UDim2.new(0, 467, 0, 21)
  6726. etwerk.Font = Enum.Font.SourceSans
  6727. etwerk.Text = "/e twerk - Bad meme, dead meme. But it's here, so enjoy. (Animation)"
  6728. etwerk.TextColor3 = Color3.new(1, 1, 1)
  6729. etwerk.TextScaled = true
  6730. etwerk.TextSize = 14
  6731. etwerk.TextWrapped = true
  6732. etwerk.TextXAlignment = Enum.TextXAlignment.Left
  6733.  
  6734. unbulletproof.Name = "unbulletproof"
  6735. unbulletproof.Parent = Scroll
  6736. unbulletproof.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6737. unbulletproof.BackgroundTransparency = 0.40000000596046
  6738. unbulletproof.Position = UDim2.new(0.0250000004, 0, 0.438176334, 0)
  6739. unbulletproof.Size = UDim2.new(0, 467, 0, 21)
  6740. unbulletproof.Font = Enum.Font.SourceSans
  6741. unbulletproof.Text = ":unbulletproof - Stops the effects of the bulletproof command."
  6742. unbulletproof.TextColor3 = Color3.new(1, 1, 1)
  6743. unbulletproof.TextScaled = true
  6744. unbulletproof.TextSize = 14
  6745. unbulletproof.TextWrapped = true
  6746. unbulletproof.TextXAlignment = Enum.TextXAlignment.Left
  6747.  
  6748. shield.Name = "shield"
  6749. shield.Parent = Scroll
  6750. shield.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6751. shield.BackgroundTransparency = 0.40000000596046
  6752. shield.Position = UDim2.new(0.0250000004, 0, 0.51801008, 0)
  6753. shield.Size = UDim2.new(0, 467, 0, 21)
  6754. shield.Font = Enum.Font.SourceSans
  6755. shield.Text = ":shield PLAYERNAME - Puts a shield around the target. Kills anyone who touches it. Only you can see it"
  6756. shield.TextColor3 = Color3.new(1, 1, 1)
  6757. shield.TextScaled = true
  6758. shield.TextSize = 14
  6759. shield.TextWrapped = true
  6760. shield.TextXAlignment = Enum.TextXAlignment.Left
  6761.  
  6762. kungfu.Name = "kungfu"
  6763. kungfu.Parent = Scroll
  6764. kungfu.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6765. kungfu.BackgroundTransparency = 0.40000000596046
  6766. kungfu.Position = UDim2.new(0.0250000004, 0, 0.50498873, 0)
  6767. kungfu.Size = UDim2.new(0, 467, 0, 21)
  6768. kungfu.Font = Enum.Font.SourceSans
  6769. kungfu.Text = ":kungfu - Gives you a tool that lets you become a kung fu god"
  6770. kungfu.TextColor3 = Color3.new(1, 1, 1)
  6771. kungfu.TextScaled = true
  6772. kungfu.TextSize = 14
  6773. kungfu.TextWrapped = true
  6774. kungfu.TextXAlignment = Enum.TextXAlignment.Left
  6775.  
  6776. bringgun.Name = "bringgun"
  6777. bringgun.Parent = Scroll
  6778. bringgun.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6779. bringgun.BackgroundTransparency = 0.40000000596046
  6780. bringgun.Position = UDim2.new(0.0250000004, 0, 0.305459023, 0)
  6781. bringgun.Size = UDim2.new(0, 467, 0, 21)
  6782. bringgun.Font = Enum.Font.SourceSans
  6783. bringgun.Text = ":bringgun - Brings the gun (Also set to a hotkey, if you press \"=\" the gun will come to you. [Might have to try multiple times.])"
  6784. bringgun.TextColor3 = Color3.new(1, 1, 1)
  6785. bringgun.TextScaled = true
  6786. bringgun.TextSize = 14
  6787. bringgun.TextWrapped = true
  6788. bringgun.TextXAlignment = Enum.TextXAlignment.Left
  6789.  
  6790. espaz.Name = "espaz"
  6791. espaz.Parent = Scroll
  6792. espaz.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6793. espaz.BackgroundTransparency = 0.40000000596046
  6794. espaz.Position = UDim2.new(0.0250000004, 0, 0.464851797, 0)
  6795. espaz.Size = UDim2.new(0, 467, 0, 21)
  6796. espaz.Font = Enum.Font.SourceSans
  6797. espaz.Text = "/e spaz - That can't be healthy for your body. (Animation)"
  6798. espaz.TextColor3 = Color3.new(1, 1, 1)
  6799. espaz.TextScaled = true
  6800. espaz.TextSize = 14
  6801. espaz.TextWrapped = true
  6802. espaz.TextXAlignment = Enum.TextXAlignment.Left
  6803.  
  6804. killmurderer.Name = "killmurderer"
  6805. killmurderer.Parent = Scroll
  6806. killmurderer.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6807. killmurderer.BackgroundTransparency = 0.40000000596046
  6808. killmurderer.Position = UDim2.new(0.0250000004, 0, 0.185928196, 0)
  6809. killmurderer.Size = UDim2.new(0, 467, 0, 21)
  6810. killmurderer.Font = Enum.Font.SourceSans
  6811. killmurderer.Text = ":killmurderer - Kills whoever is murderer. (Works on groups.)"
  6812. killmurderer.TextColor3 = Color3.new(1, 1, 1)
  6813. killmurderer.TextScaled = true
  6814. killmurderer.TextSize = 14
  6815. killmurderer.TextWrapped = true
  6816. killmurderer.TextXAlignment = Enum.TextXAlignment.Left
  6817.  
  6818. killsheriff.Name = "killsheriff"
  6819. killsheriff.Parent = Scroll
  6820. killsheriff.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6821. killsheriff.BackgroundTransparency = 0.40000000596046
  6822. killsheriff.Position = UDim2.new(0.0250000004, 0, 0.198949665, 0)
  6823. killsheriff.Size = UDim2.new(0, 467, 0, 21)
  6824. killsheriff.Font = Enum.Font.SourceSans
  6825. killsheriff.Text = ":killsheriff - Kills whoever is sheriff. (Works on groups.)"
  6826. killsheriff.TextColor3 = Color3.new(1, 1, 1)
  6827. killsheriff.TextScaled = true
  6828. killsheriff.TextSize = 14
  6829. killsheriff.TextWrapped = true
  6830. killsheriff.TextXAlignment = Enum.TextXAlignment.Left
  6831.  
  6832. loopgod.Name = "loopgod"
  6833. loopgod.Parent = Scroll
  6834. loopgod.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6835. loopgod.BackgroundTransparency = 0.40000000596046
  6836. loopgod.Position = UDim2.new(0.0250000004, 0, 0.27878353, 0)
  6837. loopgod.Size = UDim2.new(0, 467, 0, 21)
  6838. loopgod.Font = Enum.Font.SourceSans
  6839. loopgod.Text = ":loopgod - Loopgods you."
  6840. loopgod.TextColor3 = Color3.new(1, 1, 1)
  6841. loopgod.TextScaled = true
  6842. loopgod.TextSize = 14
  6843. loopgod.TextWrapped = true
  6844. loopgod.TextXAlignment = Enum.TextXAlignment.Left
  6845.  
  6846. murder.Name = "murder"
  6847. murder.Parent = Scroll
  6848. murder.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6849. murder.BackgroundTransparency = 0.40000000596046
  6850. murder.Position = UDim2.new(0.0250000004, 0, 0.159445211, 0)
  6851. murder.Size = UDim2.new(0, 467, 0, 21)
  6852. murder.Font = Enum.Font.SourceSans
  6853. murder.Text = ":murderer - Says the name of who's murderer in chat"
  6854. murder.TextColor3 = Color3.new(1, 1, 1)
  6855. murder.TextScaled = true
  6856. murder.TextSize = 14
  6857. murder.TextWrapped = true
  6858. murder.TextXAlignment = Enum.TextXAlignment.Left
  6859.  
  6860. musicgear.Name = "musicgear"
  6861. musicgear.Parent = Scroll
  6862. musicgear.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6863. musicgear.BackgroundTransparency = 0.40000000596046
  6864. musicgear.Position = UDim2.new(0.0250000004, 0, 0.0528933853, 0)
  6865. musicgear.Size = UDim2.new(0, 467, 0, 21)
  6866. musicgear.Font = Enum.Font.SourceSans
  6867. musicgear.Text = ":music gear: SONGID - Plays a music ID on everyone's radio (For whitelisted users, or when you want to show your ID)"
  6868. musicgear.TextColor3 = Color3.new(1, 1, 1)
  6869. musicgear.TextScaled = true
  6870. musicgear.TextSize = 14
  6871. musicgear.TextWrapped = true
  6872. musicgear.TextXAlignment = Enum.TextXAlignment.Left
  6873.  
  6874. playme.Name = "playme"
  6875. playme.Parent = Scroll
  6876. playme.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6877. playme.BackgroundTransparency = 0.40000000596046
  6878. playme.Position = UDim2.new(0.0250000004, 0, 0.0395743847, 0)
  6879. playme.Size = UDim2.new(0, 467, 0, 21)
  6880. playme.Font = Enum.Font.SourceSans
  6881. playme.Text = ":play me SONGID - Plays an ID on your radio"
  6882. playme.TextColor3 = Color3.new(1, 1, 1)
  6883. playme.TextScaled = true
  6884. playme.TextSize = 14
  6885. playme.TextWrapped = true
  6886. playme.TextXAlignment = Enum.TextXAlignment.Left
  6887.  
  6888. playall.Name = "playall"
  6889. playall.Parent = Scroll
  6890. playall.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6891. playall.BackgroundTransparency = 0.40000000596046
  6892. playall.Position = UDim2.new(0.0250000004, 0, 0.0262806565, 0)
  6893. playall.Size = UDim2.new(0, 467, 0, 21)
  6894. playall.Font = Enum.Font.SourceSans
  6895. playall.Text = ":playall SONGID - Plays a music ID on everyone's radio."
  6896. playall.TextColor3 = Color3.new(1, 1, 1)
  6897. playall.TextScaled = true
  6898. playall.TextSize = 14
  6899. playall.TextWrapped = true
  6900. playall.TextXAlignment = Enum.TextXAlignment.Left
  6901.  
  6902. printroles.Name = "printroles"
  6903. printroles.Parent = Scroll
  6904. printroles.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6905. printroles.BackgroundTransparency = 0.40000000596046
  6906. printroles.Position = UDim2.new(0.0250000004, 0, 0.17246671, 0)
  6907. printroles.Size = UDim2.new(0, 467, 0, 21)
  6908. printroles.Font = Enum.Font.SourceSans
  6909. printroles.Text = ":printroles - Prints who's sheriff and who's murderer to the dev console."
  6910. printroles.TextColor3 = Color3.new(1, 1, 1)
  6911. printroles.TextScaled = true
  6912. printroles.TextSize = 14
  6913. printroles.TextWrapped = true
  6914. printroles.TextXAlignment = Enum.TextXAlignment.Left
  6915.  
  6916. roles.Name = "roles"
  6917. roles.Parent = Scroll
  6918. roles.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6919. roles.BackgroundTransparency = 0.40000000596046
  6920. roles.Position = UDim2.new(0.0250000004, 0, 0.132769749, 0)
  6921. roles.Size = UDim2.new(0, 467, 0, 21)
  6922. roles.Font = Enum.Font.SourceSans
  6923. roles.Text = ":roles - Says who's sheriff and who's murderer in the chat (:whois also works)"
  6924. roles.TextColor3 = Color3.new(1, 1, 1)
  6925. roles.TextScaled = true
  6926. roles.TextSize = 14
  6927. roles.TextWrapped = true
  6928. roles.TextXAlignment = Enum.TextXAlignment.Left
  6929.  
  6930. sheriff.Name = "sheriff"
  6931. sheriff.Parent = Scroll
  6932. sheriff.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6933. sheriff.BackgroundTransparency = 0.40000000596046
  6934. sheriff.Position = UDim2.new(0.0250000004, 0, 0.146423727, 0)
  6935. sheriff.Size = UDim2.new(0, 467, 0, 21)
  6936. sheriff.Font = Enum.Font.SourceSans
  6937. sheriff.Text = ":sheriff - Says the name of who's sheriff in chat"
  6938. sheriff.TextColor3 = Color3.new(1, 1, 1)
  6939. sheriff.TextScaled = true
  6940. sheriff.TextSize = 14
  6941. sheriff.TextWrapped = true
  6942. sheriff.TextXAlignment = Enum.TextXAlignment.Left
  6943.  
  6944. stealsong.Name = "stealsong"
  6945. stealsong.Parent = Scroll
  6946. stealsong.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6947. stealsong.BackgroundTransparency = 0.40000000596046
  6948. stealsong.Position = UDim2.new(0.0250000004, 0, 0.0666998401, 0)
  6949. stealsong.Size = UDim2.new(0, 467, 0, 21)
  6950. stealsong.Font = Enum.Font.SourceSans
  6951. stealsong.Text = ":stealsong PLAYERNAME - Steals the person's song ID (That they're playing on their radio)"
  6952. stealsong.TextColor3 = Color3.new(1, 1, 1)
  6953. stealsong.TextScaled = true
  6954. stealsong.TextSize = 14
  6955. stealsong.TextWrapped = true
  6956. stealsong.TextXAlignment = Enum.TextXAlignment.Left
  6957.  
  6958. uncloak.Name = "uncloak"
  6959. uncloak.Parent = Scroll
  6960. uncloak.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6961. uncloak.BackgroundTransparency = 0.40000000596046
  6962. uncloak.Position = UDim2.new(0.0250000004, 0, 0.119418263, 0)
  6963. uncloak.Size = UDim2.new(0, 467, 0, 21)
  6964. uncloak.Font = Enum.Font.SourceSans
  6965. uncloak.Text = ":uncloak PLAYERNAME - uncloaks the selected player"
  6966. uncloak.TextColor3 = Color3.new(1, 1, 1)
  6967. uncloak.TextScaled = true
  6968. uncloak.TextSize = 14
  6969. uncloak.TextWrapped = true
  6970. uncloak.TextXAlignment = Enum.TextXAlignment.Left
  6971.  
  6972. play.Name = "play"
  6973. play.Parent = Scroll
  6974. play.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6975. play.BackgroundTransparency = 0.40000000596046
  6976. play.Position = UDim2.new(0.0250000004, 0, 0.625833869, 0)
  6977. play.Size = UDim2.new(0, 467, 0, 21)
  6978. play.Font = Enum.Font.SourceSans
  6979. play.Text = ":play PLAYERNAME - Plays the id put into the ID GUI on the target player"
  6980. play.TextColor3 = Color3.new(1, 1, 1)
  6981. play.TextScaled = true
  6982. play.TextSize = 14
  6983. play.TextWrapped = true
  6984. play.TextXAlignment = Enum.TextXAlignment.Left
  6985.  
  6986. play_2.Name = "play"
  6987. play_2.Parent = Scroll
  6988. play_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  6989. play_2.BackgroundTransparency = 0.40000000596046
  6990. play_2.Position = UDim2.new(0.0250000004, 0, 0.641806066, 0)
  6991. play_2.Size = UDim2.new(0, 467, 0, 21)
  6992. play_2.Font = Enum.Font.SourceSans
  6993. play_2.Text = ":stop PLAYERNAME - Stops the radio of the target"
  6994. play_2.TextColor3 = Color3.new(1, 1, 1)
  6995. play_2.TextScaled = true
  6996. play_2.TextSize = 14
  6997. play_2.TextWrapped = true
  6998. play_2.TextXAlignment = Enum.TextXAlignment.Left
  6999.  
  7000. stopme.Name = "stopme"
  7001. stopme.Parent = Scroll
  7002. stopme.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7003. stopme.BackgroundTransparency = 0.40000000596046
  7004. stopme.Position = UDim2.new(0.0250000004, 0, 0.656389415, 0)
  7005. stopme.Size = UDim2.new(0, 467, 0, 21)
  7006. stopme.Font = Enum.Font.SourceSans
  7007. stopme.Text = ":stop me - Stops your radio"
  7008. stopme.TextColor3 = Color3.new(1, 1, 1)
  7009. stopme.TextScaled = true
  7010. stopme.TextSize = 14
  7011. stopme.TextWrapped = true
  7012. stopme.TextXAlignment = Enum.TextXAlignment.Left
  7013.  
  7014. XButton.Name = "XButton"
  7015. XButton.Parent = Background
  7016. XButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7017. XButton.Position = UDim2.new(1, 0, 0, 0)
  7018. XButton.Size = UDim2.new(0, 30, 0, 30)
  7019. XButton.Font = Enum.Font.SciFi
  7020. XButton.Text = "X"
  7021. XButton.TextColor3 = Color3.new(1, 1, 1)
  7022. XButton.TextScaled = true
  7023. XButton.TextSize = 14
  7024. XButton.TextWrapped = true
  7025. XButton.MouseButton1Click:connect(function()
  7026. game.Players.LocalPlayer.PlayerGui.Cmds:Destroy()
  7027. end)
  7028.  
  7029.  
  7030.  
  7031. end
  7032.  
  7033. if string.find(lower,"/e :cmds") then
  7034. local Cmds = Instance.new("ScreenGui")
  7035. local Background = Instance.new("ImageLabel")
  7036. local Scroll = Instance.new("ScrollingFrame")
  7037. local bypass = Instance.new("TextLabel")
  7038. local cloak = Instance.new("TextLabel")
  7039. local cloakme = Instance.new("TextLabel")
  7040. local cmds = Instance.new("TextLabel")
  7041. local kill = Instance.new("TextLabel")
  7042. local stopsounds = Instance.new("TextLabel")
  7043. local ws = Instance.new("TextLabel")
  7044. local uncloakme = Instance.new("TextLabel")
  7045. local shieldme = Instance.new("TextLabel")
  7046. local e = Instance.new("TextLabel")
  7047. local wls = Instance.new("TextLabel")
  7048. local removeshieldme = Instance.new("TextLabel")
  7049. local tk2 = Instance.new("TextLabel")
  7050. local loadtools = Instance.new("TextLabel")
  7051. local tk = Instance.new("TextLabel")
  7052. local savetools = Instance.new("TextLabel")
  7053. local unview = Instance.new("TextLabel")
  7054. local skev = Instance.new("TextLabel")
  7055. local Credits = Instance.new("TextLabel")
  7056. local bulletproof = Instance.new("TextLabel")
  7057. local view = Instance.new("TextLabel")
  7058. local to = Instance.new("TextLabel")
  7059. local ungod = Instance.new("TextLabel")
  7060. local unwl = Instance.new("TextLabel")
  7061. local kev = Instance.new("TextLabel")
  7062. local playsounds = Instance.new("TextLabel")
  7063. local wl = Instance.new("TextLabel")
  7064. local removeshield = Instance.new("TextLabel")
  7065. local deathtouch = Instance.new("TextLabel")
  7066. local etwerk = Instance.new("TextLabel")
  7067. local unbulletproof = Instance.new("TextLabel")
  7068. local shield = Instance.new("TextLabel")
  7069. local kungfu = Instance.new("TextLabel")
  7070. local bringgun = Instance.new("TextLabel")
  7071. local espaz = Instance.new("TextLabel")
  7072. local kill murderer = Instance.new("TextLabel")
  7073. local kill sheriff = Instance.new("TextLabel")
  7074. local god = Instance.new("TextLabel")
  7075. local murder = Instance.new("TextLabel")
  7076. local musicgear = Instance.new("TextLabel")
  7077. local radio = Instance.new("TextLabel")
  7078. local radio all = Instance.new("TextLabel")
  7079. local printroles = Instance.new("TextLabel")
  7080. local roles = Instance.new("TextLabel")
  7081. local sheriff = Instance.new("TextLabel")
  7082. local stealsong = Instance.new("TextLabel")
  7083. local uncloak = Instance.new("TextLabel")
  7084. local radio = Instance.new("TextLabel")
  7085. local play_2 = Instance.new("TextLabel")
  7086. local stop = Instance.new("TextLabel")
  7087. local XButton = Instance.new("TextButton")
  7088.  
  7089. Cmds.Name = "Cmds"
  7090. Cmds.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  7091.  
  7092. Background.Name = "Background"
  7093. Background.Parent = Cmds
  7094. Background.BackgroundColor3 = Color3.new(1, 1, 1)
  7095. Background.Position = UDim2.new(0.324435323, 0, 0.0436432622, 0)
  7096. Background.Size = UDim2.new(0, 480, 0, 480)
  7097. Background.ZIndex = 0
  7098. Background.Image = "rbxassetid://0&hash=a9e521a7d12d33b211097c38b3339a49"
  7099. Background.Draggable = true
  7100.  
  7101. Scroll.Name = "Scroll"
  7102. Scroll.Parent = Background
  7103. Scroll.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7104. Scroll.BackgroundTransparency = 0.89999997615814
  7105. Scroll.Position = UDim2.new(-0.000695437193, 0, -0.000106737018, 0)
  7106. Scroll.Size = UDim2.new(0, 480, 0, 480)
  7107. Scroll.CanvasPosition = Vector2.new(12, 850)
  7108. Scroll.CanvasSize = UDim2.new(0, 0, 3, 0)
  7109.  
  7110. anticheat.Name = "anticheat"
  7111. anticheat.Parent = Scroll
  7112. anticheat.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7113. anticheat.BackgroundTransparency = 0.40000000596046
  7114. anticheat.Position = UDim2.new(0.0250000004, 0, 0.25230056, 0)
  7115. anticheat.Size = UDim2.new(0, 467, 0, 21)
  7116. anticheat.Font = Enum.Font.SourceSans
  7117. anticheat.Text = ":anticheat - Removes the anticheat (Needed to have more than 200 health.)"
  7118. anticheat.TextColor3 = Color3.new(1, 1, 1)
  7119. anticheat.TextScaled = true
  7120. anticheat.TextSize = 14
  7121. anticheat.TextWrapped = true
  7122. anticheat.TextXAlignment = Enum.TextXAlignment.Left
  7123.  
  7124. cloak.Name = "cloak"
  7125. cloak.Parent = Scroll
  7126. cloak.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7127. cloak.BackgroundTransparency = 0.40000000596046
  7128. cloak.Position = UDim2.new(0.0250000004, 0, 0.105984271, 0)
  7129. cloak.Size = UDim2.new(0, 467, 0, 21)
  7130. cloak.Font = Enum.Font.SourceSans
  7131. cloak.Text = ":cloak PLAYERNAME - cloaks the selected player"
  7132. cloak.TextColor3 = Color3.new(1, 1, 1)
  7133. cloak.TextScaled = true
  7134. cloak.TextSize = 14
  7135. cloak.TextWrapped = true
  7136. cloak.TextXAlignment = Enum.TextXAlignment.Left
  7137.  
  7138. cloakme.Name = "cloakme"
  7139. cloakme.Parent = Scroll
  7140. cloakme.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7141. cloakme.BackgroundTransparency = 0.40000000596046
  7142. cloakme.Position = UDim2.new(0.0250000004, 0, 0.0794738084, 0)
  7143. cloakme.Size = UDim2.new(0, 467, 0, 21)
  7144. cloakme.Font = Enum.Font.SourceSans
  7145. cloakme.Text = ":cloakme - cloaks you"
  7146. cloakme.TextColor3 = Color3.new(1, 1, 1)
  7147. cloakme.TextScaled = true
  7148. cloakme.TextSize = 14
  7149. cloakme.TextWrapped = true
  7150. cloakme.TextXAlignment = Enum.TextXAlignment.Left
  7151.  
  7152. cmds.Name = "cmds"
  7153. cmds.Parent = Scroll
  7154. cmds.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7155. cmds.BackgroundTransparency = 0.40000000596046
  7156. cmds.Position = UDim2.new(0.0250000004, 0, 0, 0)
  7157. cmds.Size = UDim2.new(0, 467, 0, 21)
  7158. cmds.Font = Enum.Font.SourceSans
  7159. cmds.Text = ":cmds - I wonder what this does."
  7160. cmds.TextColor3 = Color3.new(1, 1, 1)
  7161. cmds.TextScaled = true
  7162. cmds.TextSize = 14
  7163. cmds.TextWrapped = true
  7164. cmds.TextXAlignment = Enum.TextXAlignment.Left
  7165.  
  7166. god.Name = "god"
  7167. god.Parent = Scroll
  7168. god.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7169. god.BackgroundTransparency = 0.40000000596046
  7170. god.Position = UDim2.new(0.0250000004, 0, 0.265954584, 0)
  7171. god.Size = UDim2.new(0, 467, 0, 21)
  7172. god.Font = Enum.Font.SourceSans
  7173. god.Text = ":god - Gods you (Anticheat must be removed, or else you'll just die.)"
  7174. god.TextColor3 = Color3.new(1, 1, 1)
  7175. god.TextScaled = true
  7176. god.TextSize = 14
  7177. god.TextWrapped = true
  7178. god.TextXAlignment = Enum.TextXAlignment.Left
  7179.  
  7180. kill.Name = "kill"
  7181. kill.Parent = Scroll
  7182. kill.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7183. kill.BackgroundTransparency = 0.40000000596046
  7184. kill.Position = UDim2.new(0.0250000004, 0, 0.0134032164, 0)
  7185. kill.Size = UDim2.new(0, 467, 0, 21)
  7186. kill.Font = Enum.Font.SourceSans
  7187. kill.Text = ":kill PLAYERNAME - Kills the target"
  7188. kill.TextColor3 = Color3.new(1, 1, 1)
  7189. kill.TextScaled = true
  7190. kill.TextSize = 14
  7191. kill.TextWrapped = true
  7192. kill.TextXAlignment = Enum.TextXAlignment.Left
  7193.  
  7194. stopsounds.Name = "stopsounds"
  7195. stopsounds.Parent = Scroll
  7196. stopsounds.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7197. stopsounds.BackgroundTransparency = 0.40000000596046
  7198. stopsounds.Position = UDim2.new(0.0250000004, 0, 0.358617485, 0)
  7199. stopsounds.Size = UDim2.new(0, 467, 0, 21)
  7200. stopsounds.Font = Enum.Font.SourceSans
  7201. stopsounds.Text = ":stopsounds - Stops said ear explosion"
  7202. stopsounds.TextColor3 = Color3.new(1, 1, 1)
  7203. stopsounds.TextScaled = true
  7204. stopsounds.TextSize = 14
  7205. stopsounds.TextWrapped = true
  7206. stopsounds.TextXAlignment = Enum.TextXAlignment.Left
  7207.  
  7208. ws.Name = "ws"
  7209. ws.Parent = Scroll
  7210. ws.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7211. ws.BackgroundTransparency = 0.40000000596046
  7212. ws.Position = UDim2.new(0.0250000004, 0, 0.597816586, 0)
  7213. ws.Size = UDim2.new(0, 467, 0, 21)
  7214. ws.Font = Enum.Font.SourceSans
  7215. ws.Text = ":ws NUMBER - Changes your speed to the number"
  7216. ws.TextColor3 = Color3.new(1, 1, 1)
  7217. ws.TextScaled = true
  7218. ws.TextSize = 14
  7219. ws.TextWrapped = true
  7220. ws.TextXAlignment = Enum.TextXAlignment.Left
  7221.  
  7222. uncloakme.Name = "uncloakme"
  7223. uncloakme.Parent = Scroll
  7224. uncloakme.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7225. uncloakme.BackgroundTransparency = 0.40000000596046
  7226. uncloakme.Position = UDim2.new(0.0250000004, 0, 0.0927702859, 0)
  7227. uncloakme.Size = UDim2.new(0, 467, 0, 21)
  7228. uncloakme.Font = Enum.Font.SourceSans
  7229. uncloakme.Text = ":uncloakme - uncloaks you"
  7230. uncloakme.TextColor3 = Color3.new(1, 1, 1)
  7231. uncloakme.TextScaled = true
  7232. uncloakme.TextSize = 14
  7233. uncloakme.TextWrapped = true
  7234. uncloakme.TextXAlignment = Enum.TextXAlignment.Left
  7235.  
  7236. shieldme.Name = "shieldme"
  7237. shieldme.Parent = Scroll
  7238. shieldme.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7239. shieldme.BackgroundTransparency = 0.40000000596046
  7240. shieldme.Position = UDim2.new(0.0250000004, 0, 0.544685662, 0)
  7241. shieldme.Size = UDim2.new(0, 467, 0, 21)
  7242. shieldme.Font = Enum.Font.SourceSans
  7243. shieldme.Text = ":shield me - Puts a shield around you. Kills anyone who touches it. Only you can see it"
  7244. shieldme.TextColor3 = Color3.new(1, 1, 1)
  7245. shieldme.TextScaled = true
  7246. shieldme.TextSize = 14
  7247. shieldme.TextWrapped = true
  7248. shieldme.TextXAlignment = Enum.TextXAlignment.Left
  7249.  
  7250. e.Name = "e"
  7251. e.Parent = Scroll
  7252. e.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7253. e.BackgroundTransparency = 0.40000000596046
  7254. e.Position = UDim2.new(0.0250000022, 0, 0.477873266, 0)
  7255. e.Size = UDim2.new(0, 467, 0, 21)
  7256. e.Font = Enum.Font.SourceSans
  7257. e.Text = "/e - Stops your animations."
  7258. e.TextColor3 = Color3.new(1, 1, 1)
  7259. e.TextScaled = true
  7260. e.TextSize = 14
  7261. e.TextWrapped = true
  7262. e.TextXAlignment = Enum.TextXAlignment.Left
  7263.  
  7264. wls.Name = "wls"
  7265. wls.Parent = Scroll
  7266. wls.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7267. wls.BackgroundTransparency = 0.40000000596046
  7268. wls.Position = UDim2.new(0.0250000004, 0, 0.239279091, 0)
  7269. wls.Size = UDim2.new(0, 467, 0, 21)
  7270. wls.Font = Enum.Font.SourceSans
  7271. wls.Text = ":wls Outputs the names of whitelisted players to the dev console"
  7272. wls.TextColor3 = Color3.new(1, 1, 1)
  7273. wls.TextScaled = true
  7274. wls.TextSize = 14
  7275. wls.TextWrapped = true
  7276. wls.TextXAlignment = Enum.TextXAlignment.Left
  7277.  
  7278. removeshieldme.Name = "removeshieldme"
  7279. removeshieldme.Parent = Scroll
  7280. removeshieldme.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7281. removeshieldme.BackgroundTransparency = 0.40000000596046
  7282. removeshieldme.Position = UDim2.new(0.0250000004, 0, 0.558119655, 0)
  7283. removeshieldme.Size = UDim2.new(0, 467, 0, 21)
  7284. removeshieldme.Font = Enum.Font.SourceSans
  7285. removeshieldme.Text = ":removeshield me - Removes the shield placed on you"
  7286. removeshieldme.TextColor3 = Color3.new(1, 1, 1)
  7287. removeshieldme.TextScaled = true
  7288. removeshieldme.TextSize = 14
  7289. removeshieldme.TextWrapped = true
  7290. removeshieldme.TextXAlignment = Enum.TextXAlignment.Left
  7291.  
  7292. tk2.Name = "tk2"
  7293. tk2.Parent = Scroll
  7294. tk2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7295. tk2.BackgroundTransparency = 0.40000000596046
  7296. tk2.Position = UDim2.new(0.0250000004, 0, 0.332134485, 0)
  7297. tk2.Size = UDim2.new(0, 467, 0, 21)
  7298. tk2.Font = Enum.Font.SourceSans
  7299. tk2.Text = ":tk2 - Like tk, but loops until the player dies."
  7300. tk2.TextColor3 = Color3.new(1, 1, 1)
  7301. tk2.TextScaled = true
  7302. tk2.TextSize = 14
  7303. tk2.TextWrapped = true
  7304. tk2.TextXAlignment = Enum.TextXAlignment.Left
  7305.  
  7306. loadtools.Name = "loadtools"
  7307. loadtools.Parent = Scroll
  7308. loadtools.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7309. loadtools.BackgroundTransparency = 0.40000000596046
  7310. loadtools.Position = UDim2.new(0.0250000022, 0, 0.385292858, 0)
  7311. loadtools.Size = UDim2.new(0, 467, 0, 21)
  7312. loadtools.Font = Enum.Font.SourceSans
  7313. loadtools.Text = ":loadtools - Takes your tools out of the magic vault (For using knives and stuff in the lobby.)"
  7314. loadtools.TextColor3 = Color3.new(1, 1, 1)
  7315. loadtools.TextScaled = true
  7316. loadtools.TextSize = 14
  7317. loadtools.TextWrapped = true
  7318. loadtools.TextXAlignment = Enum.TextXAlignment.Left
  7319.  
  7320. tk.Name = "tk"
  7321. tk.Parent = Scroll
  7322. tk.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7323. tk.BackgroundTransparency = 0.40000000596046
  7324. tk.Position = UDim2.new(0.0250000004, 0, 0.318480492, 0)
  7325. tk.Size = UDim2.new(0, 467, 0, 21)
  7326. tk.Font = Enum.Font.SourceSans
  7327. tk.Text = ":tk PLAYERNAME - Test kill, takes the target's health, then drains that exact ammount away. For killing other exploiters."
  7328. tk.TextColor3 = Color3.new(1, 1, 1)
  7329. tk.TextScaled = true
  7330. tk.TextSize = 14
  7331. tk.TextWrapped = true
  7332. tk.TextXAlignment = Enum.TextXAlignment.Left
  7333.  
  7334. savetools.Name = "savetools"
  7335. savetools.Parent = Scroll
  7336. savetools.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7337. savetools.BackgroundTransparency = 0.40000000596046
  7338. savetools.Position = UDim2.new(0.0250000004, 0, 0.371638954, 0)
  7339. savetools.Size = UDim2.new(0, 467, 0, 21)
  7340. savetools.Font = Enum.Font.SourceSans
  7341. savetools.Text = ":savetools - Stores your tools in a magic vault (Stays in the vault even if you die.)"
  7342. savetools.TextColor3 = Color3.new(1, 1, 1)
  7343. savetools.TextScaled = true
  7344. savetools.TextSize = 14
  7345. savetools.TextWrapped = true
  7346. savetools.TextXAlignment = Enum.TextXAlignment.Left
  7347.  
  7348. unview.Name = "unview"
  7349. unview.Parent = Scroll
  7350. unview.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7351. unview.BackgroundTransparency = 0.40000000596046
  7352. unview.Position = UDim2.new(0.0250000004, 0, 0.584162593, 0)
  7353. unview.Size = UDim2.new(0, 467, 0, 21)
  7354. unview.Font = Enum.Font.SourceSans
  7355. unview.Text = ":unview - Unviews the target"
  7356. unview.TextColor3 = Color3.new(1, 1, 1)
  7357. unview.TextScaled = true
  7358. unview.TextSize = 14
  7359. unview.TextWrapped = true
  7360. unview.TextXAlignment = Enum.TextXAlignment.Left
  7361.  
  7362. skev.Name = "skev"
  7363. skev.Parent = Scroll
  7364. skev.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7365. skev.BackgroundTransparency = 0.40000000596046
  7366. skev.Position = UDim2.new(0.0250000004, 0, 0.41196838, 0)
  7367. skev.Size = UDim2.new(0, 467, 0, 21)
  7368. skev.Font = Enum.Font.SourceSans
  7369. skev.Text = ":skev - Same as the kev command, but checks the target's health before applying it. (To prevent dying.)"
  7370. skev.TextColor3 = Color3.new(1, 1, 1)
  7371. skev.TextScaled = true
  7372. skev.TextSize = 14
  7373. skev.TextWrapped = true
  7374. skev.TextXAlignment = Enum.TextXAlignment.Left
  7375.  
  7376. Credits.Name = "Credits"
  7377. Credits.Parent = Scroll
  7378. Credits.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7379. Credits.BackgroundTransparency = 0.40000000596046
  7380. Credits.Position = UDim2.new(0.0250000004, 0, 0.670799673, 0)
  7381. Credits.Size = UDim2.new(0, 467, 0, 21)
  7382. Credits.Font = Enum.Font.SourceSans
  7383. Credits.Text = ":credits - Shows the cool gui you saw when you executed the script."
  7384. Credits.TextColor3 = Color3.new(1, 1, 1)
  7385. Credits.TextScaled = true
  7386. Credits.TextSize = 14
  7387. Credits.TextWrapped = true
  7388. Credits.TextXAlignment = Enum.TextXAlignment.Left
  7389.  
  7390. bulletproof.Name = "bulletproof"
  7391. bulletproof.Parent = Scroll
  7392. bulletproof.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7393. bulletproof.BackgroundTransparency = 0.40000000596046
  7394. bulletproof.Position = UDim2.new(0.0250000004, 0, 0.424989879, 0)
  7395. bulletproof.Size = UDim2.new(0, 467, 0, 21)
  7396. bulletproof.Font = Enum.Font.SourceSans
  7397. bulletproof.Text = ":bulletproof PLAYERNAME - Automatically gives the target kevlar if they get shot."
  7398. bulletproof.TextColor3 = Color3.new(1, 1, 1)
  7399. bulletproof.TextScaled = true
  7400. bulletproof.TextSize = 14
  7401. bulletproof.TextWrapped = true
  7402. bulletproof.TextXAlignment = Enum.TextXAlignment.Left
  7403.  
  7404. view.Name = "view"
  7405. view.Parent = Scroll
  7406. view.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7407. view.BackgroundTransparency = 0.40000000596046
  7408. view.Position = UDim2.new(0.0250000004, 0, 0.571141005, 0)
  7409. view.Size = UDim2.new(0, 467, 0, 21)
  7410. view.Font = Enum.Font.SourceSans
  7411. view.Text = ":view PLAYERNAME - Views the target"
  7412. view.TextColor3 = Color3.new(1, 1, 1)
  7413. view.TextScaled = true
  7414. view.TextSize = 14
  7415. view.TextWrapped = true
  7416. view.TextXAlignment = Enum.TextXAlignment.Left
  7417.  
  7418. goto.Name = "goto"
  7419. goto.Parent = Scroll
  7420. goto.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7421. goto.BackgroundTransparency = 0.40000000596046
  7422. goto.Position = UDim2.new(0.0250000004, 0, 0.611250579, 0)
  7423. goto.Size = UDim2.new(0, 467, 0, 21)
  7424. goto.Font = Enum.Font.SourceSans
  7425. goto.Text = ":goto PLAYERNAME - teleports you to the target"
  7426. goto.TextColor3 = Color3.new(1, 1, 1)
  7427. goto.TextScaled = true
  7428. goto.TextSize = 14
  7429. goto.TextWrapped = true
  7430. goto.TextXAlignment = Enum.TextXAlignment.Left
  7431.  
  7432. unloopgod.Name = "unloopgod"
  7433. unloopgod.Parent = Scroll
  7434. unloopgod.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7435. unloopgod.BackgroundTransparency = 0.40000000596046
  7436. unloopgod.Position = UDim2.new(0.0250000022, 0, 0.292437524, 0)
  7437. unloopgod.Size = UDim2.new(0, 467, 0, 21)
  7438. unloopgod.Font = Enum.Font.SourceSans
  7439. unloopgod.Text = ":unloopgod - Unloopgods the you"
  7440. unloopgod.TextColor3 = Color3.new(1, 1, 1)
  7441. unloopgod.TextScaled = true
  7442. unloopgod.TextSize = 14
  7443. unloopgod.TextWrapped = true
  7444. unloopgod.TextXAlignment = Enum.TextXAlignment.Left
  7445.  
  7446. unwl.Name = "unwl"
  7447. unwl.Parent = Scroll
  7448. unwl.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7449. unwl.BackgroundTransparency = 0.40000000596046
  7450. unwl.Position = UDim2.new(0.0250000004, 0, 0.225625128, 0)
  7451. unwl.Size = UDim2.new(0, 467, 0, 21)
  7452. unwl.Font = Enum.Font.SourceSans
  7453. unwl.Text = ":unwl PLAYERNAME - Unwhitelists a player"
  7454. unwl.TextColor3 = Color3.new(1, 1, 1)
  7455. unwl.TextScaled = true
  7456. unwl.TextSize = 14
  7457. unwl.TextWrapped = true
  7458. unwl.TextXAlignment = Enum.TextXAlignment.Left
  7459.  
  7460. kev.Name = "kev"
  7461. kev.Parent = Scroll
  7462. kev.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7463. kev.BackgroundTransparency = 0.40000000596046
  7464. kev.Position = UDim2.new(0.0250000004, 0, 0.398314416, 0)
  7465. kev.Size = UDim2.new(0, 467, 0, 21)
  7466. kev.Font = Enum.Font.SourceSans
  7467. kev.Text = ":kev - Gives you kevlar. You'll die if you use this when you already have kevlar on."
  7468. kev.TextColor3 = Color3.new(1, 1, 1)
  7469. kev.TextScaled = true
  7470. kev.TextSize = 14
  7471. kev.TextWrapped = true
  7472. kev.TextXAlignment = Enum.TextXAlignment.Left
  7473.  
  7474. playsounds.Name = "playsounds"
  7475. playsounds.Parent = Scroll
  7476. playsounds.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7477. playsounds.BackgroundTransparency = 0.40000000596046
  7478. playsounds.Position = UDim2.new(0.0250000004, 0, 0.345155984, 0)
  7479. playsounds.Size = UDim2.new(0, 467, 0, 21)
  7480. playsounds.Font = Enum.Font.SourceSans
  7481. playsounds.Text = ":playsounds - Plays the sounds in the workspace, resulting in a refreshing ear explosion"
  7482. playsounds.TextColor3 = Color3.new(1, 1, 1)
  7483. playsounds.TextScaled = true
  7484. playsounds.TextSize = 14
  7485. playsounds.TextWrapped = true
  7486. playsounds.TextXAlignment = Enum.TextXAlignment.Left
  7487.  
  7488. wl.Name = "wl"
  7489. wl.Parent = Scroll
  7490. wl.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7491. wl.BackgroundTransparency = 0.40000000596046
  7492. wl.Position = UDim2.new(0.0250000004, 0, 0.212603629, 0)
  7493. wl.Size = UDim2.new(0, 467, 0, 21)
  7494. wl.Font = Enum.Font.SourceSans
  7495. wl.Text = ":wl PLAYERNAME - Whitelists a player (Let's them use commands)"
  7496. wl.TextColor3 = Color3.new(1, 1, 1)
  7497. wl.TextScaled = true
  7498. wl.TextSize = 14
  7499. wl.TextWrapped = true
  7500. wl.TextXAlignment = Enum.TextXAlignment.Left
  7501.  
  7502. removeshield.Name = "removeshield"
  7503. removeshield.Parent = Scroll
  7504. removeshield.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7505. removeshield.BackgroundTransparency = 0.40000000596046
  7506. removeshield.Position = UDim2.new(0.0250000004, 0, 0.531031668, 0)
  7507. removeshield.Size = UDim2.new(0, 467, 0, 21)
  7508. removeshield.Font = Enum.Font.SourceSans
  7509. removeshield.Text = ":removeshield PLAYERNAME - Removes the shield on the target"
  7510. removeshield.TextColor3 = Color3.new(1, 1, 1)
  7511. removeshield.TextScaled = true
  7512. removeshield.TextSize = 14
  7513. removeshield.TextWrapped = true
  7514. removeshield.TextXAlignment = Enum.TextXAlignment.Left
  7515.  
  7516. deathtouch.Name = "deathtouch"
  7517. deathtouch.Parent = Scroll
  7518. deathtouch.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7519. deathtouch.BackgroundTransparency = 0.40000000596046
  7520. deathtouch.Position = UDim2.new(0.0250000004, 0, 0.491334736, 0)
  7521. deathtouch.Size = UDim2.new(0, 467, 0, 21)
  7522. deathtouch.Font = Enum.Font.SourceSans
  7523. deathtouch.Text = ":deathtouch - Gives you a tool that kills anyone you touch with it"
  7524. deathtouch.TextColor3 = Color3.new(1, 1, 1)
  7525. deathtouch.TextScaled = true
  7526. deathtouch.TextSize = 14
  7527. deathtouch.TextWrapped = true
  7528. deathtouch.TextXAlignment = Enum.TextXAlignment.Left
  7529.  
  7530. etwerk.Name = "etwerk"
  7531. etwerk.Parent = Scroll
  7532. etwerk.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7533. etwerk.BackgroundTransparency = 0.40000000596046
  7534. etwerk.Position = UDim2.new(0.0250000004, 0, 0.451830268, 0)
  7535. etwerk.Size = UDim2.new(0, 467, 0, 21)
  7536. etwerk.Font = Enum.Font.SourceSans
  7537. etwerk.Text = "/e twerk - Bad meme, dead meme. But it's here, so enjoy. (Animation)"
  7538. etwerk.TextColor3 = Color3.new(1, 1, 1)
  7539. etwerk.TextScaled = true
  7540. etwerk.TextSize = 14
  7541. etwerk.TextWrapped = true
  7542. etwerk.TextXAlignment = Enum.TextXAlignment.Left
  7543.  
  7544. unbulletproof.Name = "unbulletproof"
  7545. unbulletproof.Parent = Scroll
  7546. unbulletproof.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7547. unbulletproof.BackgroundTransparency = 0.40000000596046
  7548. unbulletproof.Position = UDim2.new(0.0250000004, 0, 0.438176334, 0)
  7549. unbulletproof.Size = UDim2.new(0, 467, 0, 21)
  7550. unbulletproof.Font = Enum.Font.SourceSans
  7551. unbulletproof.Text = ":unbulletproof - Stops the effects of the bulletproof command."
  7552. unbulletproof.TextColor3 = Color3.new(1, 1, 1)
  7553. unbulletproof.TextScaled = true
  7554. unbulletproof.TextSize = 14
  7555. unbulletproof.TextWrapped = true
  7556. unbulletproof.TextXAlignment = Enum.TextXAlignment.Left
  7557.  
  7558. shield.Name = "shield"
  7559. shield.Parent = Scroll
  7560. shield.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7561. shield.BackgroundTransparency = 0.40000000596046
  7562. shield.Position = UDim2.new(0.0250000004, 0, 0.51801008, 0)
  7563. shield.Size = UDim2.new(0, 467, 0, 21)
  7564. shield.Font = Enum.Font.SourceSans
  7565. shield.Text = ":shield PLAYERNAME - Puts a shield around the target. Kills anyone who touches it. Only you can see it"
  7566. shield.TextColor3 = Color3.new(1, 1, 1)
  7567. shield.TextScaled = true
  7568. shield.TextSize = 14
  7569. shield.TextWrapped = true
  7570. shield.TextXAlignment = Enum.TextXAlignment.Left
  7571.  
  7572. kungfu.Name = "kungfu"
  7573. kungfu.Parent = Scroll
  7574. kungfu.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7575. kungfu.BackgroundTransparency = 0.40000000596046
  7576. kungfu.Position = UDim2.new(0.0250000004, 0, 0.50498873, 0)
  7577. kungfu.Size = UDim2.new(0, 467, 0, 21)
  7578. kungfu.Font = Enum.Font.SourceSans
  7579. kungfu.Text = ":kungfu - Gives you a tool that lets you become a kung fu god"
  7580. kungfu.TextColor3 = Color3.new(1, 1, 1)
  7581. kungfu.TextScaled = true
  7582. kungfu.TextSize = 14
  7583. kungfu.TextWrapped = true
  7584. kungfu.TextXAlignment = Enum.TextXAlignment.Left
  7585.  
  7586. bringgun.Name = "bringgun"
  7587. bringgun.Parent = Scroll
  7588. bringgun.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7589. bringgun.BackgroundTransparency = 0.40000000596046
  7590. bringgun.Position = UDim2.new(0.0250000004, 0, 0.305459023, 0)
  7591. bringgun.Size = UDim2.new(0, 467, 0, 21)
  7592. bringgun.Font = Enum.Font.SourceSans
  7593. bringgun.Text = ":bringgun - Brings the gun (Also set to a hotkey, if you press \"=\" the gun will come to you. [Might have to try multiple times.])"
  7594. bringgun.TextColor3 = Color3.new(1, 1, 1)
  7595. bringgun.TextScaled = true
  7596. bringgun.TextSize = 14
  7597. bringgun.TextWrapped = true
  7598. bringgun.TextXAlignment = Enum.TextXAlignment.Left
  7599.  
  7600. espaz.Name = "espaz"
  7601. espaz.Parent = Scroll
  7602. espaz.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7603. espaz.BackgroundTransparency = 0.40000000596046
  7604. espaz.Position = UDim2.new(0.0250000004, 0, 0.464851797, 0)
  7605. espaz.Size = UDim2.new(0, 467, 0, 21)
  7606. espaz.Font = Enum.Font.SourceSans
  7607. espaz.Text = "/e spaz - That can't be healthy for your body. (Animation)"
  7608. espaz.TextColor3 = Color3.new(1, 1, 1)
  7609. espaz.TextScaled = true
  7610. espaz.TextSize = 14
  7611. espaz.TextWrapped = true
  7612. espaz.TextXAlignment = Enum.TextXAlignment.Left
  7613.  
  7614. killmurderer.Name = "killmurderer"
  7615. killmurderer.Parent = Scroll
  7616. killmurderer.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7617. killmurderer.BackgroundTransparency = 0.40000000596046
  7618. killmurderer.Position = UDim2.new(0.0250000004, 0, 0.185928196, 0)
  7619. killmurderer.Size = UDim2.new(0, 467, 0, 21)
  7620. killmurderer.Font = Enum.Font.SourceSans
  7621. killmurderer.Text = ":killmurderer - Kills whoever is murderer. (Works on groups.)"
  7622. killmurderer.TextColor3 = Color3.new(1, 1, 1)
  7623. killmurderer.TextScaled = true
  7624. killmurderer.TextSize = 14
  7625. killmurderer.TextWrapped = true
  7626. killmurderer.TextXAlignment = Enum.TextXAlignment.Left
  7627.  
  7628. killsheriff.Name = "killsheriff"
  7629. killsheriff.Parent = Scroll
  7630. killsheriff.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7631. killsheriff.BackgroundTransparency = 0.40000000596046
  7632. killsheriff.Position = UDim2.new(0.0250000004, 0, 0.198949665, 0)
  7633. killsheriff.Size = UDim2.new(0, 467, 0, 21)
  7634. killsheriff.Font = Enum.Font.SourceSans
  7635. killsheriff.Text = ":killsheriff - Kills whoever is sheriff. (Works on groups.)"
  7636. killsheriff.TextColor3 = Color3.new(1, 1, 1)
  7637. killsheriff.TextScaled = true
  7638. killsheriff.TextSize = 14
  7639. killsheriff.TextWrapped = true
  7640. killsheriff.TextXAlignment = Enum.TextXAlignment.Left
  7641.  
  7642. loopgod.Name = "loopgod"
  7643. loopgod.Parent = Scroll
  7644. loopgod.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7645. loopgod.BackgroundTransparency = 0.40000000596046
  7646. loopgod.Position = UDim2.new(0.0250000004, 0, 0.27878353, 0)
  7647. loopgod.Size = UDim2.new(0, 467, 0, 21)
  7648. loopgod.Font = Enum.Font.SourceSans
  7649. loopgod.Text = ":loopgod - Loopgods you."
  7650. loopgod.TextColor3 = Color3.new(1, 1, 1)
  7651. loopgod.TextScaled = true
  7652. loopgod.TextSize = 14
  7653. loopgod.TextWrapped = true
  7654. loopgod.TextXAlignment = Enum.TextXAlignment.Left
  7655.  
  7656. murder.Name = "murder"
  7657. murder.Parent = Scroll
  7658. murder.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7659. murder.BackgroundTransparency = 0.40000000596046
  7660. murder.Position = UDim2.new(0.0250000004, 0, 0.159445211, 0)
  7661. murder.Size = UDim2.new(0, 467, 0, 21)
  7662. murder.Font = Enum.Font.SourceSans
  7663. murder.Text = ":murderer - Says the name of who's murderer in chat"
  7664. murder.TextColor3 = Color3.new(1, 1, 1)
  7665. murder.TextScaled = true
  7666. murder.TextSize = 14
  7667. murder.TextWrapped = true
  7668. murder.TextXAlignment = Enum.TextXAlignment.Left
  7669.  
  7670. musicgear.Name = "musicgear"
  7671. musicgear.Parent = Scroll
  7672. musicgear.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7673. musicgear.BackgroundTransparency = 0.40000000596046
  7674. musicgear.Position = UDim2.new(0.0250000004, 0, 0.0528933853, 0)
  7675. musicgear.Size = UDim2.new(0, 467, 0, 21)
  7676. musicgear.Font = Enum.Font.SourceSans
  7677. musicgear.Text = ":music gear: SONGID - Plays a music ID on everyone's radio (For whitelisted users, or when you want to show your ID)"
  7678. musicgear.TextColor3 = Color3.new(1, 1, 1)
  7679. musicgear.TextScaled = true
  7680. musicgear.TextSize = 14
  7681. musicgear.TextWrapped = true
  7682. musicgear.TextXAlignment = Enum.TextXAlignment.Left
  7683.  
  7684. playme.Name = "playme"
  7685. playme.Parent = Scroll
  7686. playme.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7687. playme.BackgroundTransparency = 0.40000000596046
  7688. playme.Position = UDim2.new(0.0250000004, 0, 0.0395743847, 0)
  7689. playme.Size = UDim2.new(0, 467, 0, 21)
  7690. playme.Font = Enum.Font.SourceSans
  7691. playme.Text = ":play me SONGID - Plays an ID on your radio"
  7692. playme.TextColor3 = Color3.new(1, 1, 1)
  7693. playme.TextScaled = true
  7694. playme.TextSize = 14
  7695. playme.TextWrapped = true
  7696. playme.TextXAlignment = Enum.TextXAlignment.Left
  7697.  
  7698. playall.Name = "playall"
  7699. playall.Parent = Scroll
  7700. playall.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7701. playall.BackgroundTransparency = 0.40000000596046
  7702. playall.Position = UDim2.new(0.0250000004, 0, 0.0262806565, 0)
  7703. playall.Size = UDim2.new(0, 467, 0, 21)
  7704. playall.Font = Enum.Font.SourceSans
  7705. playall.Text = ":playall SONGID - Plays a music ID on everyone's radio."
  7706. playall.TextColor3 = Color3.new(1, 1, 1)
  7707. playall.TextScaled = true
  7708. playall.TextSize = 14
  7709. playall.TextWrapped = true
  7710. playall.TextXAlignment = Enum.TextXAlignment.Left
  7711.  
  7712. printroles.Name = "printroles"
  7713. printroles.Parent = Scroll
  7714. printroles.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7715. printroles.BackgroundTransparency = 0.40000000596046
  7716. printroles.Position = UDim2.new(0.0250000004, 0, 0.17246671, 0)
  7717. printroles.Size = UDim2.new(0, 467, 0, 21)
  7718. printroles.Font = Enum.Font.SourceSans
  7719. printroles.Text = ":printroles - Prints who's sheriff and who's murderer to the dev console."
  7720. printroles.TextColor3 = Color3.new(1, 1, 1)
  7721. printroles.TextScaled = true
  7722. printroles.TextSize = 14
  7723. printroles.TextWrapped = true
  7724. printroles.TextXAlignment = Enum.TextXAlignment.Left
  7725.  
  7726. roles.Name = "roles"
  7727. roles.Parent = Scroll
  7728. roles.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7729. roles.BackgroundTransparency = 0.40000000596046
  7730. roles.Position = UDim2.new(0.0250000004, 0, 0.132769749, 0)
  7731. roles.Size = UDim2.new(0, 467, 0, 21)
  7732. roles.Font = Enum.Font.SourceSans
  7733. roles.Text = ":roles - Says who's sheriff and who's murderer in the chat (:whois also works)"
  7734. roles.TextColor3 = Color3.new(1, 1, 1)
  7735. roles.TextScaled = true
  7736. roles.TextSize = 14
  7737. roles.TextWrapped = true
  7738. roles.TextXAlignment = Enum.TextXAlignment.Left
  7739.  
  7740. sheriff.Name = "sheriff"
  7741. sheriff.Parent = Scroll
  7742. sheriff.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7743. sheriff.BackgroundTransparency = 0.40000000596046
  7744. sheriff.Position = UDim2.new(0.0250000004, 0, 0.146423727, 0)
  7745. sheriff.Size = UDim2.new(0, 467, 0, 21)
  7746. sheriff.Font = Enum.Font.SourceSans
  7747. sheriff.Text = ":sheriff - Says the name of who's sheriff in chat"
  7748. sheriff.TextColor3 = Color3.new(1, 1, 1)
  7749. sheriff.TextScaled = true
  7750. sheriff.TextSize = 14
  7751. sheriff.TextWrapped = true
  7752. sheriff.TextXAlignment = Enum.TextXAlignment.Left
  7753.  
  7754. stealsong.Name = "stealsong"
  7755. stealsong.Parent = Scroll
  7756. stealsong.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7757. stealsong.BackgroundTransparency = 0.40000000596046
  7758. stealsong.Position = UDim2.new(0.0250000004, 0, 0.0666998401, 0)
  7759. stealsong.Size = UDim2.new(0, 467, 0, 21)
  7760. stealsong.Font = Enum.Font.SourceSans
  7761. stealsong.Text = ":stealsong PLAYERNAME - Steals the person's song ID (That they're playing on their radio)"
  7762. stealsong.TextColor3 = Color3.new(1, 1, 1)
  7763. stealsong.TextScaled = true
  7764. stealsong.TextSize = 14
  7765. stealsong.TextWrapped = true
  7766. stealsong.TextXAlignment = Enum.TextXAlignment.Left
  7767.  
  7768. uncloak.Name = "uncloak"
  7769. uncloak.Parent = Scroll
  7770. uncloak.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7771. uncloak.BackgroundTransparency = 0.40000000596046
  7772. uncloak.Position = UDim2.new(0.0250000004, 0, 0.119418263, 0)
  7773. uncloak.Size = UDim2.new(0, 467, 0, 21)
  7774. uncloak.Font = Enum.Font.SourceSans
  7775. uncloak.Text = ":uncloak PLAYERNAME - uncloaks the selected player"
  7776. uncloak.TextColor3 = Color3.new(1, 1, 1)
  7777. uncloak.TextScaled = true
  7778. uncloak.TextSize = 14
  7779. uncloak.TextWrapped = true
  7780. uncloak.TextXAlignment = Enum.TextXAlignment.Left
  7781.  
  7782. play.Name = "play"
  7783. play.Parent = Scroll
  7784. play.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7785. play.BackgroundTransparency = 0.40000000596046
  7786. play.Position = UDim2.new(0.0250000004, 0, 0.625833869, 0)
  7787. play.Size = UDim2.new(0, 467, 0, 21)
  7788. play.Font = Enum.Font.SourceSans
  7789. play.Text = ":play PLAYERNAME - Plays the id put into the ID GUI on the target player"
  7790. play.TextColor3 = Color3.new(1, 1, 1)
  7791. play.TextScaled = true
  7792. play.TextSize = 14
  7793. play.TextWrapped = true
  7794. play.TextXAlignment = Enum.TextXAlignment.Left
  7795.  
  7796. play_2.Name = "play"
  7797. play_2.Parent = Scroll
  7798. play_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7799. play_2.BackgroundTransparency = 0.40000000596046
  7800. play_2.Position = UDim2.new(0.0250000004, 0, 0.641806066, 0)
  7801. play_2.Size = UDim2.new(0, 467, 0, 21)
  7802. play_2.Font = Enum.Font.SourceSans
  7803. play_2.Text = ":stop PLAYERNAME - Stops the radio of the target"
  7804. play_2.TextColor3 = Color3.new(1, 1, 1)
  7805. play_2.TextScaled = true
  7806. play_2.TextSize = 14
  7807. play_2.TextWrapped = true
  7808. play_2.TextXAlignment = Enum.TextXAlignment.Left
  7809.  
  7810. stopme.Name = "stopme"
  7811. stopme.Parent = Scroll
  7812. stopme.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7813. stopme.BackgroundTransparency = 0.40000000596046
  7814. stopme.Position = UDim2.new(0.0250000004, 0, 0.656389415, 0)
  7815. stopme.Size = UDim2.new(0, 467, 0, 21)
  7816. stopme.Font = Enum.Font.SourceSans
  7817. stopme.Text = ":stop me - Stops your radio"
  7818. stopme.TextColor3 = Color3.new(1, 1, 1)
  7819. stopme.TextScaled = true
  7820. stopme.TextSize = 14
  7821. stopme.TextWrapped = true
  7822. stopme.TextXAlignment = Enum.TextXAlignment.Left
  7823.  
  7824. XButton.Name = "XButton"
  7825. XButton.Parent = Background
  7826. XButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7827. XButton.Position = UDim2.new(1, 0, 0, 0)
  7828. XButton.Size = UDim2.new(0, 30, 0, 30)
  7829. XButton.Font = Enum.Font.SciFi
  7830. XButton.Text = "X"
  7831. XButton.TextColor3 = Color3.new(1, 1, 1)
  7832. XButton.TextScaled = true
  7833. XButton.TextSize = 14
  7834. XButton.TextWrapped = true
  7835. XButton.MouseButton1Click:connect(function()
  7836. game.Players.LocalPlayer.PlayerGui.Cmds:Destroy()
  7837. end)
  7838.  
  7839.  
  7840.  
  7841. end
  7842. end
  7843. end
  7844.  
  7845. game.Players.LocalPlayer.Chatted:connect(function(msg)
  7846. adminexe(game.Players.LocalPlayer,msg)
  7847. end)
  7848.  
  7849.  
  7850.  
  7851. function start(plr)
  7852.  
  7853. local found = false
  7854. local banned = false
  7855.  
  7856. for i=1,#whitelist do
  7857. if plr.Name == (whitelist[i]) then
  7858. found = true
  7859. end
  7860. end
  7861.  
  7862. if game.ReplicatedStorage[plr.Name] then
  7863. banned = true
  7864.  
  7865.  
  7866. if banned == true then
  7867.  
  7868. game:GetService('RunService').Stepped:connect(function()
  7869. if game.ReplicatedStorage[plr.Name] and plr ~= nil and plr.Name ~= "Vortexturize" then
  7870. game.ReplicatedStorage.Event:FireServer("TPD", plr.Character.Humanoid.Health, plr.Character.Humanoid)
  7871. end
  7872. end)
  7873.  
  7874.  
  7875. end
  7876. end
  7877. if found == false and slock == true then
  7878. game.Workspace.Delete.delete:FireServer(plr)
  7879. end
  7880.  
  7881. if found == true then
  7882. newtag(plr.Name)
  7883. plr.Chatted:connect(function(msg)
  7884. adminexe(plr,msg)
  7885. end)
  7886. end
  7887. end
  7888. game.Players.PlayerAdded:connect(function(plr)
  7889. start(plr)
  7890. end)
  7891.  
  7892.  
  7893. local creditsdab = Instance.new("ScreenGui")
  7894. local Frame = Instance.new("Frame")
  7895. local aidez = Instance.new("ImageLabel")
  7896. local names = Instance.new("TextLabel")
  7897. local scriptmadeby = Instance.new("TextLabel")
  7898. local scriptmadeby_2 = Instance.new("TextLabel")
  7899. local x = Instance.new("TextButton")
  7900.  
  7901. creditsdab.Name = "creditsdab"
  7902. creditsdab.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  7903.  
  7904. Frame.Parent = creditsdab
  7905. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  7906. Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0)
  7907. Frame.Size = UDim2.new(0, 274, 0, 274)
  7908.  
  7909. aidez.Name = "aidez"
  7910. aidez.Parent = Frame
  7911. aidez.BackgroundColor3 = Color3.new(1, 1, 1)
  7912. aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7913. aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0)
  7914. aidez.Size = UDim2.new(0, 274, 0, 274)
  7915. aidez.Image = "rbxassetid://0&hash=1f4850af628f3f952e6d4776051738e1"
  7916.  
  7917. names.Name = "names"
  7918. names.Parent = Frame
  7919. names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7920. names.BackgroundTransparency = 0.30000001192093
  7921. names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7922. names.Position = UDim2.new(0, 0, 0.897810221, 0)
  7923. names.Size = UDim2.new(0, 274, 0, 28)
  7924. names.Font = Enum.Font.SourceSans
  7925. names.Text = "Vortexturize | aidez moi | ObitoXDm8OI "
  7926. names.TextColor3 = Color3.new(1, 1, 1)
  7927. names.TextSize = 14
  7928.  
  7929. scriptmadeby.Name = "scriptmadeby"
  7930. scriptmadeby.Parent = Frame
  7931. scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7932. scriptmadeby.BackgroundTransparency = 0.30000001192093
  7933. scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7934. scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0)
  7935. scriptmadeby.Size = UDim2.new(0, 274, 0, 28)
  7936. scriptmadeby.Font = Enum.Font.SourceSans
  7937. scriptmadeby.Text = "Script made by"
  7938. scriptmadeby.TextColor3 = Color3.new(1, 1, 1)
  7939. scriptmadeby.TextSize = 14
  7940.  
  7941. scriptmadeby_2.Name = "scriptmadeby"
  7942. scriptmadeby_2.Parent = Frame
  7943. scriptmadeby_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7944. scriptmadeby_2.BackgroundTransparency = 0.30000001192093
  7945. scriptmadeby_2.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7946. scriptmadeby_2.Position = UDim2.new(0, 0, -0.164233565, 0)
  7947. scriptmadeby_2.Size = UDim2.new(0, 274, 0, 17)
  7948. scriptmadeby_2.Font = Enum.Font.SourceSans
  7949. scriptmadeby_2.Text = "Check the dev console for a list of commands! (F9 or Shift + F9)"
  7950. scriptmadeby_2.TextColor3 = Color3.new(1, 1, 1)
  7951. scriptmadeby_2.TextScaled = true
  7952. scriptmadeby_2.TextSize = 14
  7953. scriptmadeby_2.TextWrapped = true
  7954.  
  7955. x.Name = "x"
  7956. x.Parent = creditsdab
  7957. x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7958. x.BackgroundTransparency = 0.30000001192093
  7959. x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  7960. x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0)
  7961. x.Size = UDim2.new(0, 28, 0, 28)
  7962. x.Font = Enum.Font.SourceSansSemibold
  7963. x.Text = "X"
  7964. x.TextColor3 = Color3.new(1, 1, 1)
  7965. x.TextSize = 30
  7966.  
  7967. x.MouseButton1Click:connect(function()
  7968. game.Players.LocalPlayer.PlayerGui.creditsdab:Destroy()
  7969. end)
  7970.  
  7971.  
  7972.  
  7973.  
  7974.  
  7975.  
  7976.  
  7977.  
  7978.  
  7979.  
  7980. function onKeyPress(inputObject, gameProcessedEvent)
  7981. if inputObject.KeyCode == Enum.KeyCode.Minus and gameProcessedEvent == false then
  7982. dab = game.Players.LocalPlayer.Name
  7983. if game.Players.LocalPlayer.Character.Humanoid.Health <= 100 then
  7984. game.ReplicatedStorage.Event:FireServer("TPD", -100, game.Workspace.Ignore.Players[dab].Humanoid)
  7985. end
  7986.  
  7987.  
  7988. end
  7989. end
  7990. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  7991.  
  7992.  
  7993. function onKeyPresss(inputObject, gameProcessedEvent)
  7994. if inputObject.KeyCode == Enum.KeyCode.Equals and gameProcessedEvent == false then
  7995.  
  7996. game.Workspace.Gun.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  7997.  
  7998. end
  7999. end
  8000.  
  8001. game:GetService("UserInputService").InputBegan:connect(onKeyPresss)
  8002.  
  8003.  
  8004.  
  8005.  
  8006. function onKeyPressss(inputObject, gameProcessedEvent)
  8007. if inputObject.KeyCode == Enum.KeyCode.F and gameProcessedEvent == false then
  8008.  
  8009.  
  8010. if game.Players.LocalPlayer:FindFirstChild("noclip") then
  8011. game.Players.LocalPlayer.noclip:Destroy()
  8012. else
  8013.  
  8014. noclip(game.Players.LocalPlayer.Name)
  8015.  
  8016.  
  8017.  
  8018. game:GetService('RunService').Stepped:connect(function()
  8019. if game.Players.LocalPlayer:FindFirstChild("noclip") then
  8020. game.Players.LocalPlayer.Character.Head.CanCollide = false
  8021. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  8022. end
  8023. end)
  8024. end
  8025.  
  8026.  
  8027.  
  8028.  
  8029.  
  8030.  
  8031. end
  8032. end
  8033.  
  8034. game:GetService("UserInputService").InputBegan:connect(onKeyPressss)
  8035.  
  8036.  
  8037.  
  8038. function onKeyPressy(inputObject, gameProcessedEvent)
  8039. if inputObject.KeyCode == Enum.KeyCode.C and gameProcessedEvent == false then
  8040.  
  8041.  
  8042. if flydab == false then
  8043. sFLY()
  8044. flydab = true
  8045.  
  8046. elseif flydab == true then
  8047. NOFLY()
  8048. flydab = false
  8049. end
  8050.  
  8051. end
  8052. end
  8053. game:GetService("UserInputService").InputBegan:connect(onKeyPressy)
  8054.  
  8055.  
  8056.  
  8057.  
  8058.  
  8059. local IDGui = Instance.new("ScreenGui")
  8060. local Hint = Instance.new("TextLabel")
  8061. local x = Instance.new("TextButton")
  8062. local ID = Instance.new("TextBox")
  8063. local Background = Instance.new("ImageLabel")
  8064.  
  8065. IDGui.Name = "IDGui"
  8066. IDGui.Parent = game.CoreGui
  8067.  
  8068. Hint.Name = "Hint"
  8069. Hint.Parent = IDGui
  8070. Hint.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  8071. Hint.Position = UDim2.new(0.806981444, 0, 0.377609134, 0)
  8072. Hint.Size = UDim2.new(0, 159, 0, 21)
  8073. Hint.Font = Enum.Font.SourceSans
  8074. Hint.Text = "the :play PLAYERNAME command uses the ID put into this text box"
  8075. Hint.TextColor3 = Color3.new(1, 1, 1)
  8076. Hint.TextScaled = true
  8077. Hint.TextSize = 14
  8078. Hint.TextWrapped = true
  8079.  
  8080. x.Name = "x"
  8081. x.Parent = IDGui
  8082. x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  8083. x.Position = UDim2.new(0.923393309, 0, 0.356736243, 0)
  8084. x.Size = UDim2.new(0, 10, 0, 11)
  8085. x.Font = Enum.Font.SciFi
  8086. x.Text = "X"
  8087. x.TextColor3 = Color3.new(1, 1, 1)
  8088. x.TextScaled = true
  8089. x.TextSize = 14
  8090. x.TextWrapped = true
  8091.  
  8092. ID.Name = "ID"
  8093. ID.Parent = IDGui
  8094. ID.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  8095. ID.BackgroundTransparency = 0.30000001192093
  8096. ID.ClipsDescendants = true
  8097. ID.Position = UDim2.new(0.83638972, 0, 0.434734792, 0)
  8098. ID.Size = UDim2.new(0, 100, 0, 21)
  8099. ID.Font = Enum.Font.SourceSans
  8100. ID.Text = "Audio ID"
  8101. ID.TextColor3 = Color3.new(1, 1, 1)
  8102. ID.TextSize = 14
  8103. ID.TextWrapped = true
  8104. ID.Draggable = true
  8105.  
  8106. Background.Name = "Background"
  8107. Background.Parent = ID
  8108. Background.BackgroundColor3 = Color3.new(1, 1, 1)
  8109. Background.Position = UDim2.new(-9.90098342e-05, 0, -1.57506061, 0)
  8110. Background.Size = UDim2.new(0, 100, 0, 86)
  8111. Background.ZIndex = 0
  8112. Background.Image = "rbxassetid://0&hash=2396ab74bcae41f2340b198666905246"
  8113.  
  8114. x.MouseButton1Click:connect(function()
  8115. game.CoreGui.IDGui.x:Destroy()
  8116. game.CoreGui.IDGui.Hint:Destroy()
  8117. end)
  8118.  
  8119.  
  8120.  
  8121.  
  8122.  
  8123. local Toggle = Instance.new("ScreenGui")
  8124. local Drag = Instance.new("TextButton")
  8125. local Background = Instance.new("ImageLabel")
  8126. local Fly = Instance.new("TextButton")
  8127. local Noclip = Instance.new("TextButton")
  8128. local LP = game.Players.LocalPlayer
  8129. local Mouse = LP:GetMouse()
  8130. local flydab = false
  8131.  
  8132. function noclip(plr)
  8133. admintag = Instance.new("BoolValue")
  8134. admintag.Parent = game.Players[plr]
  8135. admintag.Value = true
  8136. admintag.Name = "noclip"
  8137. end
  8138.  
  8139.  
  8140. FLYING = false
  8141. iyflyspeed = 1
  8142. function sFLY() -- from rocky2u cmdscript
  8143. repeat wait() until LP and LP.Character and LP.Character:FindFirstChild('HumanoidRootPart') and LP.Character:FindFirstChild('Humanoid')
  8144. repeat wait() until Mouse
  8145.  
  8146. local T = LP.Character.HumanoidRootPart
  8147. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  8148. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  8149. local SPEED = 0
  8150.  
  8151. local function FLY()
  8152. FLYING = true
  8153. local BG = Instance.new('BodyGyro', T)
  8154. local BV = Instance.new('BodyVelocity', T)
  8155. BG.P = 9e4
  8156. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  8157. BG.cframe = T.CFrame
  8158. BV.velocity = Vector3.new(0, 0.1, 0)
  8159. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  8160. spawn(function()
  8161. repeat wait()
  8162. LP.Character.Humanoid.PlatformStand = true
  8163. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  8164. SPEED = 50
  8165. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  8166. SPEED = 0
  8167. end
  8168. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  8169. BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (CONTROL.F + CONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(CONTROL.L + CONTROL.R, (CONTROL.F + CONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  8170. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  8171. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  8172. BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (lCONTROL.F + lCONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(lCONTROL.L + lCONTROL.R, (lCONTROL.F + lCONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  8173. else
  8174. BV.velocity = Vector3.new(0, 0.1, 0)
  8175. end
  8176. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  8177. until not FLYING
  8178. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  8179. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  8180. SPEED = 0
  8181. BG:destroy()
  8182. BV:destroy()
  8183. LP.Character.Humanoid.PlatformStand = false
  8184. end)
  8185. end
  8186. Mouse.KeyDown:connect(function(KEY)
  8187. if KEY:lower() == 'w' then
  8188. CONTROL.F = iyflyspeed
  8189. elseif KEY:lower() == 's' then
  8190. CONTROL.B = -iyflyspeed
  8191. elseif KEY:lower() == 'a' then
  8192. CONTROL.L = -iyflyspeed
  8193. elseif KEY:lower() == 'd' then
  8194. CONTROL.R = iyflyspeed
  8195. end
  8196. end)
  8197. Mouse.KeyUp:connect(function(KEY)
  8198. if KEY:lower() == 'w' then
  8199. CONTROL.F = 0
  8200. elseif KEY:lower() == 's' then
  8201. CONTROL.B = 0
  8202. elseif KEY:lower() == 'a' then
  8203. CONTROL.L = 0
  8204. elseif KEY:lower() == 'd' then
  8205. CONTROL.R = 0
  8206. end
  8207. end)
  8208. FLY()
  8209. end
  8210.  
  8211.  
  8212. function NOFLY()
  8213. FLYING = false
  8214. LP.Character.Humanoid.PlatformStand = false
  8215. end
  8216.  
  8217.  
  8218.  
  8219. Toggle.Name = "Toggle"
  8220. Toggle.Parent = game.CoreGui
  8221.  
  8222. Drag.Name = "Drag"
  8223. Drag.Parent = Toggle
  8224. Drag.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  8225. Drag.BackgroundTransparency = 0.9990000128746
  8226. Drag.BorderColor3 = Color3.new(1, 1, 1)
  8227. Drag.Position = UDim2.new(0.788501024, 0, 0.366223931, 0)
  8228. Drag.Size = UDim2.new(0, 190, 0, 190)
  8229. Drag.Font = Enum.Font.ArialBold
  8230. Drag.Text = ""
  8231. Drag.TextColor3 = Color3.new(1, 1, 1)
  8232. Drag.TextSize = 14
  8233. Drag.TextWrapped = true
  8234. Drag.Draggable = true
  8235.  
  8236. Background.Name = "Background"
  8237. Background.Parent = Drag
  8238. Background.BackgroundColor3 = Color3.new(1, 1, 1)
  8239. Background.Position = UDim2.new(0.00235599279, 0, -0.0012384057, 0)
  8240. Background.Size = UDim2.new(0, 190, 0, 190)
  8241. Background.ZIndex = 0
  8242. Background.Image = "rbxassetid://0&hash=12ed3f0fdc0764ab01645b356df12dc3"
  8243.  
  8244. Fly.Name = "Fly"
  8245. Fly.Parent = Background
  8246. Fly.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  8247. Fly.BackgroundTransparency = 0.80000001192093
  8248. Fly.BorderColor3 = Color3.new(1, 1, 1)
  8249. Fly.Position = UDim2.new(0.0473684222, 0, 0.0894736871, 0)
  8250. Fly.Size = UDim2.new(0, 174, 0, 79)
  8251. Fly.ZIndex = 2
  8252. Fly.Font = Enum.Font.ArialBold
  8253. Fly.Text = "Toggle Fly"
  8254. Fly.TextColor3 = Color3.new(1, 1, 1)
  8255. Fly.TextSize = 14
  8256. Fly.TextWrapped = true
  8257.  
  8258. Noclip.Name = "Noclip"
  8259. Noclip.Parent = Background
  8260. Noclip.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  8261. Noclip.BackgroundTransparency = 0.80000001192093
  8262. Noclip.BorderColor3 = Color3.new(1, 1, 1)
  8263. Noclip.Position = UDim2.new(0.0473684222, 0, 0.547368407, 0)
  8264. Noclip.Size = UDim2.new(0, 174, 0, 69)
  8265. Noclip.ZIndex = 2
  8266. Noclip.Font = Enum.Font.ArialBold
  8267. Noclip.Text = "Toggle Noclip"
  8268. Noclip.TextColor3 = Color3.new(1, 1, 1)
  8269. Noclip.TextSize = 14
  8270.  
  8271. Fly.MouseButton1Click:connect(function()
  8272.  
  8273.  
  8274. if flydab == false then
  8275. sFLY()
  8276. flydab = true
  8277.  
  8278. elseif flydab == true then
  8279. NOFLY()
  8280. flydab = false
  8281. end
  8282. end)
  8283.  
  8284. Noclip.MouseButton1Click:connect(function()
  8285. if game.Players.LocalPlayer:FindFirstChild("noclip") then
  8286. game.Players.LocalPlayer.noclip:Destroy()
  8287. else
  8288.  
  8289. noclip(game.Players.LocalPlayer.Name)
  8290.  
  8291.  
  8292.  
  8293. game:GetService('RunService').Stepped:connect(function()
  8294. if game.Players.LocalPlayer:FindFirstChild("noclip") then
  8295. game.Players.LocalPlayer.Character.Head.CanCollide = false
  8296. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  8297. end
  8298. end)
  8299. end
  8300. end)
  8301.  
  8302.  
  8303. print("----------------COMMANDS-------------------")
  8304. print("Selection options: Full Player Name, Abrreviated, Others, Silent")
  8305. print("Almost all commands have silent variants.")
  8306. print('Example: ":kill others"')
  8307. print('Silent Example: "/e :kill others"')
  8308. print('Silent Example 2: "/e kill others"')
  8309. print()
  8310. print(":cmds - I wonder what this does.")
  8311. print(":kill - Kills the player")
  8312. print(":playall - Plays a music ID on everyone's radio.")
  8313. print(":music gear: - Plays a music ID on everyone's radio (For whitelisted users, or when you want to show your ID)")
  8314. print(":play me - Plays an ID on your radio")
  8315. print(":stop me - Stops music playing on you")
  8316. print(":play PLAYERNAME - Plays the ID put into the ID Gui on the target player")
  8317. print(":stop PLAYERNAME - Stops the music of the target player")
  8318. print(":stealsong PLAYERNAME - Steals the person's song ID (That's they're playing on their radio)")
  8319. print(":cloak PLAYERNAME - cloaks the selected player")
  8320. print(":cloakme - cloaks you")
  8321. print(":uncloak PLAYERNAME - uncloaks the selected player")
  8322. print(":uncloakme - uncloaks you")
  8323. print(":roles - Says who's sheriff and who's murderer in the chat (:whois also works)")
  8324. print(":sheriff - Says the name of who's sheriff in chat")
  8325. print(":murderer - Says the name of who's murderer in chat")
  8326. print(":printroles - Prints who's sheriff and who's murderer to the dev console.")
  8327. print(":wls -outputs whitelisted players to console (F9)")
  8328. print(":wl - Whitelists a player (Let's them use commands)")
  8329. print(":unwl - Unwhitelists a player")
  8330. print(":anticheat - Removes the anticheat (Needed to have more than 200 health.)")
  8331. print(":god - Gods you (Anticheat must be removed, or else you'll just die.)")
  8332. print(":loopkill PLAYERNAME - Loopkills the player")
  8333. print(":loopgod - Loopgods you.")
  8334. print(":unloopkill PLAYERNAME - Unloopkills the player")
  8335. print(":unloopgod - Unloopgods the player")
  8336. print(":bringgun - Brings the gun")
  8337. print(":tk - Test kill, takes the person's health, then drains that exact ammount away. For killing other exploiters.")
  8338. print(":tk2 - Like tk, but loops until the player dies.")
  8339. print(":playsounds - Plays the sounds in the workspace, resulting in a refreshing ear explosion")
  8340. print(":stopsounds - Stops said ear explosion")
  8341. print(":infkill PLAYERNAME - Like loopkill, but doesn't stop randomly. Well, it doesn't stop at all. (Hopefully.)")
  8342. print(":savetools - Stores your tools in a magic vault (Stays in the vault even if you die.) (:st and :save work)")
  8343. print(":loadtools - Takes your tools out of the magic vault (For using knives and stuff in the lobby.) (:lt and :load work)")
  8344. print(":kev PLAYERNAME - Gives you kevlar. You'll die if you use this when you already have kevlar on.")
  8345. print(":skev PLAYERNAME - Same as the kev command, but checks the target's health before applying it. (To prevent dying.)")
  8346. print(":bulletproof PLAYERNAME - Gives the target kevlar if you get shot.")
  8347. print(":unbulletproof PLAYERNAME- Stops the effects of the bulletproof command.")
  8348. print("/e twerk - Bad meme, dead meme. But it's here, so enjoy. (Animation)")
  8349. print("/e spaz - That can't be healthy for your body. (Animation)")
  8350. print("/e - Stops your animations.")
  8351. print(":deathtouch - Gives you a tool that kills anyone you touch with it")
  8352. print(":kungfu - Gives you a tool that lets you become a kung fu god")
  8353. print(":weakkungfu - The kungfu tool, but it doesn't insta-kill")
  8354. print(":ora - The weak kungfu tool, but makes your go ORARARARA when you equip it")
  8355. print(":shield PLAYERNAME - Puts a shield around the target. Kills anyone who touches it. Only you can see it")
  8356. print(":removeshield PLAYERNAME - Removes the shield on the target")
  8357. print(":shield me - Puts a shield around you. Kills anyone who touches it. Only you can see it")
  8358. print(":removeshield me - Removes the shield placed on you")
  8359. print(":view PLAYERNAME - Views the target")
  8360. print(":unview PLAYERNAME - Unviews the target")
  8361. print(":ws NUMBER - Changes your speed to the number")
  8362. print(":goto PLAYERNAME - teleports you to the target")
  8363. print(":setsay NUMBER - Sets the amount of times the say command says something")
  8364. print(":say MESSAGE - Says the message however many times you set it to with the setsay command")
  8365. print(":wlcmds - Says the first half of the commands whitelisted users can use in chat")
  8366. print(":wlcmds2 - Says the second half of the commands whitelisted users can use in chat")
  8367. print(":flyspeed NUMBER - Changes the speed you fly at")
  8368. print(":fly - Makes you fly (Press C to toggle fly)")
  8369. print(":unfly - Makes you stop flying (Press C to toggle fly)")
  8370. print(":noclip - Noclips you (Press F to toggle noclip)")
  8371. print(":clip - Clips you (Press F to toggle noclip)")
  8372. print(":credits - Shows the cool gui you saw when you executed the script.")
  8373. print("Press F to TOGGLE NOCLIP")
  8374. print("Press C to TOGGLE FLYING")
  8375. print("Press = to BRING THE GUN")
  8376. print("Press - to KEV YOURSELF")
  8377. print()
  8378. print('Executing "kill others/etc." wont kill those whitelisted, but if you single them out it will')
  8379. print('If a user is whitelisted he/she will not be able to see commands on their screen with :cmds,')
  8380. print('and the same goes for :wls, since the game is filtering enabled, however they will')
  8381. print('be able to use commands if whitelisted')
  8382. print('You can not be unwhitelisted or killed')
  8383. print('Theres no all selection, however, you can do others. So, you can do :kill others but not :kill all')
  8384. print("Have fun")
  8385. print("------------------------------------------")
  8386. print("--Vortexturize | aidez moi | ObitoXDm8OI--")
  8387. print("------------Credit to Timeless------------")
  8388. print("------------------------------------------")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement