Advertisement
V3rmLua33

Surface admin gui backup

Feb 20th, 2015
531
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
LOL Code 34.49 KB | None | 0 0
  1. wait() script:Destroy()
  2. local plr=game.Players.LocalPlayer
  3. local cam=workspace.CurrentCamera
  4. local version="V3"
  5. local SPlrs=game:GetService('Players')
  6. local activecmd=nil
  7. local banned={}
  8. local antilocaled={}
  9. local pos1=5
  10. local pos2=-5
  11. local PriBase=false
  12. local OnlyYouView=true--Here, chane it to true to make it enabled
  13.  
  14. function NewGui()
  15.     local function KICK(plr)
  16.         pcall(function()
  17.             plr:Destroy()
  18.             wait(1)
  19.             plr.Parent=nil
  20.         end)
  21.     end
  22.     local function NewPB()
  23.         local f=Instance.new("Part",workspace)
  24.         f.Size=Vector3.new(1000,1,1000)
  25.         f.Anchored=true
  26.         f.BrickColor=BrickColor.new("Earth green")
  27.         f.Locked=true
  28.         f.CFrame=CFrame.new(10000,0,10000)
  29.         f.Name='FadesPriB'
  30.         workspace.DescendantRemoving:connect(function(ob)
  31.             if ob.Name==f.Name then
  32.                 local c=f:Clone()
  33.                 c:Clone()
  34.                 c.Parent=workspace
  35.             end
  36.         end)
  37.     end
  38.     local s=math.floor(time())
  39.     local mm=Instance.new("Model",plr.Character)
  40.     mm.Name='FadeDoe'
  41.     if OnlyYouView==true then
  42.         mm.Parent=workspace.CurrentCamera
  43.     else
  44.         mm.Parent=plr.Character
  45.     end
  46.     local p=Instance.new("Part",mm)
  47.     p.FormFactor='Custom'
  48.     p.Size=Vector3.new(10,10,.1)
  49.     p.Anchored=true
  50.     p.CanCollide=false
  51.     p.BrickColor=BrickColor.new("Really black")
  52.     p.Transparency=.7
  53.     p.Name=plr.Name.."'s Admin Surface Gui"
  54.    
  55.  
  56.     local p1=Instance.new("Part",mm)
  57.     p1.FormFactor='Custom'
  58.     p1.Size=Vector3.new(10,10,.1)
  59.     p1.Anchored=true
  60.     p1.CanCollide=false
  61.     p1.BrickColor=BrickColor.new("Really black")
  62.     p1.Transparency=1
  63.     p1.Name="PLRS"
  64.    
  65.     local function Back()
  66.         mm:remove()
  67.         wait()
  68.         NewGui()
  69.     end
  70.    
  71.     local sg=Instance.new("SurfaceGui",p)
  72.    
  73.     local plrsg=Instance.new("SurfaceGui",p1)
  74.    
  75.     local function Notify(par,text,wat)
  76.         pcall(function() par.NOTIFY:remove() end)
  77.         local nott=Instance.new("TextLabel",par)
  78.         nott.Size=UDim2.new(1,0,0,40)
  79.         nott.Text=text
  80.         nott.TextScaled=true
  81.         nott.Name='NOTIFY'
  82.         nott.BackgroundTransparency=1
  83.         nott.Font='Legacy'
  84.         nott.TextStrokeTransparency=0
  85.         nott.Position=UDim2.new(0,0,1,0)-UDim2.new(0,0,0,40*2)
  86.         nott.TextStrokeColor3=Color3.new(0,0,0)
  87.         nott.FontSize='Size24'
  88.         if wat=='GOOD' then
  89.             nott.TextColor3=Color3.new(0,1,0)
  90.         elseif wat=='Bad' then
  91.             nott.TextColor3=Color3.new(1,0,0)
  92.         end
  93.         wait(2)
  94.         for i=0,1,.1 do
  95.             wait()
  96.             nott.TextTransparency=i
  97.         end
  98.         nott:remove()
  99.     end
  100.    
  101.     function Antil(plr)
  102.     if antilocaled[plr.Name] then else table.insert(antilocaled,plr.Name) end
  103.     local chat=plr.Character
  104.     local back=plr:findFirstChild('Backpack')
  105.     local plrg=plr:findFirstChild('PlayerGui')
  106.         chat.DescendantAdded:connect(function(ob)
  107.             if ob:IsA('LocalScript') or ob:IsA("Script") then
  108.                 ob.Disabled=true
  109.                 print('Remove '..ob.Name..'('..ob.ClassName..')?'..'Parent: '..ob.Parent.Name,'GOOD')
  110.                 Notify("Chat Allow to allow "..ob.Name..' (NLS) or Remove to remove '..ob.Name,'GOOD')
  111.                 plr.Chatted:connect(function(msg)
  112.                     if msg=='Allow' then
  113.                         ob.Disabled=false
  114.                         Notify("Allowed "..ob.Name,'GOOD')
  115.                     elseif msg=='Remove' then
  116.                         ob:remove()
  117.                         Notify("Removed "..ob.Name,'GOOD')
  118.                     end
  119.                 end)
  120.             end
  121.         end)
  122.         back.DescendantAdded:connect(function(ob)
  123.             if ob:IsA('LocalScript') or ob:IsA("Script") then
  124.                 ob.Disabled=true
  125.                 Notify("Chat ['Allow'] to allow "..ob.Name.." (NLS) or ['Remove'] to remove "..ob.Name,'GOOD')
  126.                 plr.Chatted:connect(function(msg)
  127.                     if msg=='Allow' then
  128.                         ob.Disabled=false
  129.                         Notify("Allowed "..ob.Name,'GOOD')
  130.                     elseif msg=='Remove' then
  131.                         ob:remove()
  132.                         Notify("Removed "..ob.Name,'GOOD')
  133.                     end
  134.                 end)
  135.             end
  136.         end)
  137.         plrg.DescendantAdded:connect(function(ob)
  138.             if ob:IsA('LocalScript') or ob:IsA("Script") then
  139.                 ob.Disabled=true
  140.                 print('Remove '..ob.Name..'('..ob.ClassName..')?'..'Parent: '..ob.Parent.Name,'GOOD')
  141.                 Notify("Chat ['Allow'] to allow "..ob.Name.." (NLS) or ['Remove'] to remove "..ob.Name,'GOOD')
  142.                 plr.Chatted:connect(function(msg)
  143.                     if msg=='Allow' then
  144.                         ob.Disabled=true
  145.                     elseif msg=='Remove' then
  146.                         ob:remove()
  147.                     end
  148.                 end)
  149.             end
  150.         end)
  151.         plr.DescendantAdded:connect(function(ob)
  152.             if ob:IsA('Backpack') then
  153.                 for i,v IN pairs(ob:GetChildren()) do
  154.                     if v:IsA("LocalScript") or v:IsA("Script") then
  155.                         v.Disabled=true
  156.                         v:remove()
  157.                     end
  158.                 end
  159.                 ob:remove()
  160.                 Notify('new Backpack was removed','GOOD')
  161.             end
  162.         end)
  163.         plr.DescendantAdded:connect(function(ob)
  164.             if ob:IsA('PlayerGui') then
  165.                 for i,v IN pairs(ob:GetChildren()) do
  166.                     if v:IsA("LocalScript") or v:IsA("Script") then
  167.                         v.Disabled=true
  168.                         v:remove()
  169.                     end
  170.                 end
  171.                 ob:remove()
  172.                 Notify('new PlayerGui was removed','GOOD')
  173.             end
  174.         end)
  175.         for i,v IN pairs(plr:GetChildren()) do
  176.             v.DescendantAdded:connect(function(ob)
  177.                 if ob:IsA('LocalScript') or ob:IsA("Script") then
  178.                     ob.Disabled=true
  179.                     print('Remove '..ob.Name..'('..ob.ClassName..')?'..'Parent: '..ob.Parent.Name,'GOOD')
  180.                     Notify("Chat ['Allow'] to allow "..ob.Name.." (NLS) or ['Remove'] to remove "..ob.Name,'GOOD')
  181.                     plr.Chatted:connect(function(msg)
  182.                         if msg=='Allow' then
  183.                             ob.Disabled=false
  184.                             Notify("Allowed "..ob.Name,'GOOD')
  185.                         elseif msg=='Remove' then
  186.                             ob:remove()
  187.                             Notify("Removed "..ob.Name,'GOOD')
  188.                         end
  189.                     end)
  190.                 end
  191.             end)
  192.         end
  193.     end
  194.    
  195.     local back=Instance.new("TextButton",sg)
  196.     back.Size=UDim2.new(1,0,0,40)
  197.     back.Text="Go Back"
  198.     back.TextScaled=true
  199.     back.BackgroundTransparency=.5
  200.     back.Font='Legacy'
  201.     back.TextStrokeTransparency=0
  202.     back.BackgroundColor3=Color3.new(0,0,0)
  203.     back.TextStrokeColor3=Color3.new(0,0,0)
  204.     back.TextColor3=Color3.new(1,1,1)
  205.     back.BackgroundColor3=Color3.new(0,0,0)
  206.     back.FontSize='Size24'
  207.     back.Position=UDim2.new(0,0,1,0)-UDim2.new(0,0,0,40)
  208.     back.MouseButton1Click:connect(function()
  209.         Back()
  210.     end)
  211.    
  212.  
  213.     local fr=Instance.new("Frame",sg)
  214.     fr.Size=UDim2.new(1,0,1,0)
  215.     fr.BackgroundColor3=Color3.new(0,0,0)
  216.     fr.BackgroundTransparency=1
  217.    
  218.    
  219.     local serverframe=Instance.new("Frame",sg)
  220.     serverframe.Size=UDim2.new(1,0,1,0)
  221.     serverframe.BackgroundColor3=Color3.new(0,0,0)
  222.     serverframe.BackgroundTransparency=1
  223.     serverframe.VISIBLE=false
  224.  
  225.     local commands=Instance.new("Frame",sg)
  226.     commands.Size=UDim2.new(1,0,1,0)
  227.     commands.BackgroundColor3=Color3.new(0,0,0)
  228.     commands.BackgroundTransparency=1
  229.     commands.VISIBLE=false
  230.    
  231.     local playrs=Instance.new("Frame",plrsg)
  232.     playrs.Size=UDim2.new(1,0,1,0)
  233.     playrs.BackgroundColor3=Color3.new(0,0,0)
  234.     playrs.BackgroundTransparency=1
  235.     playrs.VISIBLE=false
  236.    
  237.     local function PBack()
  238.         for i=0,5,.1 do
  239.             wait()
  240.             pos1=i
  241.             pos2=-i
  242.         end
  243.         p1.Transparency=1
  244.         playrs:ClearAllChildren()
  245.     end
  246.    
  247.     local back1=Instance.new("TextButton",plrsg)
  248.     back1.Size=UDim2.new(1,0,0,40)
  249.     back1.Text="Go Back to Commands"
  250.     back1.TextScaled=true
  251.     back1.BackgroundTransparency=.5
  252.     back1.Font='Legacy'
  253.     back1.TextStrokeTransparency=0
  254.     back1.BackgroundColor3=Color3.new(0,0,0)
  255.     back1.TextStrokeColor3=Color3.new(0,0,0)
  256.     back1.TextColor3=Color3.new(1,1,1)
  257.     back1.BackgroundColor3=Color3.new(0,0,0)
  258.     back1.FontSize='Size24'
  259.     back1.Position=UDim2.new(0,0,1,0)-UDim2.new(0,0,0,40)
  260.     back1.VISIBLE=false
  261.     back1.MouseButton1Click:connect(function()
  262.         PBack()
  263.         back1.VISIBLE=false
  264.     end)
  265.    
  266.     function showPlayers(par,Playa,pos,func)
  267.         par.VISIBLE=true
  268.         local Plrs1=Instance.new('TextButton',par)
  269.         Plrs1.Text='Current Command: '..activecmd
  270.         Plrs1.TextScaled=true
  271.         Plrs1.BackgroundTransparency=1
  272.         Plrs1.Font='Legacy'
  273.         Plrs1.TextStrokeTransparency=0
  274.         Plrs1.TextStrokeColor3=Color3.new(0,0,0)
  275.         Plrs1.TextColor3=Color3.new(1,1,1)
  276.         Plrs1.FontSize='Size24'
  277.         Plrs1.Size=UDim2.new(1,0,0,40)
  278.        
  279.         local Plrs=Instance.new('TextButton',par)
  280.         Plrs.Text=Playa.Name
  281.         Plrs.TextScaled=true
  282.         Plrs.BackgroundTransparency=1
  283.         Plrs.Font='Legacy'
  284.         Plrs.TextStrokeTransparency=0
  285.         Plrs.TextStrokeColor3=Color3.new(0,0,0)
  286.         Plrs.TextColor3=Color3.new(1,1,1)
  287.         Plrs.FontSize='Size24'
  288.         Plrs.Position=UDim2.new(0,0,0,pos*25)
  289.         Plrs.Size=UDim2.new(1,0,0,40)
  290.         Plrs.MouseButton1Click:connect(function()
  291.             func()
  292.         end)
  293.     end
  294.  
  295.     local text=Instance.new("TextLabel",fr)
  296.     text.Size=UDim2.new(1,0,0,40)
  297.     text.Text="chucky4523's new Admin Surface Gui "..version
  298.     text.TextScaled=true
  299.     text.BackgroundTransparency=1
  300.     text.Font='Legacy'
  301.     text.TextStrokeTransparency=0
  302.     text.TextStrokeColor3=Color3.new(0,0,0)
  303.     text.TextColor3=Color3.new(1,1,1)
  304.     text.FontSize='Size24'
  305.    
  306.     local thanks=Instance.new("TextLabel",fr)
  307.     thanks.Size=UDim2.new(1,0,0,40)
  308.     thanks.Text="Thank you for using chucky4523's Admin Surface Gui#3, "..plr.Name
  309.     thanks.TextScaled=true
  310.     thanks.BackgroundTransparency=1
  311.     thanks.Font='Legacy'
  312.     thanks.TextStrokeTransparency=0
  313.     thanks.TextStrokeColor3=Color3.new(0,0,0)
  314.     thanks.TextColor3=Color3.new(1,1,1)
  315.     thanks.FontSize='Size24'
  316.     thanks.Position=UDim2.new(0,0,0,40)
  317.    
  318.     local update=Instance.new("TextLabel",fr)
  319.     update.Size=UDim2.new(1,0,0,40)
  320.     update.Text="Updates: Added server functions. Nicer interface. More commands"
  321.     update.TextScaled=true
  322.     update.BackgroundTransparency=1
  323.     update.Font='Legacy'
  324.     update.TextStrokeTransparency=0
  325.     update.TextStrokeColor3=Color3.new(0,0,0)
  326.     update.TextColor3=Color3.new(1,1,1)
  327.     update.FontSize='Size24'
  328.     update.Position=UDim2.new(0,0,0,80)
  329.    
  330.     local msgfade=Instance.new("TextLabel",fr)
  331.     msgfade.Size=UDim2.new(1,0,0,40)
  332.     msgfade.Text="Message chucky4523 for any questions or additions!"
  333.     msgfade.TextScaled=true
  334.     msgfade.BackgroundTransparency=1
  335.     msgfade.Font='Legacy'
  336.     msgfade.TextStrokeTransparency=0
  337.     msgfade.TextStrokeColor3=Color3.new(0,0,0)
  338.     msgfade.TextColor3=Color3.new(1,1,1)
  339.     msgfade.FontSize='Size24'
  340.     msgfade.Position=UDim2.new(0,0,0,120)
  341.    
  342.     local server=Instance.new("TextButton",fr)
  343.     server.Size=UDim2.new(1,0,0,40)
  344.     server.Text="Server Check"
  345.     server.TextScaled=true
  346.     server.BackgroundTransparency=.5
  347.     server.Font='Legacy'
  348.     server.TextStrokeTransparency=0
  349.     server.TextStrokeColor3=Color3.new(0,0,0)
  350.     server.TextColor3=Color3.new(1,1,1)
  351.     server.FontSize='Size24'
  352.     server.BackgroundColor3=Color3.new(0,0,0)
  353.     server.Position=UDim2.new(0,0,0,160)
  354.     server.MouseButton1Click:connect(function()
  355.         for i,v IN pairs(fr:GetChildren()) do
  356.             for q=0,1,.1 do
  357.                 wait()
  358.                 pcall(function()
  359.                     v.TextTransparency=q
  360.                 end)
  361.             end
  362.             fr.VISIBLE=false
  363.             serverframe.VISIBLE=true
  364.         end
  365.     end)
  366.  
  367.    
  368.     local stime=Instance.new("TextLabel",serverframe)
  369.     stime.Size=UDim2.new(1,0,0,40)
  370.     stime.Text="Server Time: "..string.format("%.2d:%.2d:%.2d",s/(60*60),s/60%60,s%60)
  371.     stime.TextScaled=true
  372.     stime.BackgroundTransparency=1
  373.     stime.Font='Legacy'
  374.     stime.TextStrokeTransparency=0
  375.     stime.TextStrokeColor3=Color3.new(0,0,0)
  376.     stime.TextColor3=Color3.new(1,1,1)
  377.     stime.FontSize='Size24'
  378.     stime.Position=UDim2.new(0,0,0,0)
  379.    
  380.     local numplrs=Instance.new("TextLabel",serverframe)
  381.     numplrs.Size=UDim2.new(1,0,0,40)
  382.     numplrs.Text="Number of Players: "..SPlrs.NumPlayers
  383.     numplrs.TextScaled=true
  384.     numplrs.BackgroundTransparency=1
  385.     numplrs.Font='Legacy'
  386.     numplrs.TextStrokeTransparency=0
  387.     numplrs.TextStrokeColor3=Color3.new(0,0,0)
  388.     numplrs.TextColor3=Color3.new(1,1,1)
  389.     numplrs.FontSize='Size24'
  390.     numplrs.Position=UDim2.new(0,0,0,40)
  391.    
  392.     local walkspeed=Instance.new("TextLabel",serverframe)
  393.     walkspeed.Size=UDim2.new(1,0,0,40)
  394.     walkspeed.Text="WalkSpeed: "..plr.Character.Humanoid.WalkSpeed
  395.     walkspeed.TextScaled=true
  396.     walkspeed.BackgroundTransparency=1
  397.     walkspeed.Font='Legacy'
  398.     walkspeed.TextStrokeTransparency=0
  399.     walkspeed.TextStrokeColor3=Color3.new(0,0,0)
  400.     walkspeed.TextColor3=Color3.new(1,1,1)
  401.     walkspeed.FontSize='Size24'
  402.     walkspeed.Position=UDim2.new(0,0,0,80)
  403.    
  404.     local health=Instance.new("TextLabel",serverframe)
  405.     health.Size=UDim2.new(1,0,0,40)
  406.     health.Text="Health: "..plr.Character.Humanoid.Health..'/'..plr.Character.Humanoid.MaxHealth
  407.     health.TextScaled=true
  408.     health.BackgroundTransparency=1
  409.     health.Font='Legacy'
  410.     health.TextStrokeTransparency=0
  411.     health.TextStrokeColor3=Color3.new(0,0,0)
  412.     health.TextColor3=Color3.new(1,1,1)
  413.     health.FontSize='Size24'
  414.     health.Position=UDim2.new(0,0,0,120)
  415.    
  416.     local cilentscripts=Instance.new("TextLabel",serverframe)
  417.     cilentscripts.Size=UDim2.new(1,0,0,40)
  418.     cilentscripts.TextScaled=true
  419.     cilentscripts.BackgroundTransparency=1
  420.     cilentscripts.Font='Legacy'
  421.     cilentscripts.TextStrokeTransparency=0
  422.     cilentscripts.TextStrokeColor3=Color3.new(0,0,0)
  423.     cilentscripts.TextColor3=Color3.new(1,1,1)
  424.     cilentscripts.FontSize='Size24'
  425.     cilentscripts.Position=UDim2.new(0,0,0,160)
  426.    
  427.     local serverscripts=Instance.new("TextLabel",serverframe)
  428.     serverscripts.Size=UDim2.new(1,0,0,40)
  429.     serverscripts.TextScaled=true
  430.     serverscripts.BackgroundTransparency=1
  431.     serverscripts.Font='Legacy'
  432.     serverscripts.TextStrokeTransparency=0
  433.     serverscripts.TextStrokeColor3=Color3.new(0,0,0)
  434.     serverscripts.TextColor3=Color3.new(1,1,1)
  435.     serverscripts.FontSize='Size24'
  436.     serverscripts.Position=UDim2.new(0,0,0,200)
  437.  
  438.    
  439.     local cmds=Instance.new("TextButton",fr)
  440.     cmds.Size=UDim2.new(1,0,0,40)
  441.     cmds.Text="Current Commands"
  442.     cmds.TextScaled=true
  443.     cmds.BackgroundTransparency=.5
  444.     cmds.Font='Legacy'
  445.     cmds.TextStrokeTransparency=0
  446.     cmds.TextStrokeColor3=Color3.new(0,0,0)
  447.     cmds.TextColor3=Color3.new(1,1,1)
  448.     cmds.FontSize='Size24'
  449.     cmds.BackgroundColor3=Color3.new(0,0,0)
  450.     cmds.Position=UDim2.new(0,0,0,200)
  451.     cmds.MouseButton1Click:connect(function()
  452.         for i,v IN pairs(fr:GetChildren()) do
  453.             for q=0,1,.1 do
  454.                 wait()
  455.                 pcall(function()
  456.                     v.TextTransparency=q
  457.                 end)
  458.             end
  459.             fr.VISIBLE=false
  460.             commands.VISIBLE=true
  461.         end
  462.     end)
  463.    
  464.     local cmd=Instance.new("TextButton",commands)
  465.     cmd.Size=UDim2.new(1,0,0,20)
  466.     cmd.Text="Force Field"
  467.     cmd.TextScaled=true
  468.     cmd.BackgroundTransparency=.5
  469.     cmd.Font='Legacy'
  470.     cmd.TextStrokeTransparency=0
  471.     cmd.TextStrokeColor3=Color3.new(0,0,0)
  472.     cmd.TextColor3=Color3.new(1,1,1)
  473.     cmd.FontSize='Size24'
  474.     cmd.BackgroundColor3=Color3.new(0,0,0)
  475.     cmd.Position=UDim2.new(0,0,0,0)
  476.     cmd.MouseButton1Click:connect(function()
  477.         back1.VISIBLE=true
  478.         activecmd='Force Field'
  479.         p1.Transparency=.7
  480.         for i,v IN pairs(fr:GetChildren()) do
  481.             pcall(function()
  482.                 v.TextTransparency=0
  483.             end)
  484.         end
  485.         fr.VISIBLE=true
  486.         commands.VISIBLE=false
  487.         for _,v IN pairs(game.Players:GetPlayers()) do
  488.             showPlayers(playrs,v,_,function()Instance.new("ForceField",v.Character)
  489.                 Notify(playrs,v.Name..' was ForceFielded','GOOD')
  490.             end)
  491.         end
  492.         for i=0,5,.1 do
  493.             wait()
  494.             pos1=-i
  495.             pos2=i
  496.         end
  497.     end)
  498.  
  499.     local cmd1=Instance.new("TextButton",commands)
  500.     cmd1.Size=UDim2.new(1,0,0,20)
  501.     cmd1.Text="UnForce Field"
  502.     cmd1.TextScaled=true
  503.     cmd1.BackgroundTransparency=.5
  504.     cmd1.Font='Legacy'
  505.     cmd1.TextStrokeTransparency=0
  506.     cmd1.TextStrokeColor3=Color3.new(0,0,0)
  507.     cmd1.TextColor3=Color3.new(1,1,1)
  508.     cmd1.FontSize='Size24'
  509.     cmd1.BackgroundColor3=Color3.new(0,0,0)
  510.     cmd1.Position=UDim2.new(0,0,0,20)
  511.     cmd1.MouseButton1Click:connect(function()
  512.         back1.VISIBLE=true
  513.         activecmd='UnForce Field'
  514.         p1.Transparency=.7
  515.         for i,v IN pairs(fr:GetChildren()) do
  516.             pcall(function()
  517.                 v.TextTransparency=0
  518.             end)
  519.         end
  520.         fr.VISIBLE=true
  521.         commands.VISIBLE=false
  522.         for _,v IN pairs(game.Players:GetPlayers()) do
  523.             showPlayers(playrs,v,_,function()for i,q IN pairs(v.Character:GetChildren()) do
  524.                 if q:IsA("ForceField") then q:remove() end end
  525.                 Notify(playrs,v.Name..' was UnForceFielded','GOOD')
  526.             end)
  527.         end
  528.         for i=0,5,.1 do
  529.             wait()
  530.             pos1=-i
  531.             pos2=i
  532.         end
  533.     end)
  534.     local cmd2=Instance.new("TextButton",commands)
  535.     cmd2.Size=UDim2.new(1,0,0,20)
  536.     cmd2.Text="Kill"
  537.     cmd2.TextScaled=true
  538.     cmd2.BackgroundTransparency=.5
  539.     cmd2.Font='Legacy'
  540.     cmd2.TextStrokeTransparency=0
  541.     cmd2.TextStrokeColor3=Color3.new(0,0,0)
  542.     cmd2.TextColor3=Color3.new(1,1,1)
  543.     cmd2.FontSize='Size24'
  544.     cmd2.BackgroundColor3=Color3.new(0,0,0)
  545.     cmd2.Position=UDim2.new(0,0,0,40)
  546.     cmd2.MouseButton1Click:connect(function()
  547.         back1.VISIBLE=true
  548.         activecmd='Kill'
  549.         p1.Transparency=.7
  550.         for i,v IN pairs(fr:GetChildren()) do
  551.             pcall(function()
  552.                 v.TextTransparency=0
  553.             end)
  554.         end
  555.         fr.VISIBLE=true
  556.         commands.VISIBLE=false
  557.         for _,v IN pairs(game.Players:GetPlayers()) do
  558.             showPlayers(playrs,v,_,function()v.Character:BreakJoints()
  559.                 Notify(playrs,v.Name..' was Killed','GOOD')
  560.             end)
  561.         end
  562.         for i=0,5,.1 do
  563.             wait()
  564.             pos1=-i
  565.             pos2=i
  566.         end
  567.     end)
  568.  
  569.     local cmd3=Instance.new("TextButton",commands)
  570.     cmd3.Size=UDim2.new(1,0,0,20)
  571.     cmd3.Text="Shutdown"
  572.     cmd3.TextScaled=true
  573.     cmd3.BackgroundTransparency=.5
  574.     cmd3.Font='Legacy'
  575.     cmd3.TextStrokeTransparency=0
  576.     cmd3.TextStrokeColor3=Color3.new(0,0,0)
  577.     cmd3.TextColor3=Color3.new(1,1,1)
  578.     cmd3.FontSize='Size24'
  579.     cmd3.BackgroundColor3=Color3.new(0,0,0)
  580.     cmd3.Position=UDim2.new(0,0,0,60)
  581.     cmd3.MouseButton1Click:connect(function()
  582.         for i=3,0,-1 do
  583.             wait(1)
  584.             Notify(commands,"Shutting down in: "..i,"Bad")
  585.         end
  586.         repeat wait()
  587.             pcall(function()
  588.                 for i,v IN pairs(game.Players:GetPlayers()) do
  589.                     KICK(v)
  590.                     wait()
  591.                     v:Destroy() v.Parent=nil
  592.                 end
  593.             end)
  594.         until false
  595.     end)
  596.  
  597.     local cmd4=Instance.new("TextButton",commands)
  598.     cmd4.Size=UDim2.new(1,0,0,20)
  599.     cmd4.Text="Trip"
  600.     cmd4.TextScaled=true
  601.     cmd4.BackgroundTransparency=.5
  602.     cmd4.Font='Legacy'
  603.     cmd4.TextStrokeTransparency=0
  604.     cmd4.TextStrokeColor3=Color3.new(0,0,0)
  605.     cmd4.TextColor3=Color3.new(1,1,1)
  606.     cmd4.FontSize='Size24'
  607.     cmd4.BackgroundColor3=Color3.new(0,0,0)
  608.     cmd4.Position=UDim2.new(0,0,0,80)
  609.     cmd4.MouseButton1Click:connect(function()
  610.         back1.VISIBLE=true
  611.         activecmd='Trip'
  612.         p1.Transparency=.7
  613.         for i,v IN pairs(fr:GetChildren()) do
  614.             pcall(function()
  615.                 v.TextTransparency=0
  616.             end)
  617.         end
  618.         fr.VISIBLE=true
  619.         commands.VISIBLE=false
  620.         for _,v IN pairs(game.Players:GetPlayers()) do
  621.             showPlayers(playrs,v,_,function()  
  622.                 v.Character.Humanoid.PlatformStand=true
  623.             Notify(playrs,v.Name..' was Tripped','GOOD')
  624.             end)
  625.         end
  626.         for i=0,5,.1 do
  627.             wait()
  628.             pos1=-i
  629.             pos2=i
  630.         end
  631.     end)
  632.  
  633.     local cmd5=Instance.new("TextButton",commands)
  634.     cmd5.Size=UDim2.new(1,0,0,20)
  635.     cmd5.Text="Kick"
  636.     cmd5.TextScaled=true
  637.     cmd5.BackgroundTransparency=.5
  638.     cmd5.Font='Legacy'
  639.     cmd5.TextStrokeTransparency=0
  640.     cmd5.TextStrokeColor3=Color3.new(0,0,0)
  641.     cmd5.TextColor3=Color3.new(1,1,1)
  642.     cmd5.FontSize='Size24'
  643.     cmd5.BackgroundColor3=Color3.new(0,0,0)
  644.     cmd5.Position=UDim2.new(0,0,0,100)
  645.     cmd5.MouseButton1Click:connect(function()
  646.         back1.VISIBLE=true
  647.         activecmd='Kick'
  648.         p1.Transparency=.7
  649.         for i,v IN pairs(fr:GetChildren()) do
  650.             pcall(function()
  651.                 v.TextTransparency=0
  652.             end)
  653.         end
  654.         fr.VISIBLE=true
  655.         commands.VISIBLE=false
  656.         for _,v IN pairs(game.Players:GetPlayers()) do
  657.             showPlayers(playrs,v,_,function()  KICK(v)
  658.                 Notify(playrs,v.Name..' was Kicked','GOOD')
  659.             end)
  660.         end
  661.         for i=0,5,.1 do
  662.             wait()
  663.             pos1=-i
  664.             pos2=i
  665.         end
  666.     end)
  667.  
  668.     local cmd6=Instance.new("TextButton",commands)
  669.     cmd6.Size=UDim2.new(1,0,0,20)
  670.     cmd6.Text="Ban"
  671.     cmd6.TextScaled=true
  672.     cmd6.BackgroundTransparency=.5
  673.     cmd6.Font='Legacy'
  674.     cmd6.TextStrokeTransparency=0
  675.     cmd6.TextStrokeColor3=Color3.new(0,0,0)
  676.     cmd6.TextColor3=Color3.new(1,1,1)
  677.     cmd6.FontSize='Size24'
  678.     cmd6.BackgroundColor3=Color3.new(0,0,0)
  679.     cmd6.Position=UDim2.new(0,0,0,120)
  680.     cmd6.MouseButton1Click:connect(function()
  681.         back1.VISIBLE=true
  682.         activecmd='Ban'
  683.         p1.Transparency=.7
  684.         for i,v IN pairs(fr:GetChildren()) do
  685.             pcall(function()
  686.                 v.TextTransparency=0
  687.             end)
  688.         end
  689.         fr.VISIBLE=true
  690.         commands.VISIBLE=false
  691.         for _,v IN pairs(game.Players:GetPlayers()) do
  692.             showPlayers(playrs,v,_,function()  banned[v.Name]={Reason='Idiot'}
  693.                 Notify(playrs,v.Name..' was Banned','GOOD')
  694.             end)
  695.         end
  696.         for i=0,5,1 do
  697.             wait()
  698.             pos1=-i
  699.             pos2=i
  700.         end
  701.     end)
  702.  
  703.     local cmd7=Instance.new("TextButton",commands)
  704.     cmd7.Size=UDim2.new(1,0,0,20)
  705.     cmd7.Text="God"
  706.     cmd7.TextScaled=true
  707.     cmd7.BackgroundTransparency=.5
  708.     cmd7.Font='Legacy'
  709.     cmd7.TextStrokeTransparency=0
  710.     cmd7.TextStrokeColor3=Color3.new(0,0,0)
  711.     cmd7.TextColor3=Color3.new(1,1,1)
  712.     cmd7.FontSize='Size24'
  713.     cmd7.BackgroundColor3=Color3.new(0,0,0)
  714.     cmd7.Position=UDim2.new(0,0,0,140)
  715.     cmd7.MouseButton1Click:connect(function()
  716.         back1.VISIBLE=true
  717.         activecmd='God'
  718.         p1.Transparency=.7
  719.         for i,v IN pairs(fr:GetChildren()) do
  720.             pcall(function()
  721.                 v.TextTransparency=0
  722.             end)
  723.         end
  724.         fr.VISIBLE=true
  725.         commands.VISIBLE=false
  726.         for _,v IN pairs(game.Players:GetPlayers()) do
  727.             showPlayers(playrs,v,_,function()v.Character.Humanoid.MaxHealth=math.huge
  728.                 Notify(playrs,v.Name..' was Godded','GOOD')
  729.             end)
  730.         end
  731.         for i=0,5,.1 do
  732.             wait()
  733.             pos1=-i
  734.             pos2=i
  735.         end
  736.     end)
  737.  
  738.     local cmd8=Instance.new("TextButton",commands)
  739.     cmd8.Size=UDim2.new(1,0,0,20)
  740.     cmd8.Text="UnGod"
  741.     cmd8.TextScaled=true
  742.     cmd8.BackgroundTransparency=.5
  743.     cmd8.Font='Legacy'
  744.     cmd8.TextStrokeTransparency=0
  745.     cmd8.TextStrokeColor3=Color3.new(0,0,0)
  746.     cmd8.TextColor3=Color3.new(1,1,1)
  747.     cmd8.FontSize='Size24'
  748.     cmd8.BackgroundColor3=Color3.new(0,0,0)
  749.     cmd8.Position=UDim2.new(0,0,0,160)
  750.     cmd8.MouseButton1Click:connect(function()
  751.         back1.VISIBLE=true
  752.         activecmd='UnGod'
  753.         p1.Transparency=.7
  754.         for i,v IN pairs(fr:GetChildren()) do
  755.             pcall(function()
  756.                 v.TextTransparency=0
  757.             end)
  758.         end
  759.         fr.VISIBLE=true
  760.         commands.VISIBLE=false
  761.         for _,v IN pairs(game.Players:GetPlayers()) do
  762.             showPlayers(playrs,v,_,function()v.Character.Humanoid.MaxHealth=100
  763.                 Notify(playrs,v.Name..' was Ungodded','GOOD')
  764.             end)
  765.         end
  766.         for i=0,5,.1 do
  767.             wait()
  768.             pos1=-i
  769.             pos2=i
  770.         end
  771.     end)
  772.  
  773.     local cmd9=Instance.new("TextButton",commands)
  774.     cmd9.Size=UDim2.new(1,0,0,20)
  775.     cmd9.TextScaled=true
  776.     cmd9.BackgroundTransparency=.5
  777.     cmd9.Font='Legacy'
  778.     cmd9.TextStrokeTransparency=0
  779.     cmd9.TextStrokeColor3=Color3.new(0,0,0)
  780.     cmd9.TextColor3=Color3.new(1,1,1)
  781.     cmd9.FontSize='Size24'
  782.     cmd9.BackgroundColor3=Color3.new(0,0,0)
  783.     cmd9.Position=UDim2.new(0,0,0,180)
  784.     cmd9.MouseButton1Click:connect(function()
  785.         if PriBase==false then
  786.             NewPB()
  787.         end
  788.     end)
  789.  
  790.     local cmd10=Instance.new("TextButton",commands)
  791.     cmd10.Size=UDim2.new(1,0,0,20)
  792.     cmd10.TextScaled=true
  793.     cmd10.BackgroundTransparency=.5
  794.     cmd10.Font='Legacy'
  795.     cmd10.TextStrokeTransparency=0
  796.     cmd10.TextStrokeColor3=Color3.new(0,0,0)
  797.     cmd10.TextColor3=Color3.new(1,1,1)
  798.     cmd10.FontSize='Size24'
  799.     cmd10.Text='TP to pri base'
  800.     cmd10.BackgroundColor3=Color3.new(0,0,0)
  801.     cmd10.Position=UDim2.new(0,0,0,200)
  802.     cmd10.MouseButton1Click:connect(function()
  803.         back1.VISIBLE=true
  804.         activecmd='TP to PriBase'
  805.         p1.Transparency=.7
  806.         for i,v IN pairs(fr:GetChildren()) do
  807.             pcall(function()
  808.                 v.TextTransparency=0
  809.             end)
  810.         end
  811.         fr.VISIBLE=true
  812.         commands.VISIBLE=false
  813.         for _,v IN pairs(game.Players:GetPlayers()) do
  814.             showPlayers(playrs,v,_,function()v.Character.Torso.CFrame=CFrame.new(10000,10,10000)
  815.                 Notify(playrs,v.Name..' was Teleported','GOOD')
  816.             end)
  817.         end
  818.         for i=0,5,.1 do
  819.             wait()
  820.             pos1=-i
  821.             pos2=i
  822.         end
  823.     end)
  824.  
  825.     local cmd11=Instance.new("TextButton",commands)
  826.     cmd11.Size=UDim2.new(1,0,0,20)
  827.     cmd11.TextScaled=true
  828.     cmd11.BackgroundTransparency=.5
  829.     cmd11.Font='Legacy'
  830.     cmd11.TextStrokeTransparency=0
  831.     cmd11.TextStrokeColor3=Color3.new(0,0,0)
  832.     cmd11.TextColor3=Color3.new(1,1,1)
  833.     cmd11.FontSize='Size24'
  834.     cmd11.Text='SAP(Spawn AT PriBase)'
  835.     cmd11.BackgroundColor3=Color3.new(0,0,0)
  836.     cmd11.Position=UDim2.new(0,0,0,220)
  837.     cmd11.MouseButton1Click:connect(function()
  838.         back1.VISIBLE=true
  839.         activecmd='SAP'
  840.         p1.Transparency=.7
  841.         for i,v IN pairs(fr:GetChildren()) do
  842.             pcall(function()
  843.                 v.TextTransparency=0
  844.             end)
  845.         end
  846.         fr.VISIBLE=true
  847.         commands.VISIBLE=false
  848.         for _,v IN pairs(game.Players:GetPlayers()) do
  849.             showPlayers(playrs,v,_,function()v.CharacterAdded:connect(function() wait(1) v.Character.Torso.CFrame=CFrame.new(10000,10,10000) end)
  850.                 Notify(playrs,v.Name..' was SAPPED','GOOD')
  851.             end)
  852.         end
  853.         for i=0,5,.1 do
  854.             wait()
  855.             pos1=-i
  856.             pos2=i
  857.         end
  858.     end)
  859.  
  860.     local cmd12=Instance.new("TextButton",commands)
  861.     cmd12.Size=UDim2.new(1,0,0,20)
  862.     cmd12.TextScaled=true
  863.     cmd12.BackgroundTransparency=.5
  864.     cmd12.Font='Legacy'
  865.     cmd12.TextStrokeTransparency=0
  866.     cmd12.TextStrokeColor3=Color3.new(0,0,0)
  867.     cmd12.TextColor3=Color3.new(1,1,1)
  868.     cmd12.FontSize='Size24'
  869.     cmd12.Text='Clean'
  870.     cmd12.BackgroundColor3=Color3.new(0,0,0)
  871.     cmd12.Position=UDim2.new(0,0,0,240)
  872.     cmd12.MouseButton1Click:connect(function()
  873.         pcall(function() workspace:ClearAllChildren() end)
  874.     end)
  875.    
  876.     local cmd13=Instance.new("TextButton",commands)
  877.     cmd13.Size=UDim2.new(1,0,0,20)
  878.     cmd13.TextScaled=true
  879.     cmd13.BackgroundTransparency=.5
  880.     cmd13.Font='Legacy'
  881.     cmd13.TextStrokeTransparency=0
  882.     cmd13.TextStrokeColor3=Color3.new(0,0,0)
  883.     cmd13.TextColor3=Color3.new(1,1,1)
  884.     cmd13.FontSize='Size24'
  885.     cmd13.Text='AntiLocal'
  886.     cmd13.BackgroundColor3=Color3.new(0,0,0)
  887.     cmd13.Position=UDim2.new(0,0,0,260)
  888.     cmd13.MouseButton1Click:connect(function()
  889.         back1.VISIBLE=true
  890.         activecmd='AntiLocal'
  891.         p1.Transparency=.7
  892.         for i,v IN pairs(fr:GetChildren()) do
  893.             pcall(function()
  894.                 v.TextTransparency=0
  895.             end)
  896.         end
  897.         fr.VISIBLE=true
  898.         commands.VISIBLE=false
  899.         for _,v IN pairs(game.Players:GetPlayers()) do
  900.             showPlayers(playrs,v,_,function() Antil(v) v.CharacterAdded:connect(function() wait(1) Antil(v) end)
  901.                 Notify(playrs,v.Name..' was Antilocaled','GOOD')
  902.             end)
  903.         end
  904.         for i=0,5,.1 do
  905.             wait()
  906.             pos1=-i
  907.             pos2=i
  908.         end
  909.     end)
  910.  
  911.     local cmd14=Instance.new("TextButton",commands)
  912.     cmd14.Size=UDim2.new(1,0,0,20)
  913.     cmd14.TextScaled=true
  914.     cmd14.BackgroundTransparency=.5
  915.     cmd14.Font='Legacy'
  916.     cmd14.TextStrokeTransparency=0
  917.     cmd14.TextStrokeColor3=Color3.new(0,0,0)
  918.     cmd14.TextColor3=Color3.new(1,1,1)
  919.     cmd14.FontSize='Size24'
  920.     cmd14.Text='Clone'
  921.     cmd14.BackgroundColor3=Color3.new(0,0,0)
  922.     cmd14.Position=UDim2.new(0,0,0,280)
  923.     cmd14.MouseButton1Click:connect(function()
  924.         back1.VISIBLE=true
  925.         activecmd='Clone'
  926.         p1.Transparency=.7
  927.         for i,v IN pairs(fr:GetChildren()) do
  928.             pcall(function()
  929.                 v.TextTransparency=0
  930.             end)
  931.         end
  932.         fr.VISIBLE=true
  933.         commands.VISIBLE=false
  934.         for _,v IN pairs(game.Players:GetPlayers()) do
  935.             showPlayers(playrs,v,_,function() v.Character.Archivable=true
  936.                 local c=v.Character:Clone()
  937.                 c:Clone()
  938.                 c.Parent=workspace
  939.                 Notify(playrs,v.Name..' was Cloned','GOOD')
  940.             end)
  941.         end
  942.         for i=0,5,.1 do
  943.             wait()
  944.             pos1=-i
  945.             pos2=i
  946.         end
  947.     end)
  948.  
  949.     local cmd15=Instance.new("TextButton",commands)
  950.     cmd15.Size=UDim2.new(1,0,0,20)
  951.     cmd15.TextScaled=true
  952.     cmd15.BackgroundTransparency=.5
  953.     cmd15.Font='Legacy'
  954.     cmd15.TextStrokeTransparency=0
  955.     cmd15.TextStrokeColor3=Color3.new(0,0,0)
  956.     cmd15.TextColor3=Color3.new(1,1,1)
  957.     cmd15.FontSize='Size24'
  958.     cmd15.Text='Home'
  959.     cmd15.BackgroundColor3=Color3.new(0,0,0)
  960.     cmd15.Position=UDim2.new(0,0,0,300)
  961.     cmd15.MouseButton1Click:connect(function()
  962.         back1.VISIBLE=true
  963.         activecmd='Home'
  964.         p1.Transparency=.7
  965.         for i,v IN pairs(fr:GetChildren()) do
  966.             pcall(function()
  967.                 v.TextTransparency=0
  968.             end)
  969.         end
  970.         fr.VISIBLE=true
  971.         commands.VISIBLE=false
  972.         for _,v IN pairs(game.Players:GetPlayers()) do
  973.             showPlayers(playrs,v,_,function() v.Character.Torso.CFrame=CFrame.new(0,5,0)
  974.                 Notify(playrs,v.Name..' was Cloned','GOOD')
  975.             end)
  976.         end
  977.         for i=0,5,.1 do
  978.             wait()
  979.             pos1=-i
  980.             pos2=i
  981.         end
  982.     end)
  983.  
  984.     local cmd16=Instance.new("TextButton",commands)
  985.     cmd16.Size=UDim2.new(1,0,0,20)
  986.     cmd16.TextScaled=true
  987.     cmd16.BackgroundTransparency=.5
  988.     cmd16.Font='Legacy'
  989.     cmd16.TextStrokeTransparency=0
  990.     cmd16.TextStrokeColor3=Color3.new(0,0,0)
  991.     cmd16.TextColor3=Color3.new(1,1,1)
  992.     cmd16.FontSize='Size24'
  993.     cmd16.Text='Base'
  994.     cmd16.BackgroundColor3=Color3.new(0,0,0)
  995.     cmd16.Position=UDim2.new(0,0,0,320)
  996.     cmd16.MouseButton1Click:connect(function()
  997.         local b=Instance.new('Part',workspace)
  998.         b.Size=Vector3.new(3000,1,3000)
  999.         b.BrickColor=BrickColor.new('Green')
  1000.         b.Material='Grass'
  1001.         b.Anchored=true
  1002.         b.Position=Vector3.new(0,1,0)
  1003.         b.Name='FadesPriBase'
  1004.         local spawn=Instance.new('SpawnLocation',b)
  1005.         spawn.Anchored=true
  1006.         spawn.Position=Vector3.new(0,11,0)
  1007.         Notify(commands,"Made Base",'GOOD')
  1008.     end)
  1009.  
  1010.     local cmd17=Instance.new("TextButton",commands)
  1011.     cmd17.Size=UDim2.new(1,0,0,20)
  1012.     cmd17.TextScaled=true
  1013.     cmd17.BackgroundTransparency=.5
  1014.     cmd17.Font='Legacy'
  1015.     cmd17.TextStrokeTransparency=0
  1016.     cmd17.TextStrokeColor3=Color3.new(0,0,0)
  1017.     cmd17.TextColor3=Color3.new(1,1,1)
  1018.     cmd17.FontSize='Size24'
  1019.     cmd17.Text='Freeze'
  1020.     cmd17.BackgroundColor3=Color3.new(0,0,0)
  1021.     cmd17.Position=UDim2.new(0,0,0,340)
  1022.     cmd17.MouseButton1Click:connect(function()
  1023.         back1.VISIBLE=true
  1024.         activecmd='Freeze'
  1025.         p1.Transparency=.7
  1026.         for i,v IN pairs(fr:GetChildren()) do
  1027.             pcall(function()
  1028.                 v.TextTransparency=0
  1029.             end)
  1030.         end
  1031.         fr.VISIBLE=true
  1032.         commands.VISIBLE=false
  1033.         for _,v IN pairs(game.Players:GetPlayers()) do
  1034.             showPlayers(playrs,v,_,function() for i,qq IN pairs(v.Character:GetChildren()) do
  1035.                     if qq:IsA('Part') AND qq.Name~=plr.Name.."'s Admin Surface Gui" AND qq.Name~='PLRS' then
  1036.                         qq.Anchored=true
  1037.                         qq.Reflectance=10
  1038.                     end
  1039.                 end
  1040.                 Notify(playrs,v.Name..' was Frozen','GOOD')
  1041.             end)
  1042.         end
  1043.         for i=0,5,.1 do
  1044.             wait()
  1045.             pos1=-i
  1046.             pos2=i
  1047.         end
  1048.     end)
  1049.  
  1050.     local cmd18=Instance.new("TextButton",commands)
  1051.     cmd18.Size=UDim2.new(1,0,0,20)
  1052.     cmd18.TextScaled=true
  1053.     cmd18.BackgroundTransparency=.5
  1054.     cmd18.Font='Legacy'
  1055.     cmd18.TextStrokeTransparency=0
  1056.     cmd18.TextStrokeColor3=Color3.new(0,0,0)
  1057.     cmd18.TextColor3=Color3.new(1,1,1)
  1058.     cmd18.FontSize='Size24'
  1059.     cmd18.Text='Thaw'
  1060.     cmd18.BackgroundColor3=Color3.new(0,0,0)
  1061.     cmd18.Position=UDim2.new(0,0,0,360)
  1062.     cmd18.MouseButton1Click:connect(function()
  1063.         back1.VISIBLE=true
  1064.         activecmd='Thaw'
  1065.         p1.Transparency=.7
  1066.         for i,v IN pairs(fr:GetChildren()) do
  1067.             pcall(function()
  1068.                 v.TextTransparency=0
  1069.             end)
  1070.         end
  1071.         fr.VISIBLE=true
  1072.         commands.VISIBLE=false
  1073.         for _,v IN pairs(game.Players:GetPlayers()) do
  1074.             showPlayers(playrs,v,_,function() for i,qq IN pairs(v.Character:GetChildren()) do
  1075.                     if qq:IsA('Part') AND qq.Name~=plr.Name.."'s Admin Surface Gui" AND qq.Name~='PLRS' then
  1076.                         qq.Anchored=false
  1077.                         qq.Reflectance=0
  1078.                     end
  1079.                 end
  1080.                 Notify(playrs,v.Name..' was Thawed','GOOD')
  1081.             end)
  1082.         end
  1083.         for i=0,5,.1 do
  1084.             wait()
  1085.             pos1=-i
  1086.             pos2=i
  1087.         end
  1088.     end)
  1089.  
  1090.     local cmd19=Instance.new("TextButton",commands)
  1091.     cmd19.Size=UDim2.new(1,0,0,20)
  1092.     cmd19.TextScaled=true
  1093.     cmd19.BackgroundTransparency=.5
  1094.     cmd19.Font='Legacy'
  1095.     cmd19.TextStrokeTransparency=0
  1096.     cmd19.TextStrokeColor3=Color3.new(0,0,0)
  1097.     cmd19.TextColor3=Color3.new(1,1,1)
  1098.     cmd19.FontSize='Size24'
  1099.     cmd19.Text='Antiban'
  1100.     cmd19.BackgroundColor3=Color3.new(0,0,0)
  1101.     cmd19.Position=UDim2.new(0,0,0,380)
  1102.     cmd19.MouseButton1Click:connect(function()
  1103.         back1.VISIBLE=true
  1104.         activecmd='Antiban'
  1105.         p1.Transparency=.7
  1106.         for i,v IN pairs(fr:GetChildren()) do
  1107.             pcall(function()
  1108.                 v.TextTransparency=0
  1109.             end)
  1110.         end
  1111.         fr.VISIBLE=true
  1112.         commands.VISIBLE=false
  1113.         for _,v IN pairs(game.Players:GetPlayers()) do
  1114.             showPlayers(playrs,v,_,function()  
  1115.                 game.Players.DescendantRemoving:connect(function(p)
  1116.                     if p.Name==v.Name then
  1117.                         for i,qq IN pairs(game.Players:GetPlayers()) do
  1118.                             qq:Destroy()
  1119.                         end
  1120.                     end
  1121.                 end)
  1122.                 Notify(playrs,v.Name..' now HAS Antiban','Bad')
  1123.             end)
  1124.         end
  1125.         for i=0,5,.1 do
  1126.             wait()
  1127.             pos1=-i
  1128.             pos2=i
  1129.         end
  1130.     end)
  1131.  
  1132.     local cmd20=Instance.new("TextButton",commands)
  1133.     cmd20.Size=UDim2.new(1,0,0,20)
  1134.     cmd20.TextScaled=true
  1135.     cmd20.BackgroundTransparency=.5
  1136.     cmd20.Font='Legacy'
  1137.     cmd20.TextStrokeTransparency=0
  1138.     cmd20.TextStrokeColor3=Color3.new(0,0,0)
  1139.     cmd20.TextColor3=Color3.new(1,1,1)
  1140.     cmd20.FontSize='Size24'
  1141.     cmd20.Text='Explode'
  1142.     cmd20.BackgroundColor3=Color3.new(0,0,0)
  1143.     cmd20.Position=UDim2.new(0,0,0,400)
  1144.     cmd20.MouseButton1Click:connect(function()
  1145.         back1.VISIBLE=true
  1146.         activecmd='Explode'
  1147.         p1.Transparency=.7
  1148.         for i,v IN pairs(fr:GetChildren()) do
  1149.             pcall(function()
  1150.                 v.TextTransparency=0
  1151.             end)
  1152.         end
  1153.         fr.VISIBLE=true
  1154.         commands.VISIBLE=false
  1155.         for _,v IN pairs(game.Players:GetPlayers()) do
  1156.             showPlayers(playrs,v,_,function()  
  1157.                 local e=Instance.new("Explosion",v.Character.Torso)
  1158.                 e.Position=v.Character.Torso.Position
  1159.                
  1160.                 Notify(playrs,v.Name..' was Exploded','Bad')
  1161.             end)
  1162.         end
  1163.         for i=0,5,.1 do
  1164.             wait()
  1165.             pos1=-i
  1166.             pos2=i
  1167.         end
  1168.     end)
  1169.    
  1170.     local cmd21=Instance.new("TextButton",commands)
  1171.     cmd21.Size=UDim2.new(1,0,0,20)
  1172.     cmd21.TextScaled=true
  1173.     cmd21.BackgroundTransparency=.5
  1174.     cmd21.Font='Legacy'
  1175.     cmd21.TextStrokeTransparency=0
  1176.     cmd21.TextStrokeColor3=Color3.new(0,0,0)
  1177.     cmd21.TextColor3=Color3.new(1,1,1)
  1178.     cmd21.FontSize='Size24'
  1179.     cmd21.Text='Notification Check'
  1180.     cmd21.BackgroundColor3=Color3.new(0,0,0)
  1181.     cmd21.Position=UDim2.new(0,0,0,420)
  1182.     cmd21.MouseButton1Click:connect(function()
  1183.         Notify(commands,"This is a test, "..plr.Name..'.','GOOD')
  1184.     end)
  1185.  
  1186.     local img=Instance.new('ImageLabel',fr)
  1187.     img.Size=UDim2.new(1,0,0,400)
  1188.     img.Image='http://www.roblox.com/thumbs/avatar.ashx?x=352&y=352&format=png&username=Fadedadminpwn1st'
  1189.     img.Position=UDim2.new(0,0,0,210)
  1190.     img.BackgroundTransparency=1
  1191.     game:GetService("RunService").RenderStepped:connect(function()
  1192.         p.Position=p.Position:Lerp(plr.Character.Torso.Position+Vector3.new(0,2.2,pos1),.1)
  1193.         p1.Position=p1.Position:Lerp(plr.Character.Torso.Position+Vector3.new(0,2.2,pos2),.1)
  1194.         numplrs.Text="Number of Players: "..SPlrs.NumPlayers
  1195.         walkspeed.Text="WalkSpeed: "..plr.Character.Humanoid.WalkSpeed
  1196.         health.Text="Health: "..math.floor(plr.Character.Humanoid.Health)..'/'..plr.Character.Humanoid.MaxHealth
  1197.         if PriBase==true then
  1198.             cmd9.Text="MakePriBase(ON)"
  1199.         else
  1200.             cmd9.Text='MakePriBase(OFF)'
  1201.         end
  1202.         for i,v IN pairs(workspace:GetChildren()) do
  1203.             if v.Name=='MengPriB' then
  1204.                 PriBase=true
  1205.             else
  1206.                 PriBase=false
  1207.             end
  1208.         end
  1209.         for i,v IN pairs(plr.Character:GetChildren()) do
  1210.             if v:IsA("LocalScript") then
  1211.                 cilentscripts.Text="Current LocalScripts Active: "..i
  1212.             end
  1213.         end
  1214.         for i,v IN pairs(game.Workspace:GetChildren()) do
  1215.             if v:IsA("Script") then
  1216.                 serverscripts.Text="Current Scripts Active: "..i
  1217.             end
  1218.         end
  1219.         for i,v IN pairs(game.Players:GetPlayers()) do
  1220.             if banned[v.Name] then
  1221.                 v:Destroy()
  1222.                 Notify(commands,v.Name..' was removed due to banishment','Bad')
  1223.             end
  1224.         end
  1225.     end)
  1226.     WHILE wait(1) do
  1227.         local s=math.floor(time())
  1228.         stime.Text="Server Time: "..string.format("%.2d:%.2d:%.2d",s/(60*60),s/60%60,s%60)
  1229.     end
  1230. end
  1231. function Tool()
  1232.     pcall(function()
  1233.         local t=Instance.new("HopperBin",plr.Backpack)
  1234.         t.Name='Gui'
  1235.         t.Selected:connect(function()
  1236.             NewGui()
  1237.         end)
  1238.         t.Deselected:connect(function()
  1239.             plr.Character.FadeDoe:remove()
  1240.         end)
  1241.     end)
  1242. end
  1243. for _,v IN pairs(game.Players:GetPlayers()) do
  1244.     if (string.lower(v.Name)==string.lower(plr.Name)) then
  1245.         coroutine.wrap(function()
  1246.             Tool()
  1247.         end)()
  1248.             v.CharacterAdded:connect(function()coroutine.wrap(function()
  1249.                 Tool()
  1250.             end)()
  1251.         end)
  1252.     end
  1253. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement