Answered by
8 years ago Edited 8 years ago
We can set a CustomLoadingScreen to be shown while the player is teleporting, then after the player has arrived at the destination we can remove that gui using the gui instance that LocalPlayerArrivedFromTeleport gives us (Or you could not destroy it resulting in it stay there :P I'm guessing like how you want)
**But scripts and tweening will not work with this!
**
Lets start by teleporting the player,
1 | game:GetService( 'TeleportService' ):Teleport( 1818 , game.Players.Player 1 ) |
Your normal teleport line right? But we can also give :Teleport more things to work with,
5 | ScreenGui customLoadingScreen = nil |
Basically this is like,
1 | :Teleport(placeID,THEPLAYER,ATABLE(USEFUL :D),ThisISTheGUI!!!!!) |
We can send it a useful table of information we want to send over and the custom loadinggui.
Lets make the script,
1 | local guitosend = script.Parent.Gui |
5 | game:GetService( 'TeleportService' ):Teleport(id, game.Players.Player 1 ,info,guitosend) |
There we go, we have our teleporting from place setup now lets go to where they'll be arriving.
We are going to setup a local script that will fire when someone is arriving from teleporting.
This will be a localscript and it will be located inside ReplicatedFirst
We will use LocalPlayerArrivedFromTeleport event from the teleport service to fire this code
1 | game:GetService( 'TeleportService' ).LocalPlayerArrivedFromTeleport:connect( function (customLoadingScreen, teleportData) |
As you can see it gave us two values, the gui that we sent over from the other game and that empty table we set called info
right now the code is not running anything so the gui will remain on your screen forever.
But you could wait for the character to spawn in and then remove it with cutomLoadingScreen:Destroy() but the choice is yours :)
Hope you found this information useful :D
Source 1
Source 2