I'm making a custom loading screen, and I can't find any way to remove the default loading screen. All the tutorials on DevForum are outdated, and I need a new way to do it.
You can use ReplicatedFirst's :RemoveDefualtLoadingScreen()
method. ReplicatedFirst is a container that is used to store and manage Instances that are essential to the game's start, anything stored within here will be processed before anything else is loaded onto the Client.
Since we're managing the Client, we'll use a LocalScript
, ensure to place it as a Child of the ReplicatedFirst container found within the Explorer
window.
game:GetService("ReplicatedFirst"):RemoveDefaultLoadingScreen()