Roblox Gotham Font

Get the original font back

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 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         Roblox Gotham Font
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Get the original font back
// @author       choccy
// @match        *://*.roblox.com/*
// @grant        none
// @license MIT
// ==/UserScript==


(function() {
    'use strict';

    var customFont = 'HCo Gotham SSm';

    var css = '* { font-family: "' + customFont + '" !important; } ' +
              '.builder-font, .game-card-container, .game-card-name { font-weight: 500 !important; } ' +
              '#mostPlayedContainer .game-card-container { height: 130px !important; }'; // Added #mostPlayedContainer prefix

    var head = document.head || document.getElementsByTagName('head')[0];
    var style = document.createElement('style');

    head.appendChild(style);
    style.type = 'text/css';

    if (style.styleSheet) {
        style.styleSheet.cssText = css;
    } else {
        style.appendChild(document.createTextNode(css));
    }

})();