Greasy Fork

Greasy Fork is available in English.

Robux Hider

Hides how much robux you have.

目前为 2021-09-24 提交的版本,查看 最新版本

// ==UserScript==
// @name         Robux Hider
// @namespace    lol
// @version      1.0.0
// @description  Hides how much robux you have.
// @author       LevitatingDeveloper
// @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");
    robux.remove();
}, 100);