Bypass Missing Information

Hide the missing information box.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         Bypass Missing Information
// @namespace    http://tampermonkey.net/
// @version      1.2
// @description  Hide the missing information box. 
// @author       Emerald
// @match        https://www.roblox.com/*
// @license      All Rights Reserved
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function hideElementById(id) {
        const element = document.getElementById(id);
        if (element) {
            element.style.setProperty('display', 'none', 'important');
        }
    }

    const idsToHide = [
        'simplemodal-overlay',
        'simplemodal-container',
        'modalCloseImg',
        'simplemodal-close',
        'simplemodal-wrap',
        'simplemodal-data'
    ];

    idsToHide.forEach(hideElementById);
})();