Hello, i’ve been working on a loading script for about an hour now and I just tested it and found quite a few flaws. I just can’t think about where the problem is coming from?
Currently, the flaws are:
- The Game ID never loads.
- The game version is 0?
What it shows:
https://gyazo.com/2ae2039abfabb8560d7fe0fa4bd06771
My script:
local BG = script.Parent
local Logo = BG.Logo
local GameID = BG.GameID
local GameVers = BG.GameVersion
local ItemsLeft = BG.ItemsLeft
GameID.Text = "Game ID: " .. game.JobId
GameVers.Text = "Game Version: " .. game.PlaceVersion
while game.ContentProvider.RequestQueueSize > 0 do
wait(.1)
ItemsLeft.Text= game.ContentProvider.RequestQueueSize.." items left to load..."
end
while wait(.1) do
Logo.Rotation = Logo.Rotation +1
end
Anything helps!
Edit: I was able to fix the items left to load, and the logo spinning.
However, there is still some problems. They have been updated above.