i have some questions. how do you do a custom teleporting screen when teleporting to a game? i need this for a minigame that i’m releasing / planning soon. do you guys know the scripts for this?
You can create a custom gui and then use the code below to set it as your teleport gui:
local Player=game:GetService("Players").LocalPlayer
local teleportService=game:GetService("TeleportService")
local myTeleportGui=Player:WaitForChild("PlayerGui"):WaitForChild("MyCustomTeleportGui")
teleportService:SetTeleportGui(myTeleportGui)
This would be a localscript placed in the StarterPlayerScripts folder