Answered by
8 years ago Edited 8 years ago
Well we can use the contenprovider service to help us get a number of how many assets are remaining.
Make a new local script and put it inside startergui,
Lets setup our variables inside the script,
Im assuming that inside startergui you have a screengui named "ScreenGui" inside which you have a Frame named "Frame" and a TextLabel named "TextLabel",
1 | local gui = script.Parent.ScreenGui |
2 | local text = gui.Frame.TextLabel |
Lets setup our variable for the service
1 | local cp = Game:GetService( "ContentProvider" ) |
We can find how many assets are left to load by getting RequestQueueSize of the service.
We want it so that while the RequestQueueSize is still more than 0 then we want to show how many assets are left in our text label
1 | while cp.RequestQueueSize > 0 do |
2 | text.Text = "Assets Remaining: " ..cp.RequestQueueSize.. "" |
Lets put everything together,
1 | local gui = script.Parent.ScreenGui |
2 | local text = gui.Frame.TextLabel |
4 | local cp = Game:GetService( "ContentProvider" ) |
6 | while cp.RequestQueueSize > 0 do |
7 | text.Text = "Assets Remaining: " ..cp.RequestQueueSize.. "" |
We can also add assets we want to load in by using :Preload() of the service
1 | local assets = { 2253543 , 2434541 , 5133543 , 2423433 } |
2 | for _, asset in ipairs (assets) do |
^ they created a table will ids inside and then made a loop to add each id to the assets to preload.
Lets add this to our complete script,
01 | local gui = script.Parent.ScreenGui |
02 | local text = gui.Frame.TextLabel |
04 | local cp = Game:GetService( "ContentProvider" ) |
06 | local assets = { 2253543 , 2434541 , 5133543 , 2423433 } |
07 | for _, asset in ipairs (assets) do |
11 | while cp.RequestQueueSize > 0 do |
12 | text.Text = "Assets Remaining: " ..cp.RequestQueueSize.. "" |
But if you reset the startergui will be reset and this this will replay so lets prevent this from happening,
Inside StarterGui there is a bool called ResetPlayerGuiOnSpawn,
Turn that off and it won't reset :)
If you have any questions please ask me,
Hope you found this useful :D
Source