Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Скрипт телепортации модели персонажа к детали Part2
- -- при касании детали Part1
- local StartPoint = script.Parent.Part1
- local EndPoint = script.Parent.Part2
- function Teleport_onTouch(touched)
- print(touched, touched.Parent)
- if touched.Parent:FindFirstChild("Humanoid") then
- local human = touched.Parent
- human:MoveTo(EndPoint.Position + Vector3.new(0, 10, 0))
- end
- end
- StartPoint.Touched:Connect(Teleport_onTouch)
Advertisement
Add Comment
Please, Sign In to add comment