Advertisement
soujaboy1977

Robot Destructor Injector

Mar 23rd, 2025
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. let vm = document.getElementById("app")._reactRootContainer._internalRoot.current.child.pendingProps.store.getState().scratchGui.vm;
  2.  
  3. vm.runtime.canAddCloudVariable = function() {
  4. return 'true';
  5. }
  6.  
  7.  
  8.  
  9. vm.runtime.ioDevices.cloud.provider.clear = function() {
  10. console.log('Error injecting.');
  11. }
  12.  
  13.  
  14.  
  15. vm.runtime.ioDevices.cloud.setProvider = function(arg) {
  16. if (!arg == null) {
  17. vm.runtime.ioDevices.cloud.provider = arg;
  18. }
  19. }
  20.  
  21.  
  22. vm.runtime.ioDevices.cloud.provider.requestCloseConnection = function() {
  23. console.log('Project hacked successfully!');
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement