TopXLoadingScreen Free Release

Thanks For Using Our Script :heart:

Setup

  • Setup Config File (config.js)

Download

12 Likes

Amazing resource! It works flawless, looks clean and I love the music player/changelog things!
The loading bar with spinner and the logo that changes color is also a real nice addition!

Out of curiosity I wanna ask if you have the “Loading Game” spinner in the bottom right as well, and if not maybe if you are aware of a way to hide it from the loading screen?

But overall, really nice and clean loading screen! :fire: :fire: :fire:

3 Likes

I love this resource! I was wondering if it would be a possibility to have an option to have multiple video or YouTube links and each time a player loads in it would choose randomly. I have been personally looking for a loading screen with this feature and I would love to see it included with this loading screen! Thanks!

2 Likes

Go to config.js > line 46 replace

VideoID: "5P7i9jV9jew", // if Type = YT insert Video id

to

VideoIDs: ["ID HERE", "ID HERE", "ID HERE"], // all your ids here

then goto js/script.js > line 109 replace

player = new YT.Player('bg-container', {
    videoId: Config.BG.VideoID,
    playerVars: {
        autoplay: 1,
        controls: 0,
        showinfo: 0,
        modestbranding: 0,
        loop: 1,
        fs: 0,
        cc_load_policy: 0,
        iv_load_policy: 3,
        autohide: 0,
        rel: 0,
        mute: 1
    },
    events: {
        onReady: function (e) {
            e.target.setVolume(5);
        }
    }
});

to

const randomIndex = Math.floor(Math.random() * Config.BG.VideoIDs.length)

player = new YT.Player('bg-container', {
    videoId: Config.BG.VideoIDs[randomIndex],
    playerVars: {
        autoplay: 1,
        controls: 0,
        showinfo: 0,
        modestbranding: 0,
        loop: 1,
        fs: 0,
        cc_load_policy: 0,
        iv_load_policy: 3,
        autohide: 0,
        rel: 0,
        mute: 1
    },
    events: {
        onReady: function (e) {
            e.target.setVolume(5);
        }
    }
});
4 Likes

what a GOAT U ARE

2 Likes

Oh my! Thank you so much!

2 Likes