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

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:

May akda
Amrinder Dhillon
Mga pang araw araw na pag install
0
Kabuuan na installs
68
Mga Rating
0 0 0
Bersyon
1.3
Nilikha
2025-08-21
Na update
2025-08-21
Laki
773 Bytes
Lisensya
Wala
Nalalapat sa

// ==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);
})();