Make it possible to hide your Robux wallet for screenshots/streaming purposes

As a Roblox developer, it is currently impossible to hide your robux.
This would also benefit youtubers too.
In case you’re wondering why you would ever need to hide your robux, let me explain.

I often like to post images of my development of games in my discord server. Or just take a quick photo for another purpose. The problem is, I don’t want people seeing how much robux I have. I like to keep it private.
I don’t have any editing software so I have to make an ugly drawing with a pen, and then it looks obvious that my robux is hidden, and people might ask questions, which I also hate.
I don’t have any limited or stuff for that same reason.

Another reason this would benefit developers, is group walls.
I like to keep my group walls open, for chatting, and bug reports. However, around 70 - 80% of these posts are ALL asking for robux. I made it clear on my group description that asking for robux isn’t allowed. I can’t delete all the posts or exile all the users; there are just so many of them!

If people can’t see my robux, I doubt that as many people will ask.

Also, I get a LOT of messages for people asking for robux too. I keep my messages open for people who want to ask questions and send me bug reports, not for some kid to demand robux.

17 Likes

Most YouTubers either edit on their own or have editors that can easily censor or just don’t show the Robux in their videos…

If people are asking questions, just tell them to leave you be. People don’t have to know your business even if they ask.

Many people do that no matter what you do so the best thing to do is to just simply ignore it until Roblox adds a way to block those messages.

Best thing to do is to send the bug reports to Discord or Twitter and close your DMs or make them followers only.

5 Likes

How about downloading a free image editor?

8 Likes

As a top developer, I can vouch this is something we could use. Having Robux visible all the time is like having your bank account open on your screen at all times. I’m sure you can see how this is a problem for top devs. It’s not very difficult for anyone to google the DevEx rate, then do 1 simple calculation to convert my Robux to USD.

This is a big privacy issue. Here are some use cases I have…

There are often people around my computer while I’m on Roblox. I have two computers in my office room, so sometimes someone is using the computer right behind me. Other times, someone may pop in the room for something. These people can easily see my Robux on my computer screen. I could just minimize my browser while someone is in (which I usually do), but I still need to get work done on the website, so I can’t have it closed all day!

Another scenario is screen sharing or recording. I’ve had to record my screen multiple times just for capturing Roblox bug reports. As someone not familiar with editing video, I’ve spent over an hour trying to edit my videos to hide the Robux amount. Sometimes I want to screen share development work on Discord, but I cannot show the Roblox site while sharing because I don’t want to show my R$ amount. Although, I’ve accidentally done this before!

20 Likes

I support this as well as I usually censor/crop the robux part in my screenshots. This could be as easy as expanding the current dropdown with a hide/show option. Here’s a quick concept I made in inspect element:

image
image

11 Likes

This would be great to have, it’s similar to having your bank’s account balance visible and is generally uncomfortable

1 Like

Roblox is definitely not adding support for this as its simply too specific. I got a solution however:

Install tampermonkey, it’s an extension that allows you to run scripts for websites (it’s safe, do your own research). Create a new script and paste this:

// ==UserScript==
// @name         Hide Robux Display
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Hides the Robux balance display on Roblox
// @match        https://www.roblox.com/*
// @icon         https://www.roblox.com/favicon.ico
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Wait for the page to load
    window.addEventListener('load', () => {
        // Select the Robux balance element and hide it
        const robuxElement = document.querySelector('.rbx-navbar-icon-group'); // Adjust the selector if needed
        if (robuxElement) {
            robuxElement.style.display = 'none'; // Hides the element
        }
    });
})();

This completely hides the top right part including your avatar, account age, notification and settings. If you want it to simply hide the robux you can ask chatgpt to do that, I generated the above with chatgpt as well.

You can deactivate the script once you’re done screenshoting/recording

It’s not just in the website, your robux can be also seen when being prompted to purchase a devproduct or a gamepass. I would argue that if the setting is added, every developer would want to keep it enabled.

I mean ublock does the job for me but it’d still be nice to have this built into the website and Lua App.

this is what i’ve done - created a cosmetic filter in ublock to hide my roblox and wallet totals.

for reference here’s my filter (it doesn’t hide the icons, just the amounts)

www.roblox.com##.text-header.rbx-text-navbar-right

To those still looking for a solution, I’ve started using a chrome extension called “Click to remove element” which is pretty easy to use. It’s able to hide your robux and practically any element from any website. It’s remembers too, so you only have to set it up once! Be very cautious when using any Chrome extensions specifically made for the Roblox site, many of them are malicious. The one I use is not made for Roblox, it can be used on any site.