Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
2

Intro loading assets GUI?

Asked by
snewo12 72
6 years ago

Hello,

So I have a script that is working well (asked for help):

01local workspaceassets = game.Workspace:GetChildren()
02local replcatedastorageassets = game.ReplicatedStorage:GetChildren()
03local startguiassets = game.StarterGui:GetChildren()
04 
05 
06local numberofassets = #workspaceassets + #replcatedastorageassets + #startguiassets
07 
08while wait() do
09    for x = numberofassets,0,-1 do
10        wait(0.5)
11        script.Parent.Text = "Loading assets...: "..x.."/"..numberofassets
12    end
13    script.Parent.Text = "Game loaded!"
14    wait(2)
15    script.Parent.Text = "Enjoy the game!"
16    wait(2)
17    script.Parent.Visible = false
18    script.Parent.Parent.Parent:Destroy()
19end

The only thing is: It actually loads stuff that has been loaded too, so it's doing everything one by one. Is there also one that doesn't load stuff that has already been loaded? And if there is a solution, how do I script that (I'm just a beginner :/)?

Thanks in advance :)

1 answer

Log in to vote
2
Answered by
ee0w 458 Moderation Voter
6 years ago
Edited 6 years ago

Don't do that. Use the ContentProvider service using the GetService method. It's very simple to use!

1-- Local or Server script
2 
3local cp = game:GetService("ContentProvider")
4while cp.RequestQueueSize > 0 do
5    print(cp.RequestQueueSize) -- Prints the amount of assets in queue (to load).
6    wait()
7end

To make a loading GUI, just get the RequestQueueSize at the beginning of the script, then compare it to the new queue, which should give you a rough estimate.

Ex:

1local cp = game:GetService("ContentProvider")
2local totalassets = cp.RequestQueueSize -- Saves the amount of assets at the current moment (to compare to later)
3 
4while cp.RequestQueueSize > 0 do
5    print(cp.RequestQueueSize .. " left of " .. totalassets .. " assets remaining...")
6    wait()
7end
8 
9print("All assets loaded!")

Hope I helped!

0
Wow just 9 lines of codes!! Thanks alot, it has worked :D snewo12 72 — 6y
Ad

Answer this question