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.
Try this: https://developer.roblox.com/en-us/api-reference/function/ReplicatedFirst/RemoveDefaultLoadingScreen
To remove on-join, use:
1 | --[[LocalScript in ReplicatedFirst]] |
2 | game:GetService( "ReplicatedFirst" ):RemoveDefaultLoadingScreen(); |
When teleporting between places use the parameter customLoadingScreen in
1 | TeleportService:Teleport |
2 | -- OR |
3 | TeleportService:TeleportPartyAsync |
4 | -- OR |
5 | TeleportService:TeleportToPrivateServer |
6 | -- and etc.. |
Thanks for reading, hope this helps!