Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to Teleport People to Another Game? [closed]

Asked by 4 years ago

I am trying to make a teleporter for a part for my horror game and I am having some trouble finding out, how can I do this?

Closed as Not Constructive by Void_Frost and youtubemasterWOW

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
0
Answered by 4 years ago

use TeleportService, here's an example

local TeleportService = game:GetService("TeleportService")



local Place = 5023251854


script.Parent.Touched:connect(function(hit)



TeleportService:Teleport(Place, player)

    end
end)

This is an example of a touched brick you would have to change it for what you need it for but that is the groundwork

Ad