How do i make the game teleport you to an another place after a short while in the game? im talking like from “Place1” (game1) to “Place2”
2 Likes
Use Teleport Service After The Duration.
local Player = game:GetService(“Players”).LocalPlayer
local TeleportService = game:GetService(“TeleportService”)
local Duration = 60
local GameId = 10000
task.wait(Duration)
TeleportService:Teleport(GameId,Player)
1 Like
You’re using a local script, which means you don’t even need the player argument since the default is the local player.
task.wait(seconds)
game:GetService("TeleportService"):Teleport(game id here)
1 Like
yo thanks dude, youre a lifesaver