How to make simple main menu screen with camera - Roblox Studio 2022

Поделиться
HTML-код
  • Опубликовано: 29 авг 2024
  • Roblox Model 📦: www.roblox.com...
    My discord: Telemacos#8418
    My roblox account: www.roblox.com...
    Talent Hub: talent.roblox....

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

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

    YOU ARE INCREDIBLE I WANTED TO FIND SOMETHING LIKE THIS IT WORKED!!! Thank you so much! I'm subscribing

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

    Why the hell does he have 13 subscribers and not 1k or smth man RUclips needs to put this guy on recommend page. Istg

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

    thanks i was searching for this specifically 👍

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

    how do i make it so the settings can be also closed by a button that is in the corner of the frame?

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

    Thanks for the help

  • @kendalos5119
    @kendalos5119 3 месяца назад

    Is it possible to make a spinning main menu like in minecraft cuz idk how to make one

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

    Hi! Good job! ☺️

  • @Not_madelyn-f2d
    @Not_madelyn-f2d 9 месяцев назад

    Good vid man

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

    Wondering how you can put your avatar in the background
    like your avatar in the background just for show

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

    Damm that's how I remember his voice compared to now

  • @Lucid_Music
    @Lucid_Music 10 месяцев назад

    Mines just broken its telling me the part isnt a valid member of workspace when the spelling is correct and everything not sure why but its acting like the part im looking at right now just doesnt exist

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

    deserves more subs

  • @Williamplayz64
    @Williamplayz64 3 месяца назад

    the model is deleted...

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

    what plugin in the vid ?

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

    So, a continuation of Connor's comment, what SPECIFICALLY do I have to type? Just "game.PlayerCharacter.Humanoid" for the variable or what? And also, how do I make it so you teleport to a new area when you press "Play"?

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

      local player = game.Players.LocalPlayer
      local char = player.Character or player.CharacterAdded:Wait()
      local hum = char:WaitForChild("Humanoid")
      local cam = workspace.CurrentCamera
      local starterCam = workspace.MainMenuCam
      local playButton = script.Parent.Play
      local settingsButton = script.Parent.Settings
      local settingsFrame = script.Parent.SettingsFrame
      local main = script.Parent
      local teleportPart = workspace.TeleportPart -- The part you want to teleport to when you click play
      hum.WalkSpeed = 0
      repeat
      cam.CameraType = Enum.CameraType.Scriptable
      cam.CameraSubject = starterCam
      cam.CFrame = starterCam.CFrame
      until cam.CameraType == Enum.CameraType.Scriptable and cam.CameraSubject == starterCam and cam.CFrame == starterCam.CFrame
      playButton.MouseButton1Click:Connect(function()
      main.Visible = false

      cam.CameraType = Enum.CameraType.Custom
      cam.CameraSubject = player.Character
      hum.WalkSpeed = 16 -- Setting the walkspeed to original again
      char:SetPrimaryPartCFrame(teleportPart.CFrame) -- Setting the characters position to the parts position
      end)
      settingsButton.MouseButton1Click:Connect(function()
      settingsFrame.Visible = not settingsFrame.Visible
      end)

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

      @@TeletacosRobloxTutorials thank you, good sir.

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

      @@TeletacosRobloxTutorials Wait, the script isn't working.

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

      @@randallmays5463 Any errors?

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

      @@TeletacosRobloxTutorials I got the code wrong with the camera. I forgot to put the name of the part instead of "MainMenuCam".

  • @imakevideos774
    @imakevideos774 10 месяцев назад

    it wont work for me..

  • @user-yx9xo3qi3j
    @user-yx9xo3qi3j Год назад

    Hey taco it wont send me too my cam and I need help because I have been going through lots of stress while being new to studios

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

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

    Taco :O)

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

    can you make it when your press m or something you return to the menu

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

    Is there a way to make it so it doesnt reappear after death

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

    can you make it so you cant move until you press play pls

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

      If you want to make it so you cant move just add a variable for the players characters humanoid. Then change the WalkSpeed to 0 and when you click on play change it to whatever speed you want.

    • @user-yx9xo3qi3j
      @user-yx9xo3qi3j Год назад

      @@TeletacosRobloxTutorials How u do that I still a noob at studios :(

    • @user-yx9xo3qi3j
      @user-yx9xo3qi3j Год назад

      I really want it for my player not to move until press play.

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

    I don't even know what I did wrong. I followed all of your steps. But when I tested it it didn't work. But then I checked the Output it said the part (camera) is not an object, what do I do?

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

      Roblox is case sensitive, so maybe you don't have "camera", but have "Camera" in workspace?

    • @Not_madelyn-f2d
      @Not_madelyn-f2d 9 месяцев назад

      Um check workspace properties and disable streaming then it will work thats what I did

    • @Not_madelyn-f2d
      @Not_madelyn-f2d 9 месяцев назад

      Idk why i responded this was a year ago lol

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

    what font did u use?

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

    doesnt work