HansCSia320

Twisted murder admin hack

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