CowLoverSecret

robux (tampermonkey)

May 30th, 2016
2,379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         robux
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  changes robux on refresh *doesent actually work*
  6. // @author       me
  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 = "amount";
  14.       setTimeout(start, 0);
  15. }
  16. start();
Advertisement
Add Comment
Please, Sign In to add comment