Visual Robux Changer

Changes your robux fake and Transaction

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

Advertisement:

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Advertisement:

// ==UserScript==
// @name         Visual Robux Changer
// @namespace    http://tampermonkey.net/
// @version      1.2.4
// @description  Changes your robux fake and Transaction
// @author       Xavior S
// @match        https://www.roblox.com/*
// @license MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Change 22k+ to whatever u want
    function updateRobux() {
        const robuxSpan = document.getElementById('nav-robux-amount');
        if (robuxSpan) {
            robuxSpan.textContent = '22K+';  // Change to whatever amount you want
            console.log('vrcWorking');
        } else {

            setTimeout(updateRobux, 40);
        }
    }

    updateRobux();
(function() {
    'use strict';
// change 22,384 to whatever u want
    let fakeAmount = "22,384";

    function changeTransactionBalance() {

        document.querySelectorAll(".icon-robux-16x16").forEach(icon => {
            let parent = icon.parentElement;

            if(parent && parent.innerText.toLowerCase().includes("balance")){
                parent.innerHTML = 'My Balance: <span class="icon-robux-16x16"></span>' + fakeAmount;
            }
        });

        document.querySelectorAll("span").forEach(span => {
            if(span.innerText.includes("My Balance")){
                span.innerHTML = 'My Balance: <span class="icon-robux-16x16"></span>' + fakeAmount;
            }
        });

    }

    setInterval(changeTransactionBalance, 40);

})();
})();