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

How do i make a teleport transition?

Asked by 3 years ago

So like how do i do it? I want to do something like meepcity, when you go to your house it has a teleport transition.

1 answer

Log in to vote
0
Answered by
Revgery 15
3 years ago

So like basicly, I can help you with tele script.

local teleport = script.Parent

teleport.Touched:Connect(function(hit)
       if hit.Parent:FindFirstChild("Humanoid") then
             hit.Parent.Head.CFrame = CFrame.new(Position's Cords)
       end
end

Then, as I understood you need to do that type of cutscene, I'm not good at it, but I found a tutorial

~~ https://www.youtube.com/watch?v=ZPry5khqe8o

Or you can make it without cutscence, but it would be like just teleporting on ur house

Hope I helped, that's my first answer

Ad

Answer this question