Robux Hider

Hides how much robux you have.

  1. // ==UserScript==
  2. // @name Robux Hider
  3. // @icon https://cdn.discordapp.com/attachments/898314728219242597/900157044009611284/image.png
  4. // @namespace lol
  5. // @version 1.1.1
  6. // @description Hides how much robux you have.
  7. // @author LevitatingDeveloper
  8. // @license Apache-2.0
  9. // @match https://www.roblox.com/*
  10. // @match https://web.roblox.com/*
  11. // @match https://roblox.com/*
  12. // @grant none
  13. // ==/UserScript==
  14.  
  15. setInterval(function(){
  16. var robux = document.getElementById("nav-robux-amount");
  17. if (typeof(robux) != 'undefined' && robux != null)
  18. {
  19. robux.remove();
  20. }
  21. }, 100);