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

What is wrong with this teleport script?

Asked by
JJ_B 250 Moderation Voter
11 years ago

I have a click detector and a Vector3Value in the parent. This script should teleport you to the coordinates of the vector3value:

01DestinationPos = script.Parent.TeleportTo.Value
02 
03print("Teleport Script loaded")
04 
05local Door = script.Parent
06 
07function 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
16end
17 
18script.Parent.ClickDetector.MouseClick:connect(onClicked)
1
Hmm, I think it may be line 14, can you CFrame a torso? Shaydesilva 85 — 11y

3 answers

Log in to vote
0
Answered by
HexC3D 830 Moderation Voter
11 years ago

Just put a brick on where you want to teleport make the Transparency to 1 and cancollide and just copy the position.

1hit.Parent.Torso.CFrame = CFrame.new() -- Position of the brick,mk
Ad
Log in to vote
0
Answered by 11 years ago

Use 2 bricks and put this inside one of them

1script.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
5end)
0
Edit to how it meets your needs. fireboltofdeath 635 — 11y
Log in to vote
0
Answered by
RFL890 4
4 years ago
1local val = Vector3.new(coords)
2local door = door -- for example script.Parent.Door
3 
4 
5door.Touched:Connect(function(hit)
6       if hit.Parent:FindFirstChild("Humanoid") then
7               hit.Parent.HumanoidRootPart.CFrame = CFrame.new(val)
8        end
9 end)

Answer this question