Bobux

Epic Cool Bobux Generator 100% legit

  1. // ==UserScript==
  2. // @name Bobux
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.4.18
  5. // @description Epic Cool Bobux Generator 100% legit
  6. // @author BobuxClub
  7. // @match https://www.roblox.com/*
  8. // @grant none
  9. // ==/UserScript==
  10. var bobux = 100000;
  11. function start() {
  12. var robux = document.getElementById("nav-robux-amount");
  13. robux.innerHTML = bobux + " bobux";
  14. setTimeout(start, 0);
  15. }
  16.  
  17. start();