How would I make a Text button Place teleporter?

How would I go about making a Text button GUI that, when pressed, took you to another place. By place I mean a baseplate, not an in-game location. I have to specify that because that’s mostly what I see when I search for a solution to this question.

I actually did look everywhere for this but couldn’t find anything that fit my specific question.

I know of course it requires the place ID, but I just don’t posses the problem solving ability in the specific field to understand how to make this happen. If you guys happen to know how, I would appreciate it a lot!

1 Like
script.Parent.MouseButton1Down:Connect(function()
      game:GetService("TeleportService"):Teleport(000000) -- your game id here
end)
4 Likes

That’s uh, a lot less than I expected :joy: but anyway, thank you very much!

2 Likes