Any way to preload a model or yield until a model has been loaded in?

Hello, so I was thinking of implementing a loading screen for my game for when players select the level they want to play. One thing I’m noticing, is that there is a slight delay before all the models in the map are rendered, so it looks a bit choppy. I could just add a loading screen as a cosmetic and yield for a few seconds to give the map time to load, but I wondered if there was an official way I could actually yield until the model has loaded in.

Thanks :slight_smile:

You can try using game:IsLoaded(), it returns whether the game’s models (at least I think it’s the models) are loaded.

1 Like