Its very cool, i was just wondering how you made the part count loader (the one that said 174/645 )
over all i think that it suits the futuristic theme
local contenProvider = game:GetService("ContentProvider")
local toLoad = game.Workspace:GetDescendants()
local total = #toLoad
for i,v in pairs(toLoad) do
Screengui.Frame.Textlabel.text = "loading_please_wait-- " .. i .. "/" .. total .. " "
contenProvider:PreloadAsync({v})
end
you can also show name of the part by using v.name and make a loading bar. But i wanted to keep it simple