Advertisement
raulib

Untitled

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