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.