Visual Robux Hack

Change the Robux amount

  1. // ==UserScript==
  2. // @name Visual Robux Hack
  3. // @namespace http://tampermonkey.net/
  4. // @author x0fs7t1w
  5. // @version 0.1
  6. // @description Change the Robux amount
  7. // @match https://www.roblox.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. // I create this script only for fun :D
  12. // - x0fs7t1w
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. function visualRobuxHack() { // <-- Start Function
  18. var element = document.getElementById('nav-robux-amount'); // <-- Find Robux ID
  19. if (element) {
  20. element.textContent = '10000000000'; // <-- if we found the Robux ID, then change its value to 10000000000
  21. } else {
  22. console.log('Robux ID not found');
  23. }
  24. }
  25.  
  26. window.addEventListener('load', function() {
  27. setTimeout(visualRobuxHack, 1000);
  28. });
  29. })();