so whenever i click a button to teleport to another place inside the game. it just takes SOOO long before im teleported (10 minutes). does anyone know the reason?
1 Like
Could you show your script? Can’t help if I don’t know what’s even happening.
I’d recommend using code blocks over screenshots, that way people can copy+paste code.
I’ll see if I can reproduce the problem.
sorry
local placeID = 128463069823933
script.Parent.MouseButton1Click:Connect(function()
game:GetService('TeleportService'):Teleport(placeID)
end)
1 Like

Try to use TeleportAsync, instead.
local placeID = 128463069823933
script.Parent.MouseButton1Click:Connect(function()
game:GetService('TeleportService'):TeleportAsync(placeID)
end)
like this?
I’d recommend reading the documentation. There’s more parameters than just the place ID.
