Loading Screens

Hello everyone,

I was wondering if any of y’all DevForum Developers or Upcoming Developers have any links to Loading Screen tutorials. It would be greatly appreciated. Thanks in advance.

DevLtWolfee,
Novice UI Developer

http://wiki.roblox.com/index.php?title=Creating_a_Custom_Loading_Screen

I’m not sure whether you want a tutorial on loading screen design or API, but this one should help cover the scripting.

1 Like

Adding on to that tutorial, you might wanna familiarize yourself with the ContentProvider API in general, specifically, the PreloadAsync function, for adding assets such as textures and audio to the loading queue. By default, assets are only loaded when they are used. Sounds load on the first play, decals load when in the viewport for the first time, etc. This is great for quick streaming load times, but generally ugly and efficient to the end user.

1 Like

Check out my UI design guide for some tips on making you’re loading screen:

Additionally, on the scripting end you’d want to learn to use TweenService so you can make some hot loading animations (:

3 Likes