PersonsadminTeam

Roblox Reverse Paranoid DBVM CE Script Exploit

Dec 22nd, 2017
708
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.04 KB | None | 0 0
  1. dbvm_initialize(true)
  2.  
  3. openProcess("RobloxPlayerBeta.exe")
  4.  
  5. function EnableReverseParanoid()
  6.  
  7. openProcess("RobloxPlayerBeta.exe")
  8.  
  9. autoAssemble([[
  10.  
  11.  
  12. registerSymbol(ReverseParanoid)
  13.  
  14. label(ReverseParanoid)
  15.  
  16. aobscan(SetReverseParanoid, FF 24 85 ?? ?? ?? ?? 6A 08 8D 8D ?? ?? ?? ?? E8 ?? ?? ?? ?? 8D 85 ?? ??)
  17.  
  18. SetReverseParanoid:
  19. ReverseParanoid:
  20.  
  21.  
  22. ]])
  23.  
  24.  
  25. debug_removeBreakpoint('ReverseParanoid')
  26. debugger_onBreakpoint=function()
  27. if EIP==getAddress'ReverseParanoid'then
  28. hasChangedARegister=true;
  29. EAX=1;
  30. changedEAX=true;
  31. end;
  32. debug_continueFromBreakpoint(co_run);
  33. return 1;
  34. end;
  35.  
  36. debug_setBreakpoint(getAddress'ReverseParanoid');
  37.  
  38. end
  39.  
  40. createHotkey(EnableReverseParanoid, VK_F2)
  41.  
  42.  
  43.  
  44. function DisableReverseParanoid()
  45.  
  46. openProcess("RobloxPlayerBeta.exe")
  47.  
  48. debug_removeBreakpoint('ReverseParanoid')
  49.  
  50. end
  51.  
  52. createHotkey(DisableReverseParanoid, VK_F3)
  53.  
  54.  
  55.  
  56. showMessage("Reverse Paranoid made by Mortalkombatman2.")
  57.  
  58. showMessage("Press F2 to enable Reverse Paranoid.")
  59.  
  60. showMessage("Press F3 to disable Reverse Paranoid.")
Advertisement
Add Comment
Please, Sign In to add comment