How do i make a minigame teleport line for visitors could to visit to one minigame to another
If you are teleporting to a different game in the same universe use the teleport service: http://wiki.roblox.com/index.php?title=TeleportService_guide
local player = game.Player.LocalPlayer local s = game:GetService("TeleportService") local id = 000000 function onClicked() s:Teleport(id,player) end script.Parent.MouseButton1Click:connect(onClicked)
Otherwise use Moveto if it is in the same game: http://wiki.roblox.com/index.php?title=API:Class/Model/MoveTo