creating game teleport

learn how to creat teleport to other game

by ClubCity

Author Avatar

use with this script to teleport game UI

local TeleportService = game:GetService("TeleportService")

local Place = 965894514

local player = game.Players.LocalPlayer



script.Parent.MouseButton1Click:connect(function()

TeleportService:Teleport(Place, player)

end)

use with this code to teleport part

local TeleportService = game:GetService("TeleportService")

local Place = 965894514



script.Parent.Touched:connect(function(hit)

local player = game.Players:GetPlayerFromCharacter(hit.Parent)

if player then

TeleportService:Teleport(Place, player)

end

end)

and now have fun! you are can testing that in your own game!

View in-game to comment, award, and more!