roblox games filter unhider

brings back the games filter

Instalar este script¿?
Script recomendado por el autor

Puede que también te guste roblox font update reverter.

Instalar este script
// ==UserScript==
// @name         roblox games filter unhider
// @namespace    yrewuryukhfadasdasfadasdasf
// @version      0.1
// @description  brings back the games filter
// @author       me
// @match        https://www.roblox.com/*
// @grant        none
// @run-at       document-start
// ==/UserScript==

new MutationObserver(function(mutations) {
    if (document.getElementsByClassName('filter-hidden')[0]) {
        Array.from(document.getElementsByClassName('filter-hidden')).forEach(function(filt){
            filt.style.visibility = "unset";
            filt.style.height = "unset";
        });
    }
}).observe(document, {childList:true, subtree:true});