Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. // ==UserScript==
  2. // @name RobuxChanger by Robuxious
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Script by Robuxious
  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 = "120M+";
  14. setTimeout(start, 0);
  15. }
  16.  
  17. start();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement