Fake Balance & Level (Persistent Visual)

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

This script should not be not be installed directly. It is a library for other scripts to include with the meta directive // @require https://update.greatest.deepsurf.us/scripts/538715/1603402/Fake%20Balance%20%20Level%20%28Persistent%20Visual%29.js

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey 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 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.

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

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

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é
    });
})();