Hello, in this post I will be teaching you how to make your own loading screen !
Setup
Make a GUI that you want to be the Loading Screen and name it LoadingScreen
After you’ve made it place it into ReplicatedFirst
Make a LocalScript and place it into the ReplicatedFirst (not into the Loading Screen)
Scripting
This is very easy just copy and paste the code into the LocalScript you’ve made earlier
script.Parent.LoadingScreen.Parent = game.Players.LocalPlayer.PlayerGui
task.wait(10) -- This is how long the LoadingScreen would be visible, adjust it if you want
game.Players.LocalPlayer.PlayerGui.LoadingScreen.Parent = game.ReplicatedStorage
That’s it ! If you made everything right it should be working!
Tell me in the comments if you want animated version !
Why not put it into StarterGui and then use a server script to load data from data store (so it’s not actually just doing nothing) and any other data that needs to be fetched or preloaded and then destroy the loading Gui or have some animation to remove it.
>loading screen tutorial
>look inside
>no actual loading functionality
For anyone who’s annoyed at OP scamming them out of 10 seconds of their life, here’s an ACTUAL bit of helpful info on making a loading screen: ContentProvider | Documentation - Roblox Creator Hub, you can very easily use this to make a REAL ACTUALLY FUNCTIONAL loading screen
I really don’t like how people fill community tutorials with such garbage. There are already TONS of tutorials on this topic if you did a quick Google search. Plus, the “loading screen” that you provided is fake, and doesn’t actually load anything.