INTRODUCTON
I have been trying to make seamless transition from loading screen to my game and for that I needed default roblox loading screen gui and a way to remove it when needed. I have found that you can remove default one using
game.ReplicatedFirst:RemoveDefaultLoadingScreen()
but that still shows default gui while you are joining the place and then abruptly removes it, which would be fine if I had exact copy which I could animate for smoother transition.
CORE PROBLEM
The problem is that even though Roblox has most CoreScripts listed on GitHub, that only has LoadingScript.lua (the script that is used to create loading GUI) from 8 years ago, and last loading screen change was ~4 years ago (that’s the oldest image of it I could find). If we take a look at newest leak of that same LoadingScript.lua, we can see that it tries to access
CorePackages.Workspace.Packages.ExperienceLoadingScript
and I have never been able to find it (I’ve been looking for over a week), because all CorePackages (interally named LuaPackages for some reason) leaks and available downloads have everything but Workspace folder.
TL:DR
I need the exact gui that is used for loading, AKA this one:
So, if you have ExperienceLoadingScript or a copy of that GUI, let me know
