☰

Robux prank đŸ˜‚đŸ€Ł

Funny prank: shows huge fake Robux on roblox.com đŸ€ŁđŸ˜…

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!)

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!)

FejlesztƑ
Amrinder Dhillon
Napi telepítések
0
Telepítések szåma
18
ÉrtĂ©kelĂ©sek
0 0 0
VerziĂł
1.3
Létrehozva
2025.08.21.
FrissĂ­tve
2025.08.21.
Size
773 bĂĄjt
Licensz
Ismeretlen
ÉrvĂ©nyes

// ==UserScript==
// @name Robux prank đŸ˜‚đŸ€Ł
// @namespace http://tampermonkey.net/
// @version 1.3
// @description Funny prank: shows huge fake Robux on roblox.com đŸ€ŁđŸ˜…
// @author Amrinder
// @match https://www.roblox.com/*
// @grant none
// ==/UserScript==

(function() {
'use strict';

function updateRobux() {
const robux = document.getElementById("nav-robux-amount");
const balance = document.getElementById("nav-robux-balance");

if (robux) robux.textContent = "1000000000000000T+";
if (balance) balance.textContent = "1000000000000000T Robux";
}

// Run once when page loads
updateRobux();

// Run every 2 seconds to refresh (not instantly looping!)
setInterval(updateRobux, 2000);
})();