1. Zrób 2 party
2. Zmień nazwy Partów na FirstTeleport i SecondTeleport
3. Zgrupuj party używając CTRL+G (lub klikając prawym i "Grupuj")
3½. Zmień nazwę modelu jak chcesz
4. Stwórz skrypt w Modelu
5. Usuń print("Hello world!") i zamień je tym
local tp1 = script.Parent.FirstTeleport
local tp2 = script.Parent.SecondTeleport
tp1.Touched:Connect(function(p)
if p.Parent:FindFirstChild("HumanoidRootPart") then
p.Parent:FindFirstChild("HumanoidRootPart").CFrame = tp2.CFrame
end
end)
tp2.Touched:Connect(function(p)
if p.Parent:FindFirstChild("HumanoidRootPart") then
p.Parent:FindFirstChild("HumanoidRootPart").CFrame = tp1.CFrame
end
end)
i gotowe!

