// ==UserScript== // @name ungotham // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://www.roblox.com/* // @grant none // @run-at document-start // @downloadURL none // ==/UserScript== (function() { 'use strict'; new MutationObserver(function(mutations) { if (document.getElementsByClassName('gotham-font')[0]) { Array.from(document.getElementsByClassName("gotham-font")).forEach(function(a){a.className = a.className.replace("gotham-font", "");}); } }).observe(document, {childList: true, subtree: true}); })();