您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Changes your robux fake
// ==UserScript== // @name Visual Robux Changer // @namespace http://tampermonkey.net/ // @version 1.0 // @description Changes your robux fake // @author absayno/Xavior // @match https://www.roblox.com/* // @license MIT // @grant none // ==/UserScript== (function() { 'use strict'; // Wait for the element to exist on the page function updateRobux() { const robuxSpan = document.getElementById('nav-robux-amount'); if (robuxSpan) { robuxSpan.textContent = '9999'; // Change to whatever value you want console.log('Robux amount changed to 9999'); } else { // If not found, retry after 500ms setTimeout(updateRobux, 500); } } updateRobux(); })();