Thanks For Using Our Script ![]()
Setup
- Setup Config File (config.js)
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!
![]()
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!
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);
}
}
});
what a GOAT U ARE
Oh my! Thank you so much!