Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Is there a way to remove the default loading screen?

Asked by 4 years ago

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.

1 answer

Log in to vote
1
Answered by
Ziffixture 6913 Moderation Voter Community Moderator
4 years ago
Edited 4 years ago

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()
0
lemme try TheRealPotatoChips 793 — 4y
Ad

Answer this question