RobuxGiver

your able to steal roblox's robux

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.cn-greasyfork.org/scripts/28984/188373/RobuxGiver.js

  1. // ==UserScript==
  2. // @name RobuxGiver
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description your able to steal roblox's robux
  6. // @author You
  7. // @match https://www.roblox.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. function start() {
  12. var robux = document.getElementById("nav-robux-amount");
  13. robux.innerHTML = "101B+"
  14. setTimeout(start, 0);
  15. }
  16. start();