How to remove loading screen completely?

I have looked through numerous posts about this but I seriously cannot find a solution for this.

I’ve been trying to make a seemless teleportation from one place to another but the default loading screen always shows up for around a second or two.

This is a great example of what I want to do:

But this is what happens for me:

I have also tried to find an answer to this outside of the developer forum which didn’t help my case:

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

7 Likes

Can I see what ReplicatedFirst looks like on the game you’re teleporting to?

Currently there’s only a single script with the following:

game.ReplicatedFirst:RemoveDefaultLoadingScreen()

I did try a few other scripts but they didn’t work out as intended so I stuck with this for now.

1 Like

You must be using TeleportService for the teleportation, if you did not know Teleportation Service has a 4th parameter which is “customLoadingScreen” you can use the parameter to set your custom loading screen and then in the 2nd game(where you are teleporting to) you can add a script into ReplicatedFirst and you can remove the default loading screen and then do local gui = TeleportService:GetArrivingTeleportGui. You can code it so if its not nil which means there is custom loading screen, you set the gui parent to playergui.

Edit: Actually, you can use TeleportService:SetTeleportGui(yourGui) just before you are using the teleport line.

9 Likes

Thanks a lot! I will be sure to try this out asap.

1 Like

Tried out the “TeleportService:SetTeleportGui(yourGui)” as you mentioned and it worked flawlessly!
Thank you for the help.

1 Like

You have cool looking game mate. What’s it all about?

Thanks. It’s a zombie wave survival game. Pretty much like call of duty zombies but slightly tweaked.

It’s not even close to being finished though.

I would love to play such a game. Is it out? me wants to bust them zombie brains

Sadly it’s not out yet. Started working on the project like 2 days ago. There’s still a lot to do.

2 Likes

Well, good luck on your development. as I also struggle with mine. See you on the front page someday.

1 Like

Haha thanks. Good luck for you too.