Warning: fopen(/www/sites/greasyfork.icu/index/store/forever/16182dc5cb8904e0dcd7b8c1881ef77e.html): failed to open stream: No space left on device in /www/sites/greasyfork.icu/index/scriptsControl.php on line 132
Robux Hider - 源代码

Greasy Fork

Greasy Fork is available in English.

Robux Hider

Hides how much robux you have.

当前为 2021-10-27 提交的版本,查看 最新版本

// ==UserScript==
// @name         Robux Hider
// @icon         https://cdn.discordapp.com/attachments/898314728219242597/900157044009611284/image.png
// @namespace    lol
// @version      1.1.1
// @description  Hides how much robux you have.
// @author       LevitatingDeveloper
// @license      Apache-2.0
// @match        https://www.roblox.com/*
// @match        https://web.roblox.com/*
// @match        https://roblox.com/*
// @grant        none
// ==/UserScript==

setInterval(function(){
    var robux = document.getElementById("nav-robux-amount");
if (typeof(robux) != 'undefined' && robux != null)
{
    robux.remove();
}
}, 100);