NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Robux Changer
// @description Custom Script
// @version 0.0.1
// @author Sebs
// @license MIT
// @include *
// @grant none
// ==/UserScript==
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
async function robuxchanger() {
while (true) {
document.getElementById('nav-robux-amount').innerHTML = "278K+";
try {
document.getElementById('nav-robux-balance').innerHTML = "278,264 Robux";
}
catch {}
await sleep(1);
}}
robuxchanger();