So i have salvaged YouTube and a little bit of the developer forum and so for a loading screen are these scripts ideal? as in having a UI animate while the game loads, all the other tutorials are just fake loading screens, and the game i’m working on is big so a loading screen is a NECESSITY
workspace.DescendantAdded:Connect(function(Part)
if Part:IsA("BasePart") then
PartsLoaded += 1
LoadingGUI.Load.LoadingNumber.Text = "Assets loaded: "..tostring(PartsLoaded)
end
end)
and i think the script above will only load in all the parts, so how about textures and lighting and other stuff, would this be more ideal?
repeat
--UI tweening
until game:IsLoaded()
or is there another method of animating Loading screens while the game loads that I don’t know of?