robux

changes robux on refresh

// ==UserScript==
// @name         robux
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  changes robux on refresh
// @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();