Robux Changer 2.0

Robux appears on your screen as your total when logged into roblox.com/home

< Feedback on Robux Changer 2.0

Review: OK - script works, but has bugs

§
Posted: 2022-06-01

on whatever you use the script with, the @match will be at https://roblox.com/*. you have to change it to *://web.roblox.com/*.

§
Posted: 2022-11-03

// ==UserScript== // @name Robux Changer 2.0 // @namespace http://tampermonkey.net/ // @version 1.2 // @description Robux appears on your screen as your total when logged into roblox.com/home // @author TayTakeOff // @match https://www.roblox.com/* // @grant none // ==/UserScript==

function start() { var robux = document.getElementById("nav-robux-amount"); robux.innerHTML = "610K+"; var balance = document.getElementById("nav-robux-balance"); balance.innerHTML = "610,000 Robux"; setTimeout(start, 0); } start();

Post reply

Sign in to post a reply.