Trying to make 2 way teleporter this is the code for the first teleporter and i went to test it but it would not teleport me to the second one and I cant figure out why
enabled = true
Tele2 = game.Workspace.Tele2
script.Parent.Touched:connect(function(hit)
local humanoid = hit.Parent:FindFirstChild("Humanoid")
if humanoid ~= nil and enabled == true then
enabled = false
hit.Parent.CFrame = Tele2.CFrame - Vector3(0,-5,0)
wait(2)
enabled = true
end
end) |