Teleporting to a new place help

I want to add a new place into my game. I am using the following click script to teleport to my new place.

local TeleportService = game:GetService("TeleportService")
local player = game.Players.LocalPlayer

script.Parent.MouseButton1Click:Connect(function()
	TeleportService:Teleport(7698148372, player)
end)

This works fine, however, how do I define where the teleportation destination inside the new place will be. For example if I want the destination to be a certain part. How do script the location part in the new place.

Does that make sense?

Thanks.

TeleportService::TeleportToSpawnByName looks like what you need.

Or you could pass data as the third parameter to TeleportService::Teleport and define a name / id / position that they should be spawned at. A script could receive this information and then use it.