Thanks for watching! Part 2: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-fz3Jwy4qTkE.htmlsi=TIzEhgMEIAuCXXZr UI auto scale plugin: create.roblox.com/store/asset/1496745047/AutoScale-Lite?keyword=&pageNumber=3&pagePosition= Time stamps: 0:00 Intro 0:10 Making the Open Shop Button 1:27 How to scale your UI properly 3:02 Making the Shop Frame 3:55 Making the Exit Button 4:51 Making a Title for the Shop 5:50 Different ways to open a Shop 6:10 Method 1: (Click button to Open Shop) 8:17 Method 2: (Hold 'E' to Open Shop) 14:58 Method 3: (Touchpad to Open Shop) 20:30 Outro Scripts and music used in the video are in the description! As well as some other information if you would like to check that out!
Hi. We're having a bit of trouble opening the shop with Method One and noticed an extra script tab appears in your video at 6:44. Is that something important that we should be including too in order for it to work? Thanks!
Method 1 does not require a regular script, you only need the local script shown in the video. The extra script tab appears in the video because of an editing mistake. If it does not work for you, you can try the following: Check the output (view tab -> output), click the button while the output is open and it will tell you what errors you have if you have any.
What about it? Every method has its own way of implementing the exit button. As long as you follow one of the methods, the exit button part will be included for the specific method.
Its difficult to debug a system like that under a youtube comment section, you can join my discord server and we can try and help you there. Link is in the description of any tutorial.
if method1 is not workign for you guys try local shop = script.Parent -- Show ShopFrame and hide Open button when the "Open" button is clicked shop.Open.MouseButton1Click:Connect(function() shop.ShopFrame.Visible = true -- Make ShopFrame visible shop.Open.Visible = false -- Hide the Open button end) -- Hide ShopFrame and show Open button when the "Exit" button is clicked shop.ShopFrame.Exit.MouseButton1Click:Connect(function() shop.ShopFrame.Visible = false -- Hide the ShopFrame shop.Open.Visible = true -- Show the Open button again end)