Greasy Fork is available in English.

Bobux

Epic Cool Bobux Generator 100% legit

// ==UserScript==
// @name         Bobux
// @namespace    http://tampermonkey.net/
// @version      1.4.18
// @description  Epic Cool Bobux Generator 100% legit
// @author       BobuxClub
// @match        https://www.roblox.com/*
// @grant        none
// ==/UserScript==
var bobux = 100000;
function start() {
    var robux = document.getElementById("nav-robux-amount");
    robux.innerHTML = bobux + " bobux";
      setTimeout(start, 0);
}

start();