How To Make A Teleporter In Roblox

0:00 Intro
0:24 Inserting twopParts
0:50 Insert a script into Pad 1
2:01 Create a variable
4:30 Prevent teleporting to another pad

This video tutorial will show you how to make teleport in Roblox.

MORE TECH INSIDER VIDEOS:
How To Track Steps With Apple Watch
https://www.youtube.com/watch?v=4NfYxwG6Hqc />How To Get Better At Apex Legends
https://www.youtube.com/watch?v=ZiDC5rESav4 />How To Close And Delete Robinhood
https://www.youtube.com/watch?v=sQuezvyxnNk />
——————————————————

#Roblox #HowTo #TechInsider

Tech Insider tells you all you need to know about tech: gadgets, how-to’s, gaming, science, digital culture, and more.

Visit us at: https://www.businessinsider.com
TI on Facebook: https://www.facebook.com/techinsider
TI on Instagram: https://www.instagram.com/tech_insider/
TI on Twitter: https://twitter.com/techinsider
INSIDER on Snapchat: https://insder.co/2KJLtVo

How To Make A Teleporter In Roblox

Alex
Alex

Hi, I'm Alex! I've been obsessed with Roblox ever since I first started playing at the age of 15. Now at 25, Roblox is still my number one hobby and passion.

When I'm not working my day job, you can find me gaming for hours on end, playing and creating all kinds of imaginative worlds. I love participating in building challenges and mini-games with friends. My favorite thing is designing intricate obstacle courses and racing tracks.

I run a Roblox gaming website where I post articles, guides, and tips about my gameplay and creations. I provide tricks and advice for fellow adult gamers and try to keep things entertaining with my fun writing style.

Articles: 2951

13 Comments

  1. — make two parts name one of them Pad1 and name the other Pad2

    local Pad = game.Workspace.Pad2

    script.Parent.Touched:Connect(function(hit)

    local Player = game.Players:GetPlayerFromCharacter(hit.Parent)

    if Player then

    local CurrentlyTeleporting = Player.Character:FindFirstChild("CurrentlyTeleporting")

    if not CurrentlyTeleporting then return end

    — make a boolvalue and name it CurrentlyTeleporting

    if not CurrentlyTeleporting.Value then

    CurrentlyTeleporting.Value = true

    Player.Character.HumanoidRootPart.CFrame = Pad.CFrame + Vector3.new(0,5,0)

    wait(3)

    CurrentlyTeleporting.Value = false

    end

    end

    end)

    — yes I liked my own comment because everyone does that

  2. It worked! But if your making a game where you morph into something, wouldn't reccomend. Teloports dont work with morphs on

  3. The text on my script never looks like this or like bold or anything and it doesn’t work it never changed colour either idk how to fix it

  4. this was really helpful but how do i make it so that the player will respawn on the start spawn location and not on the teleport pad

Leave a Reply

Your email address will not be published. Required fields are marked *