Fake Balance & Level (Persistent Visual)

Modifie visuellement la balance et le niveau (persistant après refresh)

Dieses Skript sollte nicht direkt installiert werden. Es handelt sich hier um eine Bibliothek für andere Skripte, welche über folgenden Befehl in den Metadaten eines Skriptes eingebunden wird // @require https://update.greasyfork.org/scripts/538715/1603402/Fake%20Balance%20%20Level%20%28Persistent%20Visual%29.js

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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

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

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

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

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Fake Balance & Level (Persistent Visual)
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Modifie visuellement la balance et le niveau (persistant après refresh)
// @match        *://*.rbxgold.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // 🔧 Configuration (tu peux changer ces valeurs)
    const fakeBalance = "9999";
    const fakeLevel = "99";

    // 🔒 Sauvegarde dans le localStorage
    localStorage.setItem('fake_balance', fakeBalance);
    localStorage.setItem('fake_level', fakeLevel);

    // 🔁 Fonction qui applique les changements visuels
    function applyFakeValues() {
        // Trouve l'élément de balance (ajuste si besoin)
        const balanceEl = document.querySelector('div:has(svg)'); // à ajuster selon ton HTML exact
        if (balanceEl && balanceEl.innerText.match(/^\d+$/)) {
            balanceEl.innerText = localStorage.getItem('fake_balance');
        }

        // Exemple pour le niveau (si affiché quelque part)
        const levelEl = document.querySelector('.user-level'); // remplace avec le vrai sélecteur
        if (levelEl) {
            levelEl.innerText = "Level " + localStorage.getItem('fake_level');
        }
    }

    // 📌 Appliquer les changements après chargement
    window.addEventListener('load', () => {
        setTimeout(applyFakeValues, 1000); // petit délai pour s'assurer que tout est chargé
    });
})();