I have a click detector and a Vector3Value in the parent. This script should teleport you to the coordinates of the vector3value:
01 | DestinationPos = script.Parent.TeleportTo.Value |
02 |
03 | print ( "Teleport Script loaded" ) |
04 |
05 | local Door = script.Parent |
06 |
07 | function onClicked(hit) |
08 | print ( "Teleport Hit" ) |
09 | local human = hit.Parent:findFirstChild( "Humanoid" ) |
10 | if (human ~ = nil ) then |
11 | -- a human has touched this teleport! |
12 | print ( "Human touched teleport" ) |
13 | -- Change the values in this next line to where you want it 2 teleport you to. |
14 | hit.Parent.Torso.CFrame = CFrame.new(DestinationPos) |
15 | end |
16 | end |
17 |
18 | script.Parent.ClickDetector.MouseClick:connect(onClicked) |
Just put a brick on where you want to teleport make the Transparency to 1 and cancollide and just copy the position.
1 | hit.Parent.Torso.CFrame = CFrame.new() -- Position of the brick,mk |
Use 2 bricks and put this inside one of them
1 | script.Parent.Touched:connect( function (t) |
2 | if t.Parent:FindFirstChild( "Humanoid" ) and t.Parent:FindFirstChild( "HumanoidRootPart" ) then |
3 | t.Parent:MoveTo(game.Workspace [ "NameOfTeleportHere" ] .Position) |
4 | end |
5 | end ) |
1 | local val = Vector 3. new(coords) |
2 | local door = door -- for example script.Parent.Door |
3 |
4 |
5 | door.Touched:Connect( function (hit) |
6 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
7 | hit.Parent.HumanoidRootPart.CFrame = CFrame.new(val) |
8 | end |
9 | end ) |