Guest User

Untitled

a guest
Dec 12th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.04 KB | None | 0 0
  1. //
  2. //==
  3. //\\ PERP 3 EXPLOITS, BECAUSE I CAN //
  4. //// Coded by TrexKickBut \\
  5. //// Rewritten by sephiroth \\
  6. //\\ Redistribute it //
  7. //// I dont give a shit \\
  8. //\\ STOP TRYING TO SELL EXPLOITS //
  9. //==
  10. //
  11.  
  12. //
  13. //Concommand to open the menu is haxmenu, Enjoy.
  14. //Concommand for free petrol is Petrol. (couldnt be bothered to add a button for it.)
  15. //Credits to ory25 for helping me with vgui's
  16. //
  17.  
  18. print("TrexKickBut's exploits loaded, Rewritten by SephirothSG for use on VersonoGaming Perp 3.0 and possibly many other servers. [I also added a menu :P]")
  19.  
  20. function Petrol()
  21. RunConsoleCommand("perp_t_f 5000 0")
  22. print("Enjoy your petrol")
  23. end
  24. concommand.Add("Petrol", Petrol)
  25.  
  26. function Shit()
  27. local fknhax = vgui.Create("DFrame")
  28. fknhax:SetSize(415,450)
  29. fknhax:Center()
  30. fknhax:SetTitle( "HAX MENU" )
  31. fknhax:MakePopup()
  32. local but1 = vgui.Create("DButton", fknhax)
  33. but1:SetText("Heal me")
  34. but1:SetPos(5,25)
  35. but1:SetSize (200,100)
  36. but1.DoClick = function( button )
  37. RunConsoleCommand("p_vg_resetH", LocalPlayer():UniqueID())
  38. print("Congratz, you healed yourself!")
  39. GAMEMODE:AddNotify("Congratz, you healed yourself!", NOTIFY_HINT, 5);
  40. end
  41. local but2 = vgui.Create("DButton", fknhax)
  42. but2:SetText("Fix my legs")
  43. but2:SetPos(210,25)
  44. but2:SetSize(200,100)
  45. but2.DoClick = function( button )
  46. RunConsoleCommand("p_vg_resetL")
  47. print("Congratz, you have fixed your legs!")
  48. GAMEMODE:AddNotify("Congratz, you have fixed your legs!", NOTIFY_HINT, 5);
  49. end
  50. local but3 = vgui.Create("DButton", fknhax)
  51. but3:SetText("Fix everything")
  52. but3:SetPos(5,130)
  53. but3:SetSize(200,100)
  54. but3.DoClick = function( button )
  55. RunConsoleCommand("p_vg_resetH;p_vg_resetL")
  56. print("Congratz, you have fixed your legs and healed yourself!")
  57. GAMEMODE:AddNotify("Congratz, you have fixed your legs and healed yourself!", NOTIFY_HINT, 5);
  58. end
  59. local but4 = vgui.Create("DButton", fknhax)
  60. but4:SetText("Revive me")
  61. but4:SetPos(210,130)
  62. but4:SetSize(200,100)
  63. but4.DoClick = function( button )
  64. RunConsoleCommand("perp_m_h", LocalPlayer():UniqueID())
  65. print("Congratz, you have revived yourself and got $50!")
  66. GAMEMODE:AddNotify("Congratz, you have revived yourself and got $50!", NOTIFY_HINT, 5);
  67. end
  68. local but5 = vgui.Create("DButton", fknhax)
  69. but5:SetText("Revive my bros")
  70. but5:SetPos(5,235)
  71. but5:SetSize(200,100)
  72. but5.DoClick = function( button )
  73. for k,v in pairs( player.GetAll() ) do
  74. if (v:GetFriendStatus() == "friend") then
  75. if (v:Health() > 0) then
  76. RunConsoleCommand("perp_m_h", v:UniqueID())
  77. end
  78. end
  79. end
  80. print("Congratz, you have revived your friends!")
  81. GAMEMODE:AddNotify("Congratz, you have revived your friends!", NOTIFY_HINT, 5);
  82. end
  83.  
  84. local but6 = vgui.Create("DButton", fknhax)
  85. but6:SetText("Change my name")
  86. but6:SetPos(210,235)
  87. but6:SetSize(200,100)
  88. but6.DoClick = function( button )
  89. RunConsoleCommand("perp_encrypt3D_cn -1 -1")
  90. print("Congratz, you got a free namew change!")
  91. GAMEMODE:AddNotify("Congratz, you got a free namew change!", NOTIFY_HINT, 5);
  92. end
  93. local but7 = vgui.Create("DButton", fknhax)
  94. but7:SetText("Finish me")
  95. but7:SetPos(5,340)
  96. but7:SetSize(200,100)
  97. but7.DoClick = function( button )
  98. RunConsoleCommand("perp_m_k", LocalPlayer():UniqueID())
  99. print("Congratz, you have finished yourself with a bullet to the head!")
  100. GAMEMODE:AddNotify("Congratz, you have finished yourself with a bullet to the head!", NOTIFY_HINT, 5);
  101. end
  102. local but8 = vgui.Create("DButton", fknhax)
  103. but8:SetText("Revive everyone")
  104. but8:SetPos(210,340)
  105. but8:SetSize(200,100)
  106. but8.DoClick = function( button )
  107. for k,v in pairs( player.GetAll() ) do
  108. if (v:Health() > 0) then
  109. RunConsoleCommand("perp_m_h", v:UniqueID())
  110. end
  111. end
  112. print("Congratz, you have revived everyone!")
  113. GAMEMODE:AddNotify("Congratz, you have revived everyone!", NOTIFY_HINT, 5);
  114. end
  115. end
  116.  
  117. concommand.Add( "haxmenu" , Shit)
Add Comment
Please, Sign In to add comment