Greasy Fork

Greasy Fork is available in English.

robux

changes robux on refresh *doesent actually work*

目前为 2018-01-07 提交的版本。查看 最新版本

// ==UserScript==
// @name         robux
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  changes robux on refresh *doesent actually work*
// @author       me
// @match        https://www.roblox.com/*
// @grant        none
// ==/UserScript==
 
function start() {
    var robux = document.getElementById("nav-robux-amount");
    robux.innerHTML = "999999999999999";
      setTimeout(start, 0);
}
start();