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

How to remove Roblox Loading Screen?

Asked by 4 years ago

I am trying to remove the default roblox loading screen, the one that says "Joining server", I think i saw something like this on a game called "Island Royale" where it teleports you to an other place but he made his own custom gui for it.

2 answers

Log in to vote
0
Answered by 4 years ago

Try this: https://developer.roblox.com/en-us/api-reference/function/ReplicatedFirst/RemoveDefaultLoadingScreen

0
please make this a comment next time raid6n 2196 — 4y
0
Thank you! CSL_LiffisBiffis 12 — 4y
Ad
Log in to vote
0
Answered by 4 years ago

To remove on-join, use:

1--[[LocalScript in ReplicatedFirst]]
2game:GetService("ReplicatedFirst"):RemoveDefaultLoadingScreen();

NOTE: This can only remove the parts **AFTER **the client is partially connecting to the server

When teleporting between places use the parameter customLoadingScreen in

1TeleportService:Teleport
2-- OR
3TeleportService:TeleportPartyAsync
4-- OR
5TeleportService:TeleportToPrivateServer
6-- and etc..

Thanks for reading, hope this helps!

Answer this question