Advertisement
Guest User

New ROBLOX God Mode Exploit!

a guest
Mar 24th, 2015
6,369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. --[[
  2. 1.get a cheat engine bypass
  3. 2.run DBVM
  4. 3.press cntl + alt + L
  5. 4.paste this script
  6. 5.join a ROBLOX game
  7. 6.hook to ROBLOX
  8. 7.execute script
  9. 8.reset
  10. 9.this affects all players in your game. --]]
  11.  
  12.  
  13.  
  14. debugProcess(3);
  15. autoAssemble([[
  16.  
  17. GlobalAlloc(modecheck,7048)
  18.  
  19. registerSymbol(health)
  20. registerSymbol(cave)
  21.  
  22. label(original)
  23. label(health)
  24. label(start)
  25. label(cave)
  26.  
  27. "RobloxPlayerBeta.exe"+2FB278:
  28. health:
  29.  
  30. modecheck:
  31.  
  32. original:
  33. cave:
  34. db FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  35.  
  36. jmp start
  37.  
  38. "msvcrt.dll"+26C09:
  39. jmp modecheck
  40.  
  41. start:
  42.  
  43. ]]);
  44.  
  45. debugger_onBreakpoint=function()
  46. if EIP==getAddress'health'then
  47. hasChangedARegister=true;
  48. EAX=getAddress'cave';
  49. changedEAX=true;
  50. end;
  51. debug_continueFromBreakpoint(co_run);
  52. return 1;
  53. end;
  54.  
  55. debug_setBreakpoint(getAddress'health');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement