Today I will teach you how to make an one way teleporter in Roblox studio
script:
function onTouch(part)
h = part.Parent:FindFirstChild("Humanoid")
if (h~=nil) then
h.Parent:MoveTo(script.Parent.Parent.TeleportPart.Position)
end
end
script.Parent.Touched:connect(onTouch)