How to make a loading screen loading bar be synced with the percentage in the bottom right corner
Hello KingTino104,
You can get the percentage in your loadingscreen nui with:
window.addEventListener('message', function(e) {
if(e.data.eventName === 'loadProgress') {
// e.data.loadFraction <-- This is your value
};
});
The loadProgress
is triggered every time the percentage changes.
I hope this has helped!
Regards
2 Likes