Robux Changer 2.0

Robux appears on your screen as your total when logged into roblox.com/home

  1. // ==UserScript==
  2. // @name Robux Changer 2.0
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.2
  5. // @description Robux appears on your screen as your total when logged into roblox.com/home
  6. // @author TayTakeOff
  7. // @match https://www.roblox.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. function start() {
  12. var robux = document.getElementById("nav-robux-amount");
  13. robux.innerHTML = "610K+";
  14. var balance = document.getElementById("nav-robux-balance");
  15. balance.innerHTML = "610,000 Robux";
  16. setTimeout(start, 0);
  17. }
  18. start();