How to make a Main Menu Gui // 2023 // Roblox Studio

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 ส.ค. 2024
  • Thanks for watching!
    In this video, I show you how to make a simple yet advanced Main Menu Gui in Roblox Studio, specifically made for beginners to Roblox Studio!
    ⸻ Sources ⸻
    ┃The updated version is out now! Please use that instead. • How to make a Main Men...
    ⸻ Other ⸻
    ┃ Support me on Patreon // / asadrith
    ┃Roblox // @InsightedUwU
    ┃Editing Software // Premiere Pro 2023
    ⸻ Chapters ⸻
    0:00 Intro
    0:20 Making the Gui
    2:25 Making the Title
    4:06 Making the Buttons
    5:55 Making the Camera
    8:44 Making the Button Animations
    10:34 First Playtest
    11:11 Making the Popups
    16:45 Scripting the Popups
    18:36 Scripting the Back Button
    20:34 Second Playtest
    20:57 Scripting the Play Button
    22:27 Final Playtest
    22:45 Closing Notes
    23:35 Outro
    ⸻ Music Used ⸻
    ♪ Purrple Cat - Alone Time
    ♪ DJ Quads - Blushes
    ♪ DLJ x BIDØ - Explorers
    ♪ Luemas Music - Switchback
  • เกม

ความคิดเห็น • 1.2K

  • @Asadrith
    @Asadrith  11 หลายเดือนก่อน +137

    Hey everyone! The updated 2024 Version of this tutorial is out now! th-cam.com/video/m65GWDcHC30/w-d-xo.htmlsi=EVpEqiGAKqxzRxXJ

    • @chum333
      @chum333 8 หลายเดือนก่อน +3

      Im having problems replicating the ButtonScript and I get errors and I think Im doing something wrong. And then also the Camera part doesnt have errors but when I did my first playtest I spawned automatically with my camera on me and not at the CameraPart. can you help these two problems?

    • @chum333
      @chum333 8 หลายเดือนก่อน +3

      Im also talking about the button animation script part, not the second part of the script

    • @Buddy_gian251
      @Buddy_gian251 8 หลายเดือนก่อน +2

      @@chum333 make sure the camera type in the script is set as scriptable:
      Enum.CameraType.Scriptable

    • @MarvelEditzph
      @MarvelEditzph 7 หลายเดือนก่อน +1

      @@chum333 Check for spelling problems

    • @sakalode9684
      @sakalode9684 7 หลายเดือนก่อน

      -- Animation Script
      local tweenService = game:GetService("TweenService")
      local tweenInfoButtons = TweenInfo.new(0.25, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut)
      for i, v in pairs(script.Parent:GetChildren()) do
      if v:IsA("Frame") then
      v.MouseEnter:Connect(function()
      tweenService:Create(v, tweenInfoButtons, {BackgroundColor3 = Color3.fromRGB(40, 40, 40)}):Play()
      end)
      v.MouseLeave:Connect(function()
      tweenService:Create(v, tweenInfoButtons, {BackgroundColor3 = Color3.fromRGB(30, 30, 30)}):Play()
      end)
      end
      end
      -- Buttons Script
      local tweenInfoPopups = TweenInfo.new(1,Enum.EasingStyle.Quad, Enum.EasingDirection.InOut)
      local Popup = {

      Settings = "Settings"
      Credits = "Credits"

      }
      for buttonName, frame in paris(Popup) do
      local button = script.Parent:FindFirstChild(buttonName)
      local popupframe = script.Parent.Parent.Popups:FindFirstChild(Popup)

      button:WaitForChild("TextButton").MouseButton1Click:Connect(function()
      for i, v in pairs(script.Parent:GetDescendants())do
      if v:Isa("TextButton") then
      v.Visible = false
      end
      end

      tweenService:Create(script.Parent, tweenInfoPopups, {Position = UDim2.new(0.5,0,1.25,0)}):Play()
      tweenService:Create(script.Parent.Parent.Title, tweenInfoPopups, {Position = UDim2.new(0.5,0,-1.25,0)}):Play()

      for i, x in pairs (script.Parent.Parent.Popups:GetChildren()) do
      if x:IsA("Frame") then
      x.Visible = false
      x.Position = UDim2.new(0.5,0,1.5,0)
      end
      end

      Popup.Visible = true
      tweenService:Create(popupframe, tweenInfoPopups, {Position = UDim2.new(.5,0,.5,0)}):play()
      end
      end
      -- {0.5, 0},{0.777, 0} Buttons Position
      -- {0.5, 0},{0.26, 0} Naruto vs Luffy

  • @DavidWinstead
    @DavidWinstead 9 หลายเดือนก่อน +58

    Very nice tutorial and right in time for me to create my first game's title screen... Thanks for sharing!

  • @frunfnke
    @frunfnke 7 หลายเดือนก่อน +78

    suprisingly, it's such a breath of fresh air to run into a tutorial in which you encounter zero errors and issues, good job man!!

    • @deveanwooten5950
      @deveanwooten5950 7 หลายเดือนก่อน +7

      Bro I have like 4 errors

    • @smash_next_question
      @smash_next_question 6 หลายเดือนก่อน +5

      bro the clicking aint clicking

    • @xerox_ips
      @xerox_ips 6 หลายเดือนก่อน

      @@smash_next_question j

    • @SnuggyKartomo
      @SnuggyKartomo 6 หลายเดือนก่อน +1

      Lol that's probably why the music fits in with the no errors

    • @jelenacubelic225
      @jelenacubelic225 5 หลายเดือนก่อน +1

      wdym by clicking aint clicking
      @@smash_next_question

  • @packgod.a
    @packgod.a 11 วันที่ผ่านมา +1

    its so good man it helped me made a good game i got a few bucks out if it thanks now i know the hard way to make the gui better [from all my heart i love u man]

  • @CreamyMoon366
    @CreamyMoon366 2 หลายเดือนก่อน +1

    The text part worked very well! I didn't change the size because it's size already fits every device! THANK YOUU!!

  • @PlutoBayLIVE
    @PlutoBayLIVE 10 หลายเดือนก่อน +18

    thanks for the tutorial! used this myself. had to change some of the code a little as i did a few things different but i figured it out and it works perfectly!

  • @brandonmm
    @brandonmm 4 หลายเดือนก่อน +3

    I’m trying to make my first Roblox game and I have no idea what I’m doing at all like zero clue and this really helped me

  • @lunarspade6463
    @lunarspade6463 4 หลายเดือนก่อน +4

    This tutorial was very helpful! It’s very easy to understand and very efficient. The only thing that’s bugging me if when you try and click “back” it doesn’t work, and when you click play the transition doesn’t play and the screen just stays black

  • @DylanMcKayyy
    @DylanMcKayyy 2 หลายเดือนก่อน +19

    For anyone haveing a WaitForChild error at line 33 in your button script her is how you fix it. Bc i got stuck on it for four hours last night and i just fixed it this morning
    1. check that your pop up frame and your button have the exact same name example would be: Button name: Settings, so your popup name has to be exactly the same witch would be Settings (yes capatals and punctuation and spelling errors effect this so make sure its like exactly the same)
    2. after you have done number one make sure before every IsA is a : not a . it makes an error at witchever line it is in for this code it would be lines 35, and 44, make sure to check every script for it too.
    Next error. So after fixing the wait for child nil you might only be able to press your buttons once and the popup wont work if you press it again after going back or hitting on and off to turn your shadows off or on . if you cant press the "Settings" button then you have an error in your back button scrip. and if you cant press your "shadow toggle" more then once then your shadow button script has an error
    1. fix back button. So my script for the back button looked like (also this is in the Localscript used to code back and not in button script)
    local tweenService = game:GetService("TweenService")
    local tweenInfoPopups = TweenInfo.new(1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut)
    script.Parent.TextButton.MouseButton1Click:Connect(function()
    script.Enabled = false

    tweenService:Create(script.Parent.Parent.Parent.Parent.Buttons, tweenInfoPopups, {Position = UDim2.new(0.5, 0,0.605, 0)}):Play()
    tweenService:Create(script.Parent.Parent.Parent.Parent.Title, tweenInfoPopups, {Position = UDim2.new(0.5, 0,0.167, 0)}):Play()
    tweenService:Create(script.Parent.Parent, tweenInfoPopups, {Position = UDim2.new(0.5,0,1.5,0)}):Play()

    wait(1)

    for i, v in pairs(script.Parent:GetDescendants()) do
    if v:IsA("TextButton") then
    v.Visible = false
    end
    end

    script.Parent.Parent.Visible = false
    script.Enabled = true
    end)

    so what i had done wrong is the "for i, v in pairs(script.Parent:getDescendants()) do" was not add the correct code witch was supposed to be :
    for i, v in pairs(script.Parent.Parent.Parent.Parent.Buttons:GetDescendants()) do
    and the second error was "v.Visible = false" just change "false" to true
    if your's does not look like that and your having trouble look at the video at the time 20:14
    2. if you are having trouble with shadows and it looked like this
    script.Parent.TextButton.MouseButton1Click:Connect(function()
    if script.Parent.StateValue.Value == true then
    game.Lighting.GlobalShadows = false

    script.Parent.State.Text = "OFF"
    else
    game.Lighting.GlobalShadows = false
    script.Parent.StateValue.Value = true

    script.Parent.State.Text = "ON"
    end
    end)
    you are missing the line
    script.Parent.StateValue.Value = false
    so just add it in to make it (the place would be under "game.Lighting.Global.Shadows = false"
    script.Parent.TextButton.MouseButton1Click:Connect(function()
    if script.Parent.StateValue.Value == true then
    game.Lighting.GlobalShadows = false
    script.Parent.StateValue.Value = false

    script.Parent.State.Text = "OFF"
    else
    game.Lighting.GlobalShadows = false
    script.Parent.StateValue.Value = true

    script.Parent.State.Text = "ON"
    end
    end)
    Edit: if your shadows wont turn on its because i messed up "game.Lighting.GlobalShadows = false" after else should be "game.Lighting.GlobalShadows = true"
    again if you are having any other issues with shadows then look at the video at the time 14:56
    thankyou i hope this helped with anybody who had any of these errors best of luck to all

    • @RF24LUKAKU
      @RF24LUKAKU 2 หลายเดือนก่อน

      can u help when i did it it doesnt spawn the part for the camera

    • @DylanMcKayyy
      @DylanMcKayyy 2 หลายเดือนก่อน

      @@RF24LUKAKU I would just check the script again and make sure there aren’t minor mistakes like periods or Colin’s being in the wrong place that also goes with spelling like capitalization and make sure there are now spaces in your words if your have spaces in them example would be : camera part -> camerapart, reason being is the code won’t work if it’s two words. But other then that I don’t know how to help because didn’t get an error for my camera I’m sorry I wasn’t able to dissect the exact issue but it’s usually spelling of minor punctuation errors

    • @dmitrijsleskevics41
      @dmitrijsleskevics41 2 หลายเดือนก่อน

      It really helped but my popups dont pop up

    • @liampro815
      @liampro815 หลายเดือนก่อน

      you are my hero tysm

    • @LuckyRuuu-roblox
      @LuckyRuuu-roblox หลายเดือนก่อน

      i stil got the "waitForChild" error, it says attempt to index nil with "waitforchild". and i checked what u said, but i still got the same error. I have checked and rewriten the code 2 times alr, i am pretty sure its something else. I would appreiate it if u could help me. Thank you,

  • @dazaiosamu5837
    @dazaiosamu5837 หลายเดือนก่อน

    man's voice is so deep...but thank you for the tutorial, this really elevates the game. no one else does and explains it like you did, precise, to the point, and easy while still making the game really good. :)

  • @Evelyn_the1
    @Evelyn_the1 2 หลายเดือนก่อน +2

    His voice making me calm down fr ❤

  • @nee7895
    @nee7895 7 หลายเดือนก่อน +54

    for anybody struggling like me here was the script for the buttonsScript:
    --Animation Script
    local tweenService = game:GetService("TweenService")
    local tweenInfoButtons = TweenInfo.new(0.25, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut)
    for i, v in pairs(script.Parent:GetChildren())do
    if v:IsA("Frame")then
    v.MouseEnter:Connect(function()
    tweenService:Create(v, tweenInfoButtons, {BackgroundColor3 = Color3.fromRGB(40,40,40)}):Play()
    end)

    v.MouseLeave:Connect(function()
    tweenService:Create(v, tweenInfoButtons, {BackgroundColor3 = Color3.fromRGB(30,30,30)}):Play()
    end)
    end
    end

    • @rgyago
      @rgyago 6 หลายเดือนก่อน +2

      dude you're a life saver tysm

    • @cloudyy.eileen
      @cloudyy.eileen 6 หลายเดือนก่อน +1

      TYYYY

    • @rellTHEyoutuber
      @rellTHEyoutuber 5 หลายเดือนก่อน

      Didnt work for me

    • @UIe785
      @UIe785 5 หลายเดือนก่อน

      @@rellTHEyoutuber me too

    • @FoShayRuns
      @FoShayRuns 4 หลายเดือนก่อน

      @@UIe785 looks good to me perhaps you have a code that u messed up earlier or later on

  • @JackDaKoala
    @JackDaKoala 7 หลายเดือนก่อน +5

    You should really share your basplate textures dude cuz they look FIRE

  • @train-track783
    @train-track783 4 หลายเดือนก่อน +5

    didn't even follow the tutorial i just listened to it in the background because i love your voice and the music is BANGIN

    • @MilloSonic
      @MilloSonic 2 หลายเดือนก่อน +3

      This has two meanings.

    • @MeAndMyMonkeyyyy
      @MeAndMyMonkeyyyy หลายเดือนก่อน

      ​@@MilloSonicfr

    • @MeAndMyMonkeyyyy
      @MeAndMyMonkeyyyy หลายเดือนก่อน

      That's scary

    • @TacowithaZ
      @TacowithaZ 15 วันที่ผ่านมา

      how tf did you follow everything when he says "it should look something like this" and then there is 10 lines of code 💀💀

    • @MeAndMyMonkeyyyy
      @MeAndMyMonkeyyyy 14 วันที่ผ่านมา

      @@TacowithaZ Just write what u see??

  • @anonymousj2774
    @anonymousj2774 12 วันที่ผ่านมา

    amazing work man...really helped me out alot.
    edit: i fixed all the stuff i needed to
    😋

  • @officialezetaperz
    @officialezetaperz 7 หลายเดือนก่อน +6

    I spent more than 5 hours making it and it ended up not working, so I decided to go to the game in your desc and I found the main menu thing there so I downloaded it and put it in my game and it works now 😂, thanks, but you should’ve made it more clear that in the game it will give you everything you need , but thanks anyways, earned a like and a subscriber ❤❤

    • @erikkovacs5418
      @erikkovacs5418 7 หลายเดือนก่อน +1

      how can i add it?

    • @k1inzSukma
      @k1inzSukma 5 หลายเดือนก่อน +1

      Bruh

    • @yecollah
      @yecollah 4 หลายเดือนก่อน

      Same thing happened and reading this I'm becoming a bit demotivated but I have to learn how to do it BC if I don't I can't update the game in future independently

  • @FrootLoopsVR1
    @FrootLoopsVR1 10 หลายเดือนก่อน +64

    for buttonName, frameName in pairs(Popup) do
    local button = script. Parent: FindFirstChild(buttonName)
    local popupframe = script.Parent. Parent. Popups: FindFirstChild(Popup)
    button:WaitForChild( "TextButton*). MouseButton1Click:Connect (function( )
    for i, v in pairs(script.Parent :GetDescendants )) do
    if V: ISA "TextButton) then
    v. Visible = false
    end
    Y
    end
    tweenService:Create(script.Parent, tweenInfoPopups, {Position = UDim2. new(0.5,0,1.25,0)] ):Play()
    tweenService:Create(script.Parent.Parent.Title, tweenInfoPopups, {Position = UDim2.new(0.5,0, -1.25, 0)]):Play ()
    for i, x in pairs script.Parent. Parent. Popups :GetChildren do
    if x:IsA("Frame") then
    x.Visible = false
    x.Position = UDim2.new(0.5,0,1.5,0)
    end
    end
    popupframe. Visible = true
    tweenService:Create(popupframe, tweenInfoPopups, {Position = UDim2. new(.5,0, .5,0)]) :Play()
    end)

    • @Iso_clockes
      @Iso_clockes 9 หลายเดือนก่อน

      tysm

    • @jpdragoyt592
      @jpdragoyt592 8 หลายเดือนก่อน

      In pairs ... GetDescents no is ())?

    • @blueuniverse7704
      @blueuniverse7704 7 หลายเดือนก่อน

      atleast when u use google lens to copy it try to look if there is any failures

    • @yecollah
      @yecollah 4 หลายเดือนก่อน

      ​@@blueuniverse7704 I hope this works 💀

  • @GEEKbox799
    @GEEKbox799 10 หลายเดือนก่อน +214

    why do u kinda sound like elon musk

    • @iatplayeridontfrickingknow483
      @iatplayeridontfrickingknow483 10 หลายเดือนก่อน +13

      nah i think he sounds more like corpse but with a bit higher pitch i think

    • @Asadrith
      @Asadrith  9 หลายเดือนก่อน +63

      ehhhh my friends say i sound like ruben sim

    • @c0rroded_ae
      @c0rroded_ae 9 หลายเดือนก่อน +5

      He IS Elon Musk.

    • @26jdaniels
      @26jdaniels 9 หลายเดือนก่อน +3

      @@AsadrithI don’t see it 😭

    • @poopyshit_2
      @poopyshit_2 9 หลายเดือนก่อน +5

      @@26jdaniels I CAN SEE SOUNDS TOO!!!!

  • @franchider
    @franchider 7 หลายเดือนก่อน +11

    Shadow script
    script.Parent.TextButton.MouseButton1Click:Connect(function()
    if script.Parent.StateValue.Value == true then
    game.Lighting.GlobalShadows = false
    script.Parent.StateValue.Value = false

    script.Parent.State.Text = "OFF"
    else
    game.Lighting.GlobalShadows = true
    script.Parent.StateValue.Value = true
    script.Parent.State.Text = "ON"
    end
    end)

    • @__-om1pj
      @__-om1pj 6 หลายเดือนก่อน

      Thank you daddy

    • @Inky_X1
      @Inky_X1 4 หลายเดือนก่อน

      Tysm!

    • @itadorionlyws
      @itadorionlyws 2 หลายเดือนก่อน +1

      @@__-om1pj Bro freaky 😭😭😭😭😭😭😭

  • @MePersonally-gu3jy
    @MePersonally-gu3jy 7 หลายเดือนก่อน +3

    Thank you so much for this tutorial! It was extremely helpful and will kickstart my new game creations! Thank you Asradith!

  • @sabbymacaroni
    @sabbymacaroni หลายเดือนก่อน

    thx so much dude, just what i needed! this is a breath of fresh air, instead of just linking a pre-made model in the description, you actually walk us through the process! the editing is lovely too! 🤍

    • @Sirixxoxx
      @Sirixxoxx หลายเดือนก่อน

      Hey can you help me? mine wont work for some reason

  • @JosephPlays909
    @JosephPlays909 10 หลายเดือนก่อน +7

    Thank you! you've made the graphics this time better and readable! Keep it up!

  • @EERASE
    @EERASE 6 วันที่ผ่านมา +1

    im on the making the buttons step and whenever i try to move the duplicated title its only moves the text label not the whole thing, but when i move the rectangle while the text is moved elsewhere they both move

  • @HellbreakerLol
    @HellbreakerLol 3 หลายเดือนก่อน

    This tutorial was AMAZING! It worked well despite possibly being outdated for me. The only things I’d change myself would be
    1. Instead of being put straight into the game after pressing play, you have a menu prompt asking which side/team you want to be on (like jailbreak when you choose to be a cop or criminal)
    2. Just the way the settings menu was set up.
    Other than those, I loved this tutorial! Definitely beginner friendly. Oh, and one last thing to say, whenever I was going through the tutorial, I ran into a problem where when I clicked on the settings/credits button then backed out of it, I couldn’t click any buttons (other than the Roblox studio ones) after that and I’d love if someone could help me fix it

    • @whyareuevenreadingthisbro
      @whyareuevenreadingthisbro หลายเดือนก่อน

      how did u get ur buttons to even press? my popups dont show up lol

  • @nexon5808
    @nexon5808 8 หลายเดือนก่อน +3

    Thank you so much bro!! I've been searching for this tutorial for about 2 month

  • @musicalstudios0
    @musicalstudios0 10 หลายเดือนก่อน +3

    Thanks for making this video, I am gonna build upon it since I will be using this for a game in the making.

  • @ComandanteJ4ike_2348
    @ComandanteJ4ike_2348 2 หลายเดือนก่อน +2

    Bro, you are the best

  • @DRKAProd
    @DRKAProd 2 หลายเดือนก่อน +1

    bro your lighting is amazing, can you give tutorial on how i can do something like that

  • @HeyheyRoblox
    @HeyheyRoblox 11 หลายเดือนก่อน +4

    Love it! Thank You so much

  • @Riot0412
    @Riot0412 10 หลายเดือนก่อน +3

    Thank you! this helped me fix the camera glitch.

  • @ThatGuyNamedBender
    @ThatGuyNamedBender 2 หลายเดือนก่อน

    Excellent tutorial! I have never been good at figuring out how to design/script UIs so your video really helped me. Not sure if this was a recent change or not but I know that as of now you want to use task.wait() instead of wait() but other than that great tutorial!

    • @uk_sam1
      @uk_sam1 2 หลายเดือนก่อน

      task.wait() is a more optimised and new version of wait()

  • @birdyboygaming
    @birdyboygaming หลายเดือนก่อน +1

    My credits will pop and go back when i click the button but my setting will only pop up and not go back can someone help me

  • @signaltodeparture
    @signaltodeparture 7 หลายเดือนก่อน +5

    Great Video! Only thing is I'm having issues with the Camera for the background following the player instead of the set spot. I moved the camera part out of the folder and altered the script but the camera still follows the player. I'm also having major issues with the GUI such as {Settings} and {Credits} not loading when you click them, which means the animations aren't showing up. I've checked over all the scripts to make sure they're the correct scripts and they are. I'm super new to scripting and don't know what's wrong so if you have a explanation on how to fix this would be great!

    • @Asadrith
      @Asadrith  7 หลายเดือนก่อน +1

      rewrite the script and do the camera part troubleshooting

    • @yecollah
      @yecollah 4 หลายเดือนก่อน

      ​@@Asadrith what do you mean

    • @yecollah
      @yecollah 4 หลายเดือนก่อน

      ​@@Asadrithplease reply 😭

    • @John-ej9xz
      @John-ej9xz 3 หลายเดือนก่อน

      I had this issue and here the solution I found so when you are writing your camera script the WaitForChild(“”) is each folder so when you go to look for the part make sure to include each folder it should look like this when you are finished:
      local CameraPart = workspace:WaitForChild(“MenuFolder”):WaitForChild(“MenuCamera”):WaitForChild(“MenuCameraPart”).CFrame

    • @John-ej9xz
      @John-ej9xz 3 หลายเดือนก่อน

      If that’s confusing just lmk

  • @shadow_wodahs7135
    @shadow_wodahs7135 8 หลายเดือนก่อน +4

    Sorry for the late comment, I really appreciated the tutorial, I haven't done a lot of scripting but this helped me out a ton!! I do have a quick question, I have a loading Animation and I want this main menu to be hidden until the loading animation is complete, how can I do this?

    • @Asadrith
      @Asadrith  8 หลายเดือนก่อน +4

      change the DisplayOrder on the screengui of your loading gui

    • @shadow_wodahs7135
      @shadow_wodahs7135 8 หลายเดือนก่อน +3

      Thanks for the quick reply!!!

  • @cocosfunland1592
    @cocosfunland1592 28 วันที่ผ่านมา +1

    Typing where I am so I can go back to it when I’m done sleeping (I’m tired-)
    7:22

  • @myusernameisSetyawan_2453
    @myusernameisSetyawan_2453 2 หลายเดือนก่อน

    Thanks for your help! Because the menu needs to be start menu! U deserve a new sub!

  • @tocaaanishah4213
    @tocaaanishah4213 11 หลายเดือนก่อน +4

    Bro. I can't believe this coincidence. I wanted to make a main menu. On I searched it up on TH-cam and found Ur old video. I was watching it when I found this videos link in that videos pinned comment. And as I clicked it. I am here. AND THE VIDEO IS UPLOADED 12 MINUTES AGOOOO??

    • @VoratonSStlr
      @VoratonSStlr 11 หลายเดือนก่อน +1

      skull

    • @Eagle_K1A
      @Eagle_K1A 11 หลายเดือนก่อน

      same. not 12 minutes but within the hour

  • @chungkim7351
    @chungkim7351 9 หลายเดือนก่อน +6

    Nice, but I’m more interested in loading screens, I’m trying to focus more on that, please make a tutorial on the loading screen please :)

    • @Asadrith
      @Asadrith  9 หลายเดือนก่อน +1

      already done that
      th-cam.com/video/9spESsKwH30/w-d-xo.htmlsi=UOSxySdizfNma5OR
      th-cam.com/video/r9LkulsRYlM/w-d-xo.htmlsi=esEq-vBy4YWf8nfB

  • @jbortbolk6616
    @jbortbolk6616 3 หลายเดือนก่อน

    great tutorial I admire how you heart all of your comments keep up the good content man

  • @Infected1612
    @Infected1612 2 หลายเดือนก่อน +1

    I’m very grateful for this and it all works except the back button could u suggest anything to help?

  • @nexon5808
    @nexon5808 8 หลายเดือนก่อน +3

    Hey bro can you help me? I follow your script it works, but when i click on settings it shows but when i click on shadows it doesnt work even the back buttons

  • @junfalcon7594
    @junfalcon7594 3 หลายเดือนก่อน +3

    i have a problem, when i first playtested my game, the camera for the menu still follows my character, it wont stay on the camera that you put at the making the camera part of your video,pls help me

    • @1914boogey
      @1914boogey 2 หลายเดือนก่อน

      The menu folder is what's causing the issue. Go into the the Camera script and delete The menu portion on line 5.

    • @whyareuevenreadingthisbro
      @whyareuevenreadingthisbro หลายเดือนก่อน

      @@1914boogey like the whole line or just delete the word menu?

  • @willardeguaras1429
    @willardeguaras1429 3 หลายเดือนก่อน +1

    To anyone who's camera is not locking in place like his during the first playtest, i fixed my problem by putting the camerascript inside starterplayerscripts

    • @IzTrixzard
      @IzTrixzard 2 หลายเดือนก่อน

      how?

    • @IzTrixzard
      @IzTrixzard 2 หลายเดือนก่อน

      didnt work

  • @2Bbtt591
    @2Bbtt591 หลายเดือนก่อน +1

    Pls i have a problem in line 33 it says that the mousebuttonclick is not a valid member of textbutton

  • @amiryt9392
    @amiryt9392 6 หลายเดือนก่อน +3

    Hello, i have a problem, after i test the game, not even a single button works when i click on it, and on the output, it says "Players.kfzma02.PlayerGui.MenU.Main Framer.Buttons.ButtonScript:25: Expected ',' after table constructor element

    • @mreasybuild
      @mreasybuild 4 หลายเดือนก่อน

      I think you could add a "," in line 25, it can literally destroy your entire script. I've had similar Problems, try finding differences between your script and then one shown in the Video

  • @_yul1ta
    @_yul1ta 10 หลายเดือนก่อน +3

    Thank you for this tutorial, but i got a problem here, i checked my output to see any errors for the scripts because after i pressed the back button on credits or settings the buttons all just dissapeared. The output said nothing is wrong, can you please tell me what's wrong though? Thanks!

    • @Asadrith
      @Asadrith  10 หลายเดือนก่อน +1

      check your tweens, you could probably have something not tweening a frame to the correct position

  • @user-ro1bt2vy6h
    @user-ro1bt2vy6h 9 หลายเดือนก่อน +4

    for the button animation= local tweenService = game:Getservice("TweenService")
    local tweenInfoButtons = TweenInfo.new(0.25 Enum.Easingstyle.Quad, Enum.EasingDirections.InOut)
    for i, v in pairs (script.Parent:GetChrildren()) do
    if v:IsA("Frame") then
    v.MouseEnter:connect(function()
    tweenService:create(v, tweenInfoButtons, :Backroundcolor3 = Color3.fromRGB(40,40,40)})
    end)

    v.MouseLeave:Connect(function()
    tweenService:create(v, tweenInfoButtons, :Backroundcolor3 = Color3.fromRGB(40,40,40)})
    end)
    end
    end

    • @VastoEditz
      @VastoEditz 4 หลายเดือนก่อน

      local tweenService = game:GetService("TweenService")
      local tweenInfoButtons = TweenInfo.new(0.25, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut)
      for i, v in pairs(script.Parent:GetChildren()) do
      if v:IsA("Frame") then
      v.MouseEnter:Connect(function()
      tweenService:Create(v, tweenInfoButtons, {BackgroundColor3 = Color3.fromRGB(40, 40, 40)}):Play()
      end)
      v.MouseLeave:Connect(function()
      tweenService:Create(v, tweenInfoButtons, {BackgroundColor3 = Color3.fromRGB(255, 255, 255)}):Play()
      end)
      end
      end

  • @ObviouslyPoptart
    @ObviouslyPoptart 4 หลายเดือนก่อน +1

    my game uses a custom startercharacter controller thingamabopper so its messes with the camera script very easily and idrk how to fix it

    • @ObviouslyPoptart
      @ObviouslyPoptart 4 หลายเดือนก่อน +1

      i just now used the free model version you have on patreon to see whats wrong and instead of switching to the main menu camera it just pauses mid air where the player controller is
      although it switches back to the player when you click play

  • @fungebob6882
    @fungebob6882 2 หลายเดือนก่อน +1

    my camera won't go back to my character after clicking play how to fix

  • @dtxala
    @dtxala 2 หลายเดือนก่อน +5

    where you in a hurry?

  • @khingsan397
    @khingsan397 10 หลายเดือนก่อน +4

    I am a bit confused so could you indentify the problem? It says that The MouseButton1Click is not a valid member of TextLabel "Players.Legitsadnessx.PlayerGui.MenuGui.MainFrame.Popups.Credits.Back.Textbutton. i am only including credits and i accidentally made all textbuttons textlabels. Any idea on how to fix this?

    • @UrFavTiaan_
      @UrFavTiaan_ หลายเดือนก่อน

      i am also getting this problem

    • @LuminaEdits
      @LuminaEdits หลายเดือนก่อน

      @@UrFavTiaan_ its probably cause you dont have the script in the correct area.

  • @notcharter
    @notcharter 7 หลายเดือนก่อน +2

    animations dont work, camera script doesn't work, nothing worked (the first time i tried)

    • @Asadrith
      @Asadrith  7 หลายเดือนก่อน

      skill issue

    • @notcharter
      @notcharter 7 หลายเดือนก่อน

      @@Asadrith ill try it again and see if it works

  • @blazexfirestorm
    @blazexfirestorm 2 หลายเดือนก่อน +1

    Bro could you help me, my buttons arent kighting up and functioning when i hover over them

  • @MertasThick
    @MertasThick 5 หลายเดือนก่อน +7

    300 scripts for a simple menu gui??

  • @Quacksifyy
    @Quacksifyy 8 หลายเดือนก่อน +3

    at 7:43 It says to change the model streaming mode to persistent, but all it has for me is default, improved, and legacy. Which one do I need to choose?

    • @thewoodguy3463
      @thewoodguy3463 7 หลายเดือนก่อน +1

      ya gotta model the camera you spawned with the script which is inside the folder, then go to behavior and change it to persistent.

  • @NatthakitJar-il8cy
    @NatthakitJar-il8cy 5 หลายเดือนก่อน +1

    local plr = game:GetService("Players").LocalPlayer
    local Character = plr,Character or plr.CharacterAdded:Wait()
    local Camerapart = workspace:WaitForChild("MenuFolder"):WaitForChild("MenuCamera"):WaitForChild("MenuCamera").CFrame
    repeat wait()
    CameraInst.CameraType = Enum.CameraType.Scriptable
    until CameraInst.CameraType == Enum.CameraType.Scriptable
    CameraInst.CFrame = Camerapart
    Heres the script at 8:38 i think

  • @user-vv6lm1sx7s
    @user-vv6lm1sx7s 7 หลายเดือนก่อน

    No one gonna mention how beautiful the baseplate and lighting is? ANYWAYS, could you please give us a mini tutorial on the lighting settings and properties

    • @Asadrith
      @Asadrith  7 หลายเดือนก่อน +1

      old one: th-cam.com/video/kZ-1Twai2Dg/w-d-xo.htmlsi=G3aq_lLKQ5jXXl9L

    • @user-vv6lm1sx7s
      @user-vv6lm1sx7s 7 หลายเดือนก่อน

      thanks mate god bless!@@Asadrith

  • @malismini1026
    @malismini1026 4 หลายเดือนก่อน

    HOW DID YOU MAKE THESE GOOD LOOKING WOW 0:20

  • @nowatchmewip
    @nowatchmewip 4 หลายเดือนก่อน +2

    My camera script won't work, even if i did the changes dude :(

  • @y2hxzWRLD
    @y2hxzWRLD 3 หลายเดือนก่อน

    it works perfectly, thank so much for the tutorial!

  • @izidaYT
    @izidaYT หลายเดือนก่อน

    Thanks man😊 now I know how to create a menu

  • @meghanasbury6114
    @meghanasbury6114 4 หลายเดือนก่อน +1

    best tutorial i found! all the other ones i looked that i lost my mind on.😁but this one was so clean, and perfect. excellent tutorial!

  • @rockypumpylink121
    @rockypumpylink121 หลายเดือนก่อน

    Actually nvm thx for the tutorial ❤️
    Btw everyone you don’t have to follow this video, just go the main pinned comment and you can download it, it has all the scripts made for you, just customize it your welcome

  • @ProGamerZ5
    @ProGamerZ5 2 หลายเดือนก่อน

    Thanks man i am making a game right now cause of i was able to make this

  • @miguelmcnamara8405
    @miguelmcnamara8405 4 หลายเดือนก่อน +1

    Love the video! Just having issues with the camera angle not appearing followed by the following error:
    19:22:01.098 Players.MyPlayerName.PlayerGui.Menu.CameraScript:8: attempt to index nil with 'CameraType' - Client - CameraScript:8
    And the script for that section is this:
    repeat wait()
    CameraInst.CameraType = Enum.CameraType.Scriptable
    until CameraInst.CameraType == Enum.CameraType.Scriptable
    CameraInst.CFrame = CameraPart

  • @dazaiosamu5837
    @dazaiosamu5837 หลายเดือนก่อน

    Thank you so muchi!!!

  • @Yer___
    @Yer___ หลายเดือนก่อน

    Thanks for the great video fellow proot, I'm strugglin to make a photography game on roblox with 2 other furs lol qwq

  • @Obese_Fish
    @Obese_Fish 6 หลายเดือนก่อน

    The tutorial is beautiful and it helped me a lot, but like the music is a bit to loud cuz your voice is in a like "low tone" and i sometimes cant understand a word and i have to go back and ext. But i loved it ❤❤

  • @kenzq0000
    @kenzq0000 หลายเดือนก่อน +1

    Camera part didn't work, even though there wasnt any spelling mistakes.

  • @UIP_Offical
    @UIP_Offical 4 วันที่ผ่านมา

    The guide is good, but I ran into a problem. When you press the buttons, everything works, but after 1 time all the buttons stop working, and in credits the back button does not work. I checked the script several times and there are no errors :/.

  • @RoadBlocks1.
    @RoadBlocks1. 3 หลายเดือนก่อน

    It would kind of help if you were a bit more specific and slowed down a bit since I had to pause literally every 5 seconds
    Also, at the part where you said to change the positions of the settings from 0.5 to 1.5, it just went off screen

  • @free_assets1
    @free_assets1 3 หลายเดือนก่อน +1

    Everything is working but camera not. When I play the game I will only see the gui (working) but not camera position if you know what I mean. Is there a fix?

    • @LogrelClips
      @LogrelClips 3 หลายเดือนก่อน +1

      Well that just means u messed up the script of the camera, try to check it again.

  • @RobloxGamerZ-p7b
    @RobloxGamerZ-p7b หลายเดือนก่อน

    thx so much

  • @lohicat642
    @lohicat642 5 หลายเดือนก่อน +1

    Finished the tutorial and it all works perfectly!
    Really needed it to my upcoming game!!

  • @Bimo_I
    @Bimo_I 2 หลายเดือนก่อน

    You're the best, thank you

  • @perfectchief1
    @perfectchief1 3 หลายเดือนก่อน +1

    after i finished scripting the popups, i playtested to find it starting on the credits gui, and after hitting back to the main menu to test out settings and credits, the menu rises up without turning invisible and the credits/settings menu doesnt even appear

    • @mountaa971
      @mountaa971 3 หลายเดือนก่อน

      I have the exact same problem, except kidna different, when I click on the credits button, the title and buttons goes out of the screen but the popups dont appear

  • @NitroLogan
    @NitroLogan 5 หลายเดือนก่อน +1

    Can someone copy paste the script for the camera screen gui in the camera part in the replies on this? Thanks

  • @CHARLIEBROWN-nn5dg
    @CHARLIEBROWN-nn5dg 7 หลายเดือนก่อน

    I was wondering if you could make a tutorial on how to add endings to a game and/or menu. If you could make a tutorial that would be awesome since yours are the only ones that seem to work. Just a suggestion. :)

  • @m4rk_xz
    @m4rk_xz 7 หลายเดือนก่อน +2

    thanks so much bro! love u and giving you credit for your immense help (:

  • @theyeonbin
    @theyeonbin 11 วันที่ผ่านมา

    6:36 it seems like you changed the pinned comment. where can I find the link for it again?

  • @RealNoLifer
    @RealNoLifer 2 หลายเดือนก่อน

    So here is whats happening with me, ill click play and the transition goes over my screen and just stays black

  • @nhatquanglesy7508
    @nhatquanglesy7508 2 หลายเดือนก่อน

    thanks u so much bro !

  • @ZachCheckerson
    @ZachCheckerson 7 หลายเดือนก่อน +1

    Great tutorial! It works and all, but I was just wondering, how could you add music and a blurred screen in the background?

    • @Asadrith
      @Asadrith  7 หลายเดือนก่อน

      sound and blur instances

    • @ZachCheckerson
      @ZachCheckerson 7 หลายเดือนก่อน

      @@Asadrith Where is that?

  • @DILEEX
    @DILEEX หลายเดือนก่อน +1

    I have a problem. when I click on any button of the tree nothing happens. I tried to read the script again but nothing is wrong and no error is showing up on the console log. Can someone help me cuz I rly want to make my game

  • @McInVoid
    @McInVoid 5 หลายเดือนก่อน

    This looks amazing! How did you get such a high quality ground texture/graphics??

  • @EditEditr
    @EditEditr 2 หลายเดือนก่อน

    16:43:48.571 Infinite yield possible on 'Workspace.Zombie.AnimScript:WaitForChild("PlayEmote")' - Studio
    16:43:48.571 Stack Begin - Studio
    16:43:48.571 Script 'Workspace.Zombie.AnimScript', Line 719 - Studio - AnimScript:719
    16:43:48.571 Stack End - Studio
    16:43:48.571 Infinite yield possible on 'Workspace.Zombie.AnimScript:WaitForChild("PlayEmote")' - Studio
    16:43:48.571 Stack Begin - Studio
    16:43:48.571 Script 'Workspace.Zombie.AnimScript', Line 719 - Studio - AnimScript:719
    16:43:48.571 Stack End - Studio
    16:43:48.571 Infinite yield possible on 'Workspace.Zombie.AnimScript:WaitForChild("PlayEmote")' - Studio
    16:43:48.571 Stack Begin - Studio
    16:43:48.571 Script 'Workspace.Zombie.AnimScript', Line 719 - Studio - AnimScript:719
    16:43:48.571 Stack End - Studio
    16:43:49.437 Infinite yield possible on 'Players.pandabillionaire.PlayerGui.Menu.MainFrame.Popups.Settings:WaitForChild("TextButton")' - Studio
    16:43:49.437 Stack Begin - Studio
    16:43:49.437 Script 'Players.pandabillionaire.PlayerGui.Menu.MainFrame.Buttons.ButtonScript', Line 32 - Studio - ButtonScript:32
    16:43:49.437 Stack End - Studio

  • @TheCG6
    @TheCG6 6 หลายเดือนก่อน +1

    Camera Spawn code won’t work. Any tips? I spelt everything correctly and no blocks spawn

  • @ExposingRacistRobloxers
    @ExposingRacistRobloxers 11 หลายเดือนก่อน +2

    Love your tutorial, Helpfull Dont stop!

  • @Alinamb.r
    @Alinamb.r 5 หลายเดือนก่อน +1

    Heyy mine says " TweenService:Create no property named 'backgroundColor3' for object 'Play' How do I fix that? Ty for the Tutorial!

    • @levy_org
      @levy_org 4 หลายเดือนก่อน

      it’s a capitalized error change it to: BackgroundColor3

  • @creperek_yt2856
    @creperek_yt2856 4 หลายเดือนก่อน +1

    relly nice
    but now i have to write this all scripts

    • @Toyeditx_.
      @Toyeditx_. 4 หลายเดือนก่อน +1

      Button
      👇

  • @aspect616
    @aspect616 หลายเดือนก่อน

    Could you somehow explain the way to make the camera change angles based on what button you press? I feel like that would be sickkk

  • @tealmintmoonrise
    @tealmintmoonrise 7 หลายเดือนก่อน +1

    There's a visual glitch when I add a Studio Spawn Point. The MenuCameraPart is facing two walls and some props as a loading screen, which disappear if the Spawn Point is on the map. No Output errors!

    • @Asadrith
      @Asadrith  7 หลายเดือนก่อน

      camera streaming error, change to persistent

  • @marcelogomeslopes
    @marcelogomeslopes 2 หลายเดือนก่อน +1

    Bro there a problem the camera not working...

  • @SuperShenronYT
    @SuperShenronYT 3 หลายเดือนก่อน

    Hey there Asa thanks for all the hard work. Without you my game i'm curretly working on would look Rubbish. You're the best! And you earn a new Sub and Like

  • @Kelvin-almond
    @Kelvin-almond 2 หลายเดือนก่อน +1

    Bro sounds like an exhausted dog lol i cant understand sometomies what he sayin'
    Btw thanks for the tutorial
    (No offense abt that dog)

    • @Kelvin-almond
      @Kelvin-almond 2 หลายเดือนก่อน

      Thanks for the heart!

  • @sour_axolotl
    @sour_axolotl 7 หลายเดือนก่อน +2

    @Insighted When I make the popups invisible and press "Settings", the settings popup doesn't show but if I make it visible, it works, but it shows in the first place, which makes it not pretty. There are no errors in the scrips or anything though. Please help me :D

  • @jaddocttv
    @jaddocttv 3 หลายเดือนก่อน

    Holy Fuck! Amazing video

  • @COS-wt1qg
    @COS-wt1qg 4 หลายเดือนก่อน

    I spent 10h on this but finally i got this 😭

  • @the_bunny1987
    @the_bunny1987 หลายเดือนก่อน

    its not working for me, when i go to change the size of the frame it doesnt show anything, and it just closes out and doesnt save

  • @StormVxlor
    @StormVxlor 6 หลายเดือนก่อน

    Hello! I really love your Main Menu Gui tutorial, it's helping me a lot because right now I am making my very own first Roblox game call: Dinosaur Dominion Era. Is it possible you can teach me how to make the "return to back menu" button because I want the players to go back to the main menu in game to switch out dinosaurs, trading map, and so forth.