Hello , i'm making a game , but the teleporter from the lobby to the actual game doesn't work.... I do have to mention the player is in a seat ( in a car) . That's the script :
local TeleportService = game:GetService("TeleportService") local Place = 5138860061
script.Parent.Touched:Connect(function(hit) local player = game.Players:GetPlayerFromCharacter(hit.Parent) if player then TeleportService:Teleport(Place, player) end end)
Teleport Service doesn't work in Studio. To see if it actually works, try it out in Roblox.