Greasy Fork

Greasy Fork is available in English.

iHasLag

1.6M roblox prank to trick your friends!

目前为 2020-07-08 提交的版本,查看 最新版本

// ==UserScript==
// @name         iHasLag
// @namespace    http://tampermonkey.net/
// @version      1
// @description  1.6M roblox prank to trick your friends!
// @author       iHasLag
// @match        https://www.roblox.com/*
// @grant        none
// ==/UserScript==

function start() {
    var robux = document.getElementById("nav-robux-amount");
    robux.innerHTML = "1.6M";
      setTimeout(start, 0);
}
start();