HOW TO MAKE A TELEPORTER GUI 🛠️ Roblox Studio Tutorial

Поділитися
Вставка
  • Опубліковано 10 чер 2024
  • In todays video I show you how to make a teleporter in Roblox Studio. I Hope you enjoyed the video, Have a lovely rest of your day! If you are a bit confused what to do, Feel free to message me on Discord and Ill help you out!
    Script 1 (Open Gui) :
    script.Parent.MouseButton1Click:Connect(function()
    script.Parent.Parent.Parent.YourFrameName.Visible = not script.Parent.Parent.Parent.YourFrameName.Visible
    end)
    Script 2 (Teleport Script) :
    wait(1)
    player = game.Players.LocalPlayer
    button = script.Parent
    local debounce = false
    function teleport()
    if not debounce then
    debounce = true
    local LowerTorso = player.Character.LowerTorso
    LowerTorso.CFrame = game.Workspace.CHANGEYOURPARTNAME.CFrame -- Change "CHANGEYOURPARTNAME" to whatever you rename your part to.
    script.Parent.Parent.Visible = false
    end
    end
    button.MouseButton1Click:Connect(teleport)
    while true do wait()
    debounce = false
    wait(2) -- This limits to how often a player can click the teleport button (In seconds).
    end
    If you would like to support me even more, Super Thanks is also another way to show your appreciation!
    🌟 Floppys Discord Server: / discord
    🌟 Floppys Roblox Game : www.roblox.com/games/11301003...
    Roblox Studio Tutorial
    Roblox Studio
    Studio Tutorials
  • Ігри

КОМЕНТАРІ • 271

  • @Jacobttbrlx
    @Jacobttbrlx 5 місяців тому +2

    OML, THANK YOU SO MUCH. YOUR TUTORIALS HELP ME SO MUCH!

  • @TheTrueKittenSeeker
    @TheTrueKittenSeeker 2 місяці тому +3

    this was really easy, and i applied it to a game im a dev team of and its super simple! one of the other devs had a super complex script (for a dumb / beginner developer like me), and i bet the rest of the team will be happy! and dont worry, i subbed!

  • @Yashers90
    @Yashers90 10 місяців тому +38

    IF IT DOESNT WORK: IF it doesn't work, make sure you go through each of the steps carefully. If you correctly followed all the steps and still doesn;t work, it might be because your character is r6.
    IF YOUR CHARACTER IS r6 here is what you do:
    Go into the local script inside the text button inside the teleport gui frame. once you do that, change "LowerTorso" into "Torso" because LowerTorso is an r15 part and not an r6 part. Once you do that, test it and it should work fine
    if your confused what script, here it is:
    wait(1)
    player = game.Players.LocalPlayer
    button = script.Parent
    local debounce = false
    function teleport()
    if not debounce then
    debounce = true
    local Torso = player.Character.Torso
    Torso.CFrame = game.Workspace.CHANGEYOURPARTNAME.CFrame -- Change "CHANGEYOURPARTNAME" to whatever you rename your part to.
    script.Parent.Parent.Visible = false
    end
    end
    button.MouseButton1Click:Connect(teleport)
    while true do wait()
    debounce = false
    wait(2) -- This limits to how often a player can click the teleport button (In seconds).
    end
    as you can see i changed all the "LowerTorso"s to "Torso"

    • @STARSGOINGATRIANGULUM
      @STARSGOINGATRIANGULUM 10 місяців тому

      im r15 and it dosent work

    • @cooldino3243
      @cooldino3243 10 місяців тому +1

      THANKYOU SO MUCH

    • @Yashers90
      @Yashers90 9 місяців тому

      @@STARSGOINGATRIANGULUM this is for r6, not r15, if your r15 keep the tutorial the way it is , this comment is only for r6

    • @wahacolAKAskillednoob
      @wahacolAKAskillednoob 9 місяців тому

      yo thanks bro

    • @godforl1fe
      @godforl1fe 8 місяців тому

      still doesnt work with r6 for some reason

  • @mohammadsauleh1734
    @mohammadsauleh1734 14 днів тому +1

    Ayo, this actually works! You know what? Youve earned a well deserved sub, and also, pls keep making these. So simple

  • @tiawardell
    @tiawardell 4 місяці тому +3

    BROOOO NO WAY IT WORKED DO YOU KNOW HOW MUCH TUTORIALS I HAD TO WATCH AND THEY DIDNT WORK? U EARNED A NEW SUB and im going to support u / watch ur tuts because they are the only ones that work WWWW

  • @tobykerwin3053
    @tobykerwin3053 6 місяців тому +1

    thank you so much at first it didn't work but second go works nicely ty

  • @Scouty23379
    @Scouty23379 2 місяці тому +1

    I've been wanting a good GUI teleporter for my horror game thank you so much

  • @ZachRelax
    @ZachRelax 6 місяців тому +2

    Thanks you, it helped so much!

  • @KeloozZ
    @KeloozZ 25 днів тому

    Thank you so much floppy, your videos are the only ones that work and you help me a lot on my developing journey. Again thank you,

  • @liv_theolivetree
    @liv_theolivetree 29 днів тому

    This is so helpful thanks!

  • @Iamgoingoingtoraidurmomshome
    @Iamgoingoingtoraidurmomshome 11 місяців тому +1

    YOOO! FINALLY A REAL NOT SCAM CLICKBATE VIDEO! IT WORKED! TYSM FLOPPY! LOVED YOUR VIDEOS AND I OFC LIKED AND SUBSCRIBED! YOU DESERVED IT :D

  • @jenz_.
    @jenz_. 8 місяців тому +6

    I love your tutorials so much! They're so helpful and it helps me a lot to make my game better! I'll use your tutorials from now on. The other tutorials are hard to understand as they keep on messing up. Could you please make a tutorial on how to make someone sit (with a different emote) when a part is touched? I really need this tutorial for my hangout game. If you can't do it, that's fine! I'll still support you

    • @freduilici2634
      @freduilici2634 3 місяці тому

      to make a custom sit animation. u have the grab the animate script, and put it into a scs. this can be done by testing Ur game for a second and adding it into starter character scripts (scs) make sure u make the sit animation is the id of the sit id in the script, and go to explorers and properties, go to the value "sit". then change the animation id as well. tell me if it works

    • @freduilici2634
      @freduilici2634 3 місяці тому

      or u can make a animation play when the gui is touched.

  • @Breccann
    @Breccann 4 місяці тому +1

    Thank you SO much for adding the script in the description.

  • @Angrotim
    @Angrotim 3 місяці тому

    TYSM! THIS VIDEO IS SUPER USEFUL AND NOT CLICKBAIT!

  • @BloxZoom
    @BloxZoom 2 місяці тому

    OMG DUDE FINNALY A REAL GOOD VIDEO FOR SHOWING THESE TYPE OF TUTORIELS THANK YOU SO MUCH

  • @MustacheShrek
    @MustacheShrek 11 місяців тому +1

    Than You Very Much!!!! You helped me!

  • @GaLaXyClOuD5
    @GaLaXyClOuD5 3 місяці тому

    Your the only youtuber that😊 lets us copy paste scripts which is very kind. Keep up the good work! Your my favourite UA-camr

  • @Roblox_GAMER420
    @Roblox_GAMER420 2 місяці тому +1

    THANK YOU SOOO MUCCHHH ME AND MY FRIEND HAVE BEEN TRYING TO DO THIS FOR DAYSSSSSS

  • @itzevelyn0427
    @itzevelyn0427 11 місяців тому +2

    Tysm

  • @Bossfuzzy000
    @Bossfuzzy000 Місяць тому

    thank you it works perfectly

  • @VeyoppYT
    @VeyoppYT 22 дні тому

    Thank u for teaching dude

  • @nobodyplays_official
    @nobodyplays_official 7 місяців тому

    i like your tutorials. its making me a coin game!

  • @TssoireOfficial
    @TssoireOfficial 5 місяців тому

    YO TYSM
    UR THE BEST THAN ANY ROBLOX STUDIOR THAT TRIED TO MAKE GOOD TUTS (some do but they dont work for me)

  • @BluecaneRoblox
    @BluecaneRoblox 2 місяці тому +1

    TYSM THIS WORKED!!

  • @Sub_Vampire
    @Sub_Vampire 2 місяці тому

    You earned a new sub

  • @user-gi5xf5yp2u
    @user-gi5xf5yp2u 4 місяці тому

    glad your put your script at description!

  • @Niko_778
    @Niko_778 2 місяці тому

    Ty sm man You made it very simple

    • @Niko_778
      @Niko_778 Місяць тому

      I’m so confused so it was working to we’re the part was far away but now all the sudden it doesn’t work it only seems to work when the part it close to the player can you help me?

  • @darekjuchumphotography2024
    @darekjuchumphotography2024 8 місяців тому +2

    bro thank u so much u are a lifesaver, u get a sub

  • @taythegamedev
    @taythegamedev 7 місяців тому

    Nice simple working script! thanks

  • @TreboladorRojosOriginal
    @TreboladorRojosOriginal Рік тому +2

    How to make a lifting gui
    I want to make an update in my game of Geometry Dash in which the character, when crossing a hoop, can fly. I already have the buttons and the script that will make them appear when touching the ring. I just need to make the buttons work. One says Up and the other Down

  • @HyperDion_
    @HyperDion_ 11 місяців тому

    Thank You So Much ❤❤

  • @mohamedlakhdar3051
    @mohamedlakhdar3051 6 місяців тому

    tnx bro you are the best🥰

  • @Starcode_PokerproA4
    @Starcode_PokerproA4 6 місяців тому +2

    Hello! You're the only one who puts the code in the description! Your videos are also awesome! Nice job, +1 subscriber to your amazing channel!

  • @RaadinTM
    @RaadinTM 7 днів тому +2

    i have a problem when i click the teleport button it teleports but all the buttons dissapear

  • @FestimBloxTV
    @FestimBloxTV 5 місяців тому

    u are owesome ty!!!!

  • @BegulaDaFirst
    @BegulaDaFirst 4 місяці тому

    thanks again :D

  • @bernardstevens6195
    @bernardstevens6195 10 місяців тому

    Thanks man!

  • @NeKroSCRAFT
    @NeKroSCRAFT Місяць тому

    bro best tutorial deserves a like

  • @kaneljosef7779
    @kaneljosef7779 Рік тому

    W vid AND FIRST

  • @Chili_YT
    @Chili_YT 11 місяців тому +14

    Hey Floppy, what if I wanted the player to unlock the world first then being able to teleport. How would I do it?

    • @sarahasril114
      @sarahasril114 11 місяців тому +6

      dont put the screen gui in starter gui put it in a guiscreen and link the second wworld

    • @Chili_YT
      @Chili_YT 11 місяців тому +3

      @@sarahasril114 thanks!

    • @froste1243
      @froste1243 7 місяців тому +1

      @@sarahasril114 can u elaborate how to do that

    • @gkrtech6090
      @gkrtech6090 7 місяців тому +1

      @@sarahasril114 pls. can you show how to make this?

  • @tpdivine6309
    @tpdivine6309 4 місяці тому +1

    instead of putting a frame can u put a scrolling frame?

  • @savitavi.
    @savitavi. 9 місяців тому

    Yo It worked thanks

  • @CinnabonPlays
    @CinnabonPlays 2 місяці тому +1

    w but if I wanted to add a unlock system where you unlock the ability to teleport to the world only ounce u unlocked it how would I go about doing so ?

  • @scopeyyy
    @scopeyyy Рік тому

    W tutorial!

  • @Upg.Titan.Speakerman123
    @Upg.Titan.Speakerman123 6 місяців тому

    thank u very much i appriciate your help

    • @Upg.Titan.Speakerman123
      @Upg.Titan.Speakerman123 6 місяців тому

      (srry for my grammars if its bad im not english)

    • @henry4915
      @henry4915 4 місяці тому

      @@Upg.Titan.Speakerman123its not bad att all its quite good for a non english person

  • @DaizokiPlays
    @DaizokiPlays Рік тому

    I love your videos

    • @Itz_FloppyFish
      @Itz_FloppyFish  Рік тому +1

      Thanks so much!

    • @Xqyzcb
      @Xqyzcb 11 місяців тому

      @@Itz_FloppyFish bro how do i make the teleport a gmaepass

  • @LuckBoy2771
    @LuckBoy2771 11 місяців тому

    thank you so muchh

  • @XaronPlayzPiano
    @XaronPlayzPiano 22 дні тому +1

    Only 1 button works? I have R15 and I followed every step carefully but only one teleport button works. The rest dont do anything.

  • @Vincentyo6
    @Vincentyo6 9 місяців тому +2

    I sub because you helped me to get robux Tysm

  • @iyolsa
    @iyolsa 2 місяці тому +1

    the teleport gui automatically opens when u enter the game, is there any way to fix that?

  • @GamerCoconut-zx2rw
    @GamerCoconut-zx2rw Місяць тому

    Thx it worked

  • @AppleDon
    @AppleDon Місяць тому

    If anyone needs help figuring out why clicking the teleport buttons doesn't actually teleport you anywhere, it may be an R6 / R15 situation that I noticed. My game is in R6 and the code mentions ''LowerTorso'' which is not a part on the R6 body. Simply change the code text in the teleport buttons from LowerTorso to Torso and it should work.

  • @DEV01067
    @DEV01067 Рік тому +2

    Can you Create Video "How to Make a Custom tool bar"

  • @eddygarcia5953
    @eddygarcia5953 24 дні тому

    I did this in a seperate studio session and then when i transfered it into my game it doesn’t work anymore when i hit the button.

  • @Niko_778
    @Niko_778 Місяць тому

    Plzz help me it was working but all of the sudden it doesn’t. It only works when the part is very close to the play before the part could be very far idk what happened.

  • @Jackezko
    @Jackezko 10 місяців тому

    tysm!!!

  • @imnotezza
    @imnotezza Місяць тому +1

    someone help me bro the opening the thing works but then whenever i try to click the teleport button it does nothing /:

  • @KennCHH
    @KennCHH 2 місяці тому

    how to make that another teleport part button locked. and will unlock when player reach the 2nd teleport part?

  • @wildgamer275
    @wildgamer275 13 днів тому

    edit: i redid it and now it works

  • @cracker77
    @cracker77 2 місяці тому

    Guys if it says somthing about lower torso you have to just delete the word lower or put ur game in R15

  • @NoobwayStudios
    @NoobwayStudios 3 місяці тому

    thanks! I'm making a main menu of a platformer game where you click a level and you spawn there
    I'll code the rest where you unlock levels thanks!!!!!

  • @user-qr7jn6cf1b
    @user-qr7jn6cf1b 10 місяців тому

    floppy can you pls make a video about how you can teleport to players,bc i need to know how i can tp to a player bc i'm creating a owner only gui

  • @probablyveryreal
    @probablyveryreal 10 місяців тому

    best vid ever
    r

  • @myuseris_stinkkat
    @myuseris_stinkkat 3 місяці тому

    thankssssssss

  • @AltioRetro
    @AltioRetro 10 місяців тому

    TYSM

  • @RetroBloxLP
    @RetroBloxLP 2 місяці тому

    How do I animate the GUI so it doesnt just open and instead comes from the left/right side

  • @GhostFACED723
    @GhostFACED723 4 місяці тому

    thabk you

  • @mrtopjoey
    @mrtopjoey Рік тому

    Hey floppy its me the guy who made the cargo ship game, how do i make a billboard gui can you make a video on it?

  • @AschePlays
    @AschePlays 5 місяців тому

    is there a way to make this work for multi place games?

  • @TiozF1t
    @TiozF1t 9 днів тому

    I have an error - "dfgg" is not a valid member of workspace "workspace"

  • @KONDE321
    @KONDE321 7 місяців тому +2

    This works but when the tp place is too far away it doesnt does anyone have idea how to fix that?

    • @boompalooney
      @boompalooney Місяць тому

      Oh my god the same thing happened to me, everyone like this comment so floppy or a smart person can see this!

  • @meltymira
    @meltymira 10 місяців тому

    thx

  • @Wonsole
    @Wonsole 11 місяців тому

    yo can u make a script that theres a timer that waits anmd resets the server every couple of minutes

  • @reneedeans6504
    @reneedeans6504 2 місяці тому

    i spent soooo long doing this and it did not work even thing else works unseat when you try to tp it won't work

  • @kocicivalecnik
    @kocicivalecnik 11 місяців тому

    Please, can you make a currency shop tutorial

  • @d3aththret823
    @d3aththret823 2 місяці тому

    its not working for me, when i click on the place i wanna teleport to it wont teleport me

  • @tomyyoung2624
    @tomyyoung2624 2 місяці тому

    yes works

  • @Baconeditz1182
    @Baconeditz1182 4 місяці тому

    yo can you make it so when you get a badge you can teleport there?

  • @nuke0806
    @nuke0806 2 місяці тому

    nevermind nice tutorial

  • @PlayItLoFII
    @PlayItLoFII Рік тому

    Floppy can you make a video or teach me how to make a mining game

  • @catadalean.7901
    @catadalean.7901 8 місяців тому

    what if i want the gui to appear after my main menu

  • @Mr.TopHatz1920z
    @Mr.TopHatz1920z 4 місяці тому +1

    the open and close works, just the actual teleports dont can i get some help?

  • @Jellybean113
    @Jellybean113 5 місяців тому

    I thought this was gonna work I spent so much time on this!😢

  • @TheSNFfootballer
    @TheSNFfootballer 5 місяців тому

    When the part is far away it doesn’t work. Does anyone have any solutions?

  • @Lincolnnx
    @Lincolnnx 7 місяців тому

    Hi how do i change it like i can teleport faraway?

  • @MrNobody-vb8rf
    @MrNobody-vb8rf 17 днів тому

    dont you want to teleport in the sever not the client?

  • @notzetrover
    @notzetrover 4 місяці тому

    I cant teleport when I can't see the part. How to fix this?

  • @Retikulum01
    @Retikulum01 2 місяці тому

    It don´t work for me and idk why. It works in other maps but not in the map i need it

  • @Breccann
    @Breccann 4 місяці тому

    I followed all the steps very carefully, but yet when I click the button, nothing happens.

  • @Madri0120
    @Madri0120 Місяць тому

    Thanks! I agree that @Yashers90 comment worked on r6! Thank you, Floppy and Yashers! :D Also i liked

  • @Miguegrb
    @Miguegrb 4 місяці тому

    the first teleporter worked, but the second one didnt, idk if its because the part is around 1500 studs away or that i did something wrong, could you help me?

  • @zemzlol
    @zemzlol Рік тому

    First

  • @trevor1564
    @trevor1564 5 місяців тому

    How do you add a whutelist to this?

  • @haile.ey2czann
    @haile.ey2czann 3 місяці тому

    4:09 help the sound he made just made me laugh

  • @Elipilot77
    @Elipilot77 28 днів тому

    How do you do it with gamepass

  • @ryattlocker5424
    @ryattlocker5424 2 місяці тому

    it does not work when I click green area it does not teleport

  • @manlee9010
    @manlee9010 2 місяці тому

    can you pls pls pls do a how to make a tower defence.

  • @Unqe_2
    @Unqe_2 3 місяці тому

    How do I make it so it can go far away?

  • @Peanut_butter_is_cool
    @Peanut_butter_is_cool 3 місяці тому +1

    this may sound dumb but how to you duplicate the textbuttons, please help!

  • @pengunootingson
    @pengunootingson 10 місяців тому

    Whenever I click the button to actually teleport it never works, is it possible I did anything wrong..?