Visual Robux Hack

Change the Robux amount

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         Visual Robux Hack
// @namespace    http://tampermonkey.net/
// @author       Flamex116's Hacks
// @version      0.1
// @description  Change the Robux amount
// @match        https://www.roblox.com/*
// @grant        none
// ==/UserScript==

// I create this script only for fun =.=
// - Flamex116

(function() {
    'use strict';

    function visualRobuxHack() {                                                  // <-- Start Function
        var element = document.getElementById('nav-robux-amount');                // <-- Find Robux ID
        if (element) {
            element.textContent = '10000000000';                                      // <-- if we found the Robux ID, then change its value to 10000000000
        } else {
            console.log('Robux ID not found');
        }
    }

    window.addEventListener('load', function() {
        setTimeout(visualRobuxHack, 1000);
    });
})();