How to Teleport to your Main Game using the Main Menu in Roblox Studio | Arro

Поделиться
HTML-код
  • Опубликовано: 15 янв 2025

Комментарии • 112

  • @lompfe2349
    @lompfe2349 2 года назад +6

    this whole tutorial series helped me so much and is amazing. Thanks so much. The only thing i couldnt get to work was the linear camera path but the first and third video worked perfectly and that's all i needed. The camera apth would have just been extra detail i didn't need. Thanks so much.

  • @kevindonthaveid4389
    @kevindonthaveid4389 Год назад +4

    if you wanna make a screen that look around the map, you just need find a spinning model, and transparent it on properties, after that, try to connect the PlayCam and the DMCam into the spinning. dont forget to edit your background

  • @marcuys2
    @marcuys2 2 года назад +10

    is there a way to make it teleport you to a random place? like out of a set number of maps, it would chose a random one?

  • @alphaboyplayz7342
    @alphaboyplayz7342 2 года назад +3

    if you guys are having problem , go to Security , and allow 3rd party teleports

    • @banani809
      @banani809 2 года назад

      how do i acces security?

    • @VirtueG55
      @VirtueG55 2 года назад

      @@banani809 go to settings

    • @ZacharyZR
      @ZacharyZR 2 года назад

      @@banani809 game settings

  • @user-ro5lz1dl4e
    @user-ro5lz1dl4e 3 года назад +14

    how do i make it so it doesnt teleport me to a diff game, and teleports me in that game at a certain spawn?

    • @JamMC
      @JamMC 2 года назад +3

      Find another video that shows you how to do that maybe It will work.

    • @rangofied
      @rangofied Год назад +4

      Make a script inside play button make it. script.Paremt.MouseButton1Click:Connect(function()
      game.StarterGui.ScreenGui:Destroy()
      end)

    • @abreaddeveloper
      @abreaddeveloper 7 месяцев назад

      @@rangofied what about the camera

  • @skywartium
    @skywartium 2 года назад +21

    local ts = game:GetService("TeleportService")
    local pb = script.Parent.PlayButton
    local placeID = 0 --Replace 0 with your place id.
    pb.MouseButton1Click:Connect(function(player)
    wait(.01)
    ts:Teleport(placeID, player)
    end)

    • @TheHeavenlyRestrictedCowboy
      @TheHeavenlyRestrictedCowboy 2 года назад

      why does mine say attempt to teleport to place restricted?

    • @skywartium
      @skywartium 2 года назад +1

      Probably set the other game private or you dont have third party teleports on

    • @TheHeavenlyRestrictedCowboy
      @TheHeavenlyRestrictedCowboy 2 года назад

      @@skywartium I'll try it out thanks

    • @LunarRiser
      @LunarRiser Год назад

      how do i fix error code: on teleport due to unexpected problem (error 769)?

    • @skywartium
      @skywartium Год назад

      @@LunarRiser idk, this is pretty much old code and probably doesnt work anymore

  • @realzq5001
    @realzq5001 3 года назад +3

    Awesome tutorial, thanks for the help.

  • @TheHeavenlyRestrictedCowboy
    @TheHeavenlyRestrictedCowboy 2 года назад +2

    why does it say attempt to teleport to server restricted?

  • @UserName_False
    @UserName_False 2 года назад +2

    So the main menu has to teleport to a different game? So i cant teleport to a place in the same Game?

  • @fadikalbouney3242
    @fadikalbouney3242 10 месяцев назад +1

    it shows me this "raiseTeleportInitFailedEvent: Teleport failed because Cannot Teleport in the Roblox Studio. (Failure)"

  • @jasoneddy7658
    @jasoneddy7658 2 года назад +2

    um well i know you said cant teleport means its working but it wont teleport me?

  • @MikaTamino
    @MikaTamino 2 года назад

    only tds fans remeber this music

  • @spectaclestudios9685
    @spectaclestudios9685 3 года назад +2

    What about a follow up for morph and loadout select for the main menu

  • @seyfd
    @seyfd 2 года назад +3

    hey i was wondering if you could make a video about a one time teleport (like a tutorial) so when you click play, you get teleported to the tutorial but as soon as you finish it, you get teleported to the main game whenever you click that same play button

    • @suavo9641
      @suavo9641 2 года назад

      Data stores

    • @LilDiabetus
      @LilDiabetus 2 года назад

      Use datastores to create data that is saved across multiple places, then simply just use an if statement e.g. if game.Players.LocalPlayer.Data.DoneTutorial.Value == false then
      ts:Teleport(placeID, player)
      else
      ts:Teleport(otherplaceID, player)
      end

    • @darblox1366
      @darblox1366 Год назад

      Dannng how you learn scripting?

  • @realLooty
    @realLooty 2 года назад

    Thank´s you Helped me out :D!!

  • @darblox1366
    @darblox1366 Год назад

    Pls make pne on how to mske character customization 🙏

  • @ruiayonzu
    @ruiayonzu 2 года назад +8

    local ts = game:GetService("TeleportService")
    local pb = script.parent.playerButton
    -- You place ID games how.
    local placeID = 0
    pb.MouseButton1Click:Connect(function(player)
    wait(.01)
    ts:Teleport(placeID, player)
    end)

    • @gameswithkobralo2520
      @gameswithkobralo2520 2 года назад +1

      This Script is different than from the one in the Video

    • @ruiayonzu
      @ruiayonzu 2 года назад

      @@gameswithkobralo2520 im sorry you happends roblox studios you script can test?

    • @dailysprinkles2174
      @dailysprinkles2174 2 года назад +1

      PlayButton *

    • @ruiayonzu
      @ruiayonzu 2 года назад

      @@dailysprinkles2174 yes can script how "script.parent.playerButton" - "PlayButton" You name can text.

  • @PurpPumpkin
    @PurpPumpkin Год назад

    Can you make it so a black screen fades in when you click play?

  • @gustavbtw6046
    @gustavbtw6046 2 года назад +2

    Is it possible to add more than 2 cams and how. Great tutorial helped so much :D

    • @muralbowl
      @muralbowl Год назад

      check out the first part it tells you how srry im late

  • @gldn3123
    @gldn3123 3 года назад +1

    SO UNDERRATED

  • @Gray_Does_Genocide
    @Gray_Does_Genocide 2 года назад +1

    so uh, it keeps saying stuff about "attempting to teleport to a place that's restricted" in my new game, so i went back to my old game, which previously worked, and tried teleporting there, and it also said the same thing... i don't really know how to script much, but i'm assuming that roblox messed around with teleports... also can anyone help?

    • @Gray_Does_Genocide
      @Gray_Does_Genocide 2 года назад

      @@zal333 so should i try to contact roblox about it to fix it? also where would i be able to reach them?

  • @Arthur01907I-Repost
    @Arthur01907I-Repost 2 года назад +1

    Can You Make a Game Script Of This So i can just Download Everything And Change The Things

  • @basementmovieroom
    @basementmovieroom Год назад

    What if I don't want them to teleport to a different game?

  • @이지혜-p3t
    @이지혜-p3t 2 года назад +1

    music's name?

  • @xbakonaras
    @xbakonaras 2 года назад +1

    It didn't worked :( It still says errorcode 769

  • @shadowgarcia7713
    @shadowgarcia7713 2 года назад +1

    Hey i got a question,in my main menu i have a button(customize character) but if i click play do i keep the character i made?

    • @ArroBLX
      @ArroBLX  2 года назад

      It should keep the character, yes

  • @catalinstancea735
    @catalinstancea735 2 года назад +2

    really cool tutorial,but i have a problem, when i click "play" it teleports me to the same game,does anyone know what the problem is?

    • @phorimhere
      @phorimhere 2 года назад

      Not sure if you still got the problem, but it might be because you copied and pasted the menu place ID insteand of the game place ID. (menu place - your menu, game place - the game you want to teleport to)

  • @cami-ik4gu
    @cami-ik4gu 2 года назад +2

    I don't really get this 😕

  • @davdunies
    @davdunies 2 года назад +5

    Script:
    local ts = game:GetService("TeleportService")
    local pb = script.Parent.PlayButton
    local placeID = --put here your place ID
    pb.MouseButton1Click:Connect(function(player)
    wait(0.01)
    ts:Teleport(placeID, player)
    end)

  • @kasuko4276
    @kasuko4276 Год назад

    how do i make so on recently played it shows the main menu played and not the game i teleported to?

  • @-Junx-
    @-Junx- 2 года назад

    what if i want it to open another menu, one where u can create a game and join other games? and then teleport u when the host starts it?

  • @VirtueG55
    @VirtueG55 2 года назад +1

    it doesnt even teleport me

  • @nuggetz8412
    @nuggetz8412 3 года назад +1

    thx man it works!!

    • @Wxxed_
      @Wxxed_ 3 года назад

      how??

  • @Interface_1
    @Interface_1 2 года назад +1

    Is not work but I already did all the same thing

  • @mercenarydavi8362
    @mercenarydavi8362 2 года назад +1

    Yall i kinda wanna see the results of your games, send em by replying

  • @Rohan-vj9pb
    @Rohan-vj9pb 3 года назад +2

    Hello Arro, can u help me to the script for example
    when I press play button it will continue to the game not teleport

    • @emelsaloski3116
      @emelsaloski3116 Год назад

      hi im 1 year late but it should teleport if ur on roblox not on studio

  • @whoisthis.other44632
    @whoisthis.other44632 2 года назад

    Help me pls. I went to try my game in the roblox site, but it teleports me to the main game. i set the starting game to the menu though

  • @lilyRondel
    @lilyRondel Год назад

    YOU ARE A LEGEND

  • @UniPlayerOnYT
    @UniPlayerOnYT 2 года назад

    I know guys he's laptop is slow but you can speed it up for way closer look

  • @gamecreationtutorials3846
    @gamecreationtutorials3846 Год назад +1

    Invalid player to teleport
    what?

  • @JuniorrIT
    @JuniorrIT 2 года назад

    btw how to make like view point in menu

  • @Noahscootz
    @Noahscootz 2 года назад

    Is there a way to make it so you dont go to a different game and spawn somewhere else in the main menu game?

    • @Buyokk
      @Buyokk 2 года назад

      I got the same issue

  • @cold5563
    @cold5563 2 года назад +1

    is there a way to do it with only 1 button?

  • @MeAndMyMonkeyyyy
    @MeAndMyMonkeyyyy 6 месяцев назад

    My roblox studio is in French so idk how to do the first step, can someone tell me?

  • @xerialGT
    @xerialGT 2 года назад

    How to I make it so when I click play it teleports you to a spawn point in the same game

    • @ArroBLX
      @ArroBLX  2 года назад

      I made a video on that , but they're separated. One shows you how to press play and stay in the same game, and the other shows how to teleport a player to a certain spawn point. Just peice both of them together and voila

    • @xerialGT
      @xerialGT 2 года назад

      @@ArroBLX do you mind giving me the link?

  • @nasapctaikapurua6169
    @nasapctaikapurua6169 2 года назад

    does this mean i gotta publish the main menu game or the actual game?

  • @QicxGames
    @QicxGames 2 года назад +1

    this teleport script not works

  • @firesj5806
    @firesj5806 Год назад

    i puplished them both but i dont teleport

  • @Wxxed_
    @Wxxed_ 3 года назад

    he give me "wait " make this not work
    that normal?:
    ScreenGui.LocalScript:8: Expected ')' (to close '(' at line 7), got 'wait'

  • @coolgamerrgirll
    @coolgamerrgirll Год назад

    Please do the other death mode one with the same script

    • @boberto42
      @boberto42 Год назад

      the thing is its teleport not for dm unless im not sure.

  • @sqeed7
    @sqeed7 2 года назад

    mind his name

  • @turonmytchilyty919
    @turonmytchilyty919 2 года назад +12

    Full script :
    local ts = game:GetService("TeleportService")
    local pb = script.Parent.PlayButton
    local placeID = 11393703720
    pb.MouseButton1Click:Connect(function(player)
    wait(.01)
    ts:Teleport(placeID, player)
    end)

  • @denverplayz2426
    @denverplayz2426 2 года назад +1

    give kit please

    • @JuniorrIT
      @JuniorrIT 2 года назад

      there is no kit

    • @JuniorrIT
      @JuniorrIT 2 года назад

      add screen gui then insert textbutton init then insert localscript in textbutton
      script:
      local ts = game:GetService("TeleportService")
      local pb = script.parent.playerButton
      -- You place ID games how.
      local placeID = 0 -- your game id
      pb.MouseButton1Click:Connect(function(player)
      wait(.01)
      ts:Teleport(placeID, player)
      end)

  • @BrodyPlayzz
    @BrodyPlayzz Год назад

    Don’t work :(

  • @David_unreal
    @David_unreal 2 года назад

    I can’t get it to work

  • @ST4RAnimatez
    @ST4RAnimatez Год назад

    Hey anyone it dose not work for me what do you think i did wrong??

    • @ST4RAnimatez
      @ST4RAnimatez Год назад

      btw when i click play i doesn't teleport me

  • @breathforvoid
    @breathforvoid 2 года назад

    Thank

  • @TheMochiPirates
    @TheMochiPirates 3 года назад

    Why doesnt it work?

    • @reaganlutz197
      @reaganlutz197 3 года назад

      it doesent work in studio because you would have to save game. try it in roblox

    • @JuniorrIT
      @JuniorrIT 2 года назад +1

      you need to publish the game then test it dont test on roblox studio

  • @jggaming7123
    @jggaming7123 3 года назад +2

    Does Not Work I Pressed Play And It Didn't Teleport Me To The Game.

  • @nika1506n0
    @nika1506n0 2 года назад

    ITS NOT WORKING

  • @rixremixede6807
    @rixremixede6807 2 года назад +1

    When I used in the real site it said the place was restricted how can I fix that?

    • @rixremixede6807
      @rixremixede6807 2 года назад

      I also configured it and set it to public but it still says it’s restricted

  • @flufflymark6239
    @flufflymark6239 2 года назад

    it says Cannot Teleport in the Roblox Studio. but it does not work?? help

  • @Numba1Wild
    @Numba1Wild 2 года назад

    this whole tutorial series dident help me so much and it isent amazing not thanks the only thing I couldent get to work is everything and thats everything I needed not thanks*

  • @Pablo018_tw1
    @Pablo018_tw1 8 месяцев назад

    PLS script

  • @minidude1278
    @minidude1278 2 года назад

    in case of lazyness
    -----teleport script-----

    local ts = game:GetService("TeleportService")
    local pb = script.Parent.PLAY
    local placeID = 11363905732
    pb.MouseButton1Click:Connect:(function(player)
    wait(.01)
    ts:GetTeleportSetting(placeID. player)
    end)

  • @Nowbiealtreal
    @Nowbiealtreal 2 года назад +1

    script:
    local ts = game:GetService("TeleportService")
    local pb = script.Parent.NAME -- Change name to your buttons name
    local ID = UrId -- Change UrId to your game's id
    pb.MouseButton1Click:Connect(function(plr)
    wait(0.002)
    ts:Teleport(ID, plr)
    end)