Custom Loading Screen when Joined/Teleported

Hello! I was wondering how to overlay custom loading screen on default one. I tried old method, like disabling default loading screen, but it doesn’t work. I would like to see custom loading screen when I join the game or teleporting. Is it still possible?

1 Like

The way you write code is slightly different when connecting to the starting place of the game and when teleporting between places.
If you want to make Joining Custom Gui, put a LocalScript in ReplicatedFirst and type the codes below:

local ReplicatedFirst = game:GetService("ReplicatedFirst")
ReplicatedFirst:RemoveDefaultLoadingScreen()

And put a Custom Loading Gui in StarterGui; it will be displayed when player’s joinning.

If you want to make Custom Place Teleporting Gui, set your Custom Teleporting Gui to TeleportGui such as:

local TeleportService = game:GetService("TeleportService")
TeleportService:SetTeleportGui("Your Custom Teleporting Gui": ScreenGui)

Was this helpful?

2 Likes

It didn’t, work sorry (Actually I don’t think those methods works anymore). Maybe it’s possible to set default loading screen to game thumbnail? I just, have played few places and I’ve seen game thumbnail instead of default loading screen when teleported.

Nvm TeleportGui actually worked, tysm! But about RemoveDefaultLoadingScreen I’m still unsure

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.