roblox games filter unhider

brings back the games filter

스크립트 설치?
개발자의 추천 스크립트

roblox font update reverter는 어떤가요?

스크립트 설치
질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==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});