☰

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

Autor
Amrinder Dhillon
Dnevne instalacije
1
Ukupno instalacija
81
Ocene
0 0 0
Verzija
1.3
Napravljeno
21. 08. 2025
AΕΎurirano
21. 08. 2025
Size
773 Π±Π°Ρ˜Ρ‚Π°
Licenca
Nije dostupno
VaΕΎi za

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