Тёмный

How to Make a Working Shop in Roblox Studio! (Updated) 

OnFireRobloxScripting
Подписаться 7 тыс.
Просмотров 4,6 тыс.
50% 1

Опубликовано:

 

28 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 33   
@onfirerobloxscripting
@onfirerobloxscripting 8 месяцев назад
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!
@ThatOneItami
@ThatOneItami 7 месяцев назад
Looking forward for next part!
@The-Scary-Gamer
@The-Scary-Gamer 8 месяцев назад
Thank you man for the video my friend needed this for his game and didn’t know how to do it
@ExplosiveVest
@ExplosiveVest 8 месяцев назад
nice video!
@FunkyPuppetChannel
@FunkyPuppetChannel 3 дня назад
you deserve a like and subscribe!!!1!!!!
@RealZoryx
@RealZoryx 4 месяца назад
why is open button not opening the shop please help ofirerobloxscripting
@rockstarfoxy2852
@rockstarfoxy2852 7 месяцев назад
I dont know what I'm doing wrong, I did everything as the video said, but with the proximity prompt, the shop wont open for some reason :(
@Jmeebo25
@Jmeebo25 10 дней назад
It’s because its an old code and roblox studio changed things around. For example “open” should be equal to something in order for the box to open
@httyd_jax8975
@httyd_jax8975 2 месяца назад
i’ve double and triple checked but the proximity prompt with the rig won’t open the shop.
@mariad404
@mariad404 8 месяцев назад
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!
@onfirerobloxscripting
@onfirerobloxscripting 7 месяцев назад
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.
@rossangelomacayran4995
@rossangelomacayran4995 3 месяца назад
what about the exit button?
@onfirerobloxscripting
@onfirerobloxscripting 3 месяца назад
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.
@RetroStarYtube
@RetroStarYtube 4 месяца назад
Hey, there are no script errors, but I did the proximity prompt script, and it's not opening. Please help, OnFirerobloxscripting. PLEASE. 🙏
@onfirerobloxscripting
@onfirerobloxscripting 3 месяца назад
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.
@RetroStarYtube
@RetroStarYtube 3 месяца назад
Nvm I did the touchpad and it worked thx for helping though :D
@BOKUyugo12
@BOKUyugo12 22 дня назад
it dont work for mouse click idk why
@EzoPlayerS
@EzoPlayerS 8 месяцев назад
ur voice changed 180* degrees wow
@Jmeebo25
@Jmeebo25 10 дней назад
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)
@PieOffical-yt
@PieOffical-yt 5 месяцев назад
Shop did not work.1 I cant change background color 2. I cant make the shop invisible. PLEASE HELP😭
@RadiatorZ11
@RadiatorZ11 8 месяцев назад
Hey man 😮😊
@onfirerobloxscripting
@onfirerobloxscripting 8 месяцев назад
Hii
@vershermy6106
@vershermy6106 7 месяцев назад
you sound so older now :D
@vershermy6106
@vershermy6106 7 месяцев назад
how to add gamepasses to ur shop?
@onfirerobloxscripting
@onfirerobloxscripting 7 месяцев назад
This tutorial won't show how to add that, but I could maybe make a spin off/ another tutorial for that in the future!
@bananasuitz_ooftheuncoolman
@bananasuitz_ooftheuncoolman 4 месяца назад
i cant find unit conversion
@onfirerobloxscripting
@onfirerobloxscripting 3 месяца назад
It should be under the plugin tab after you have gotten the plugin
@bananasuitz_ooftheuncoolman
@bananasuitz_ooftheuncoolman 3 месяца назад
@@onfirerobloxscripting thanks
@BestBuds4evr
@BestBuds4evr 5 месяцев назад
proximity prompt script --//Variables local prox = script.Parent local remoteEvent = game.ReplicatedStorage:WaitForChild("OpenShop") --//Open prox.Triggered:Connect(function(player) remoteEvent:FireClient(player) end) shop button handler --//Variables local remoteEvent = game.ReplicatedStorage:WaitForChild("OpenShop") local shop = script.Parent.ShopFrame local exit = shop.Exit --//Open remoteEvent.OnClientEvent:Connect(function() shop.Visible = true end) --//Close exit.MouseButton1Click:Connect(function() shop.Visible = false end)
@giantbeanrider6677
@giantbeanrider6677 Месяц назад
im very confused, but i think this helps?
@eddymetzker
@eddymetzker 4 месяца назад
bad tutorial, i cant get the plugin, and it doesent work in game
@Tuckerdog339
@Tuckerdog339 Месяц назад
It works for me do the scripting again
Далее
How to Make a Working Shop in Roblox Studio! (Part 2)
21:11
I Paid Fiverr Game Developers to Make the Same Game
10:25
skibidi toilet 77 (part 4)
05:20
Просмотров 14 млн
Always Help the Needy
00:28
Просмотров 9 млн
Can I Make a VIRAL Roblox Game in 1 Hour?
15:16
Просмотров 6 млн
So I tried to make a game with AI
15:31
Просмотров 18 тыс.
The Most Impressive Scratch Projects
11:00
Просмотров 5 млн
How to make a Tool Shop Gui in ROBLOX Studio
13:16
Просмотров 434 тыс.
Roblox's The Haunt Sucks
8:06
Просмотров 113 тыс.
New to Studio? Get These FREE Plugins!
9:40
Просмотров 443 тыс.
Can 6 DEVS Make a HORROR Game Without Communicating?
9:55
DON'T Make a Roblox Game Without Watching This First.
27:20