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

What is happening with... LoadingGUIs?

Asked by
davness 376 Moderation Voter
10 years ago

I just made a script to do a loading script. So I'm asking two questions:

01local assets = game.ContentProvider.RequestQueueSize -- it loads immediately the total assets the game has to load and stores it. Doesn't update.--
02 
03script.Parent:RemoveDefaultLoadingScreen()
04 
05local frame = game.ReplicatedFirst.LoadingGUI:Clone()
06frame.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
07 
08 
09local speed = 0.1 -- It stores the rotation speed --
10 
11while game.ContentProvider.RequestQueueSize > 0 and speed < 50 do
12    local assetys = game.ContentProvider.RequestQueueSize -- it loads immediately the assets the game still didn't load. Updates every loop. --
13    frame.Frame.MovingTyre.Rotation = (script.Parent.Rotation-speed)
14    speed = (speed*2) -- Doubles the rotation speed (until it reaches the speed of 50)
15    wait()
View all 38 lines...

Q1: Line 1 - Will the assets value update when the QueueSize updates?

Q2: I stored the GUI on ReplicatedFirst. What happened? The GUI appeared as a StarterGUI. SO I want to do an important question: Can we make the loading of Players first, then Workspace?? On other words, why is the LoadingScreen just loading when everything is loaded?? Can we solve it? :)

0
Why are you using two while loops inside a while loop inside a while loop??? You know you can only run one while loop at a time unless you use another thread? NotsoPenguin 705 — 10y
0
I edited the script. Is it better now? davness 376 — 10y
0
Still a lot of while loops. Try using coroutines. Shawnyg 4330 — 10y
0
I'll attempt to fix the script myself. I think i know what's wrong. Marios2 360 — 9y

1 answer

Log in to vote
0
Answered by
Marios2 360 Moderation Voter
9 years ago

Your GUI failed to load because.... it was never a GUI. Inception Sound Effect

Roblox for some reason doesn't allow a ScreenGui inside ReplicatedFirst, so you must make one yourself in the LocalScript.

Instead of ScreenGui, you used a Frame. So i made the script add a ScreenGui inside the PlayerGui and put your loading GUI pack inside said ScreenGui.

You cannot load Players before Workspace (only the developers can change that, and only they know if it indeed loads like that) and it's not that either.

As for Q1, the assets variable never updates because you only request it once.

So here's your fixed script - i didn't test it in Studio but it should function:

(I wrote this inside Studio but i didn't recreate your GUI to see if it works fully. You should be able to fix any GUI issues yourself.)

01script.Parent:RemoveDefaultLoadingScreen()  -- Just in case, this goes first
02local assets = game.ContentProvider.RequestQueueSize -- The existing assets at first. It never updates as you request it only once.
03 
04local base = Instance.new("ScreenGui") -- To get visuals, you need this first. Even the Wiki mentions it (http://wiki.roblox.com/index.php?title=Custom_loading_screen). This is your main mistake.
05base.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
06local frame = game.ReplicatedFirst.LoadingGUI:Clone()
07frame.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui").ScreenGui
08 
09--One more note: For commenting, you don't need a "--" at the end of the comment.
10--Comments automatically end at the end of the line they are placed on.
11--Below this point are your comments.
12 
13local speed = 0.1  -- It stores the rotation speed --
14 
15while game.ContentProvider.RequestQueueSize > 0 and speed < 50 do
View all 42 lines...

Tada! I hope this actually helps! Good luck on further development!

Ad

Answer this question