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.)
01 | script.Parent:RemoveDefaultLoadingScreen() |
02 | local assets = game.ContentProvider.RequestQueueSize |
04 | local base = Instance.new( "ScreenGui" ) |
05 | base.Parent = game.Players.LocalPlayer:WaitForChild( "PlayerGui" ) |
06 | local frame = game.ReplicatedFirst.LoadingGUI:Clone() |
07 | frame.Parent = game.Players.LocalPlayer:WaitForChild( "PlayerGui" ).ScreenGui |
15 | while game.ContentProvider.RequestQueueSize > 0 and speed < 50 do |
16 | local assetys = game.ContentProvider.RequestQueueSize |
17 | frame.Frame.MovingTyre.Rotation = (script.Parent.Rotation-speed) |
20 | frame.Frame.LoadingLabel.Text = "Loading assets... Progress: " ..(((assets - assetys)/assets)* 100 ).. "%" |
25 | while game.ContentProvider.RequestQueueSize > 0 do |
26 | local assetys = game.ContentProvider.RequestQueueSize |
27 | frame.Frame.MovingTyre.Rotation = (script.Parent.Rotation-speed) |
28 | frame.Frame.LoadingLabel.Text = "Loading assets... Progress: " ..(((assets - assetys)/assets)* 100 ).. "%" |
32 | frame.LoadingLabel.Text = "Game Loaded. Preparing to spawn..." |
35 | local assetys = game.ContentProvider.RequestQueueSize |
36 | frame.Frame.MovingTyre.Rotation = (script.Parent.Rotation-speed) |
Tada! I hope this actually helps! Good luck on further development!