HOW TO MAKE A E TO OPEN A GUI 🛠️ Roblox Studio Tutorial

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

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

  • @ItsYeBird
    @ItsYeBird 8 месяцев назад +2

    Omg thanks! I stayed an hour to find a good tutorial that i can acctually understand and use!Thank you again!You do some very good tutorials!

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

    FLOPPY YOUR BEST! i love how you do every tutorials! not hard no speed up and so good!! you make everything so simple!!!!💖💖💖💖

  • @bernardogame_gamer_verde
    @bernardogame_gamer_verde 4 месяца назад +1

    Tysm man ur my favorite roblox studio youtuber

  • @epicogamero101
    @epicogamero101 4 месяца назад +1

    This works, I tried another video with lots more views BUT IT NEVER WORKED!! thank you for making best and easy tutorials

    • @Itz_FloppyFish
      @Itz_FloppyFish  4 месяца назад +1

      I’m so glad I was able to help out!

    • @WhatMeMega
      @WhatMeMega 2 месяца назад

      @@Itz_FloppyFishit works just with the frame, but with other Gui doesn't appear when i click E

    • @xenzerS
      @xenzerS 29 дней назад

      @@WhatMeMega yeah

  • @Austin-you-not
    @Austin-you-not 2 месяца назад

    My guy Floppy you're an absulute Legend everytime i need help bout a script you're there providing the copy paste and simple tutoring.

  • @STARBUSTENT
    @STARBUSTENT 17 часов назад +1

    Hi can i do the same with a scrolling Frame??

  • @QuilpzYT
    @QuilpzYT 6 месяцев назад +1

    THANK YOU SO MUCH SUCH A GOOD TUTORIAL

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

    Thank you so much! This helped me with my game.

  • @PokeMasterYT
    @PokeMasterYT 4 месяца назад +1

    This is great! I am just curious, how can I make it so that when I click E (and the GUI is open) it closes? By the way, keep up the good work!

  • @tinnybeanss
    @tinnybeanss Месяц назад

    THANK YOU SO S OS OS OSO MUCH THE OTHER TUTORIAL I COULD FIND WAS FROM 3 YEARS AGO AND DIDNT WORK!!!

  • @Vetri-xc2mi
    @Vetri-xc2mi 4 месяца назад

    thank you soo much i was having this problem for 2 months

  • @BikerBoy1209
    @BikerBoy1209 Год назад +3

    floppy can you make a tutrorial on how to make a working gui for a shop so if you buy something it gives the player the item permenantly

  • @8bitgaming913
    @8bitgaming913 4 месяца назад

    THANK YOU SO MUCH! One question, can you make a script where when you press E, the frame comes up with a fade in animation, and a fade out animation? (I’ll subscribe if u do)

  • @RobloxTheoristsOriginal
    @RobloxTheoristsOriginal Год назад +2

    hello floppy! can you make a tutorial of how to make a area only skybox that only changes for 1 player because i need it for my obby game!

  • @batbrush592
    @batbrush592 2 месяца назад

    How do I make a sound play when I open the GUI? The video is helpful, btw.

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

    oh my god bro i love you thanks so much

  • @metalprimer
    @metalprimer Месяц назад

    I have a problem with this script, when I put 2 of them on the map (I want "two books") either one works or neither of them gets "There are no repeated names or something similar" they just don't work

  • @xderek_x
    @xderek_x 7 месяцев назад +1

    Hi i have a weird question... Could you help me with my game I'm creating a roblox Horror game and i would need some help😅 I'm sorry to interrupt

  • @ZephyrVibes1
    @ZephyrVibes1 6 месяцев назад +4

    How are you people doing it? Mine is broke

  • @Official_HolidayAccelerator
    @Official_HolidayAccelerator 6 месяцев назад +1

    it only works once then when you try it again it dont any fixes?

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

    how do i add a second gui to this script: local ProximityPrompt = game.Workspace.YourPartName.ProximityPrompt -- Change "YourPartName" to the name of your part which has the Proximity Prompt
    local Gui = script.Parent.Frame --Your Gui which you want to open when someone triggers the Proximity Prompt
    (here like the same as above or not(if u are blind this is above: local Gui = script.Parent.Frame --Your Gui which you want to open when someone triggers the Proximity Prompt))
    ProximityPrompt.Triggered:Connect(function()
    Gui.Visible = true
    end)
    so instead of opening one gui it opens 2 gui when i press E
    somebody send help

  • @edgarcarlos2365
    @edgarcarlos2365 15 дней назад

    Thanks

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

    Hm maybe I can use that If I make a game

  • @brylleyt6975
    @brylleyt6975 Год назад +5

    Dang whenever i press the E the gui doesnt show up:/ i have been here sitting for hours and yet not a single tutorial even helped:///

    • @sunnyfk5371
      @sunnyfk5371 Год назад +5

      Make a RemoteEvent in ReplicatedStorage by pressing the plus button next to ReplicatedStorage, name it "OpenGuiEvent"
      Insert this script into a Script object that is a child of the SpecialPart in which you have placed the ProximityPrompt, remember to change "YourPartName" to the name of your part:
      local ProximityPrompt = game.Workspace.YourPartName:FindFirstChildOfClass("ProximityPrompt")
      local OpenGuiEvent = game.ReplicatedStorage.OpenGuiEvent -- The RemoteEvent used to open the GUI
      if ProximityPrompt then
      ProximityPrompt.Triggered:Connect(function(player)
      OpenGuiEvent:FireClient(player)
      end)
      else
      warn("ProximityPrompt not found in SpecialPart.")
      end
      Now, insert this script into a LocalScript object that is a child of the Gui you want to open when the ProximityPrompt is triggered, again, make sure you name the GUI names correctly:
      local Gui = script.Parent.YourFrameName -- Your Gui which you want to open when the OpenGuiEvent is fired
      local OpenGuiEvent = game.ReplicatedStorage.OpenGuiEvent -- The RemoteEvent used to open the GUI
      OpenGuiEvent.OnClientEvent:Connect(function()
      Gui.Visible = true
      end)
      Let me know if u have further questions

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

      Please create a ticket in my discord server and we can help you out

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

      Make sure it is big enough

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

      If it’s not then you won’t be able to interact with it

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

      Bro just replace it with this script@@sunnyfk5371
      local ProximityPrompt = game.Workspace:WaitForChild("YourPartName").ProximityPrompt -- Change "YourPartName" to the name of your part which has the Proximity Prompt
      local Gui = script.Parent.YourFrameName --Your Gui which you want to open when someone triggers the Proximity Prompt
      ProximityPrompt.Triggered:Connect(function(Player)
      Gui.Visible = true
      end)

  • @blobkingg
    @blobkingg 4 месяца назад +11

    It doesn't work... Edit: y’all need to stop fighting in the replies XD

  • @2LukasRBLX_YT
    @2LukasRBLX_YT 5 месяцев назад

    Thank you!

  • @yes.5110
    @yes.5110 Год назад +2

    how to make gui appear when you click on mannequin

  • @LegoPeely
    @LegoPeely 11 месяцев назад +1

    I tried this and it worked for a while but then it stopped showing up

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

    OOOMMMMGGGGGG THANK YOU

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

    can you make it so when you walk away lets say 5 studs it will make the gui not visible agan?

  • @titifazeli2578
    @titifazeli2578 2 месяца назад

    If it's not working for you just use this edited Local Script that you put in your ScreenGui:
    local ProximityPrompt = game.Workspace.YourPartName.ProximityPrompt -- Change "YourPartName" to the name of your part which has the Proximity Prompt
    local Frame = script.Parent.Frame --Your Gui which you want to open when someone triggers the Proximity Prompt
    ProximityPrompt.Triggered:Connect(function()
    Frame.Visible = true
    end)
    Thank me later if this works..

  • @TheOneTrueGamer-lw1pw
    @TheOneTrueGamer-lw1pw 3 месяца назад

    W vid :)

  • @Hayunxei
    @Hayunxei 2 месяца назад

    it doesnt work, i did step by step and it doesnt let me open at all.

  • @yourtypicalvita838
    @yourtypicalvita838 4 месяца назад

    and what if I want the proximity prompt inside of a model

  • @ACrayonPlayingVR
    @ACrayonPlayingVR Год назад +5

    nothings working, when i go to interact with the prompt the GUI doesn't open

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

      me too

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

      hare
      local ProximityPrompt= game.Workspace:WaitForChild:("YourNamePartHare").ProximityPrompt

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

      me too:(

    • @valdiviaFN
      @valdiviaFN 11 месяцев назад +1

      me too

    • @Rob3rt_YT
      @Rob3rt_YT 9 месяцев назад

      Me too :(

  • @F_robloxplays
    @F_robloxplays 2 месяца назад

    it doesnt work i go over to the block and it doesnt open the gui ;/

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

    sry i am on moms acc so if its not working then make sure that your Frame is not vis and your closebutton is vis

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

    Idk why, but when i did what you did it would not open.

    • @Itz_FloppyFish
      @Itz_FloppyFish  10 месяцев назад +2

      Please feel free to contact us on discord for some assistance.

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

    instead of just a frame gui can i also make it a imagegui?

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

      aslong the name is the same as in the script, yes

  • @BIG_T_0998
    @BIG_T_0998 4 месяца назад

    bro i spend hours testing and watching these videos an
    d they never work

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

    floppy, can you do if a whitelisted person says !gun the player will get an item called gun

  • @egorISidk
    @egorISidk 4 месяца назад

    How to make it appear on everyone's screen?

  • @damienang3954
    @damienang3954 2 месяца назад

    it work but why do i have to reset for it to work

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

    uhh can you give me a script that gos away 5 seconds when you hit e

  • @random-channel677
    @random-channel677 3 месяца назад

    the close button doesn't work :((

  • @jmjm3973
    @jmjm3973 4 месяца назад

    TY

  • @allwrecked
    @allwrecked Месяц назад

    tell me how to fix it it doesnt work

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

    it works the first time then when u rejoin it doesn't L tutorial

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

    why isnt this working? i keep checking my work over and over

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

      if you place your block in anything u must like that EXAMPLE world.bank.counter.block

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

    So if you Copy all Script from this video the canno't be work How you can Fix ------- local ProximityPrompt= game.Workspace:WaitForChild:("YourNamePartHare").ProximityPrompt

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

      ýou helped alot!

    • @OrcaGuyreal
      @OrcaGuyreal 11 месяцев назад

      THANKY YOU! I did this before but I had a bug with something else but then u did something and now my life is saved

    • @oof108
      @oof108 11 месяцев назад

      Your welcom:)@@OrcaGuyreal

    • @Claytainment16
      @Claytainment16 11 месяцев назад

      Just shows error

    • @oof108
      @oof108 11 месяцев назад

      hmm its so strange.. can i have your dirscord maybe i can help you!@@Claytainment16

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

    hehe funny sound at 2:30

  • @noobking6522
    @noobking6522 4 месяца назад

    It does not work for me

  • @Hws-01
    @Hws-01 Год назад +3

    I'm the third comment

  • @meme-hc9tm
    @meme-hc9tm Год назад +2

    why it did not work ?

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

      yea why:,(

    • @Guestallboard2
      @Guestallboard2 11 месяцев назад +1

      It will work if you reset then try again

    • @Kingcaliiiiii
      @Kingcaliiiiii 5 месяцев назад

      Name youre screengui "Gui" then its works

  • @KSPolar
    @KSPolar Год назад +3

    30th view..

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

    yes but i dont know how to put an image and prob look up a dif video

  • @Lokvie
    @Lokvie Год назад +2

    IF YOU WANT TO FIX THIS SCRIPT, THAT DOESNT WORK. READ:
    so the only thing that is broken inside of the script is the function(I believe that's what it is called) that he forgot to put in.
    FIX:
    COPY THIS
    -----------------------------------------------------------------------------------------------------------------------------------
    Script 1(Local Script, Screen Gui):
    local ProximityPrompt = game.Workspace:WaitForChild("YourPartName").ProximityPrompt -- Change "YourPartName" to the name of your part which has the Proximity Prompt
    local Gui = script.Parent.ElevatorFrame --Your Gui which you want to open when someone triggers the Proximity Prompt
    ProximityPrompt.Triggered:Connect(function(Player)
    Gui.Visible = true
    end)
    ------------------------------------------------------------------------------------------------------------------------------------
    He forgot to put ''Player'' inside of the function
    ProximityPrompt.Triggered:Connect(function()

    • @TheSquadsStudio12
      @TheSquadsStudio12 Год назад +2

      Thanks, It works, bro i was finding for mistakes like 5 days ( im not a npc/bot ok? bro wtf )

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

      @@TheSquadsStudio12 wdym npc/bot?

    • @oof108
      @oof108 11 месяцев назад +1

      @zombot5205 or hare

    • @TheSquadsStudio12
      @TheSquadsStudio12 11 месяцев назад +1

      like bot/npc commented " Thankyou so much, it helps a lot "@@Lokvie

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

      THANKS SO MUCH

  • @Musti-brawlstars
    @Musti-brawlstars 11 месяцев назад

    It doesnt pop up for me ive done everything the same but it just doesnt work

    • @Itz_FloppyFish
      @Itz_FloppyFish  11 месяцев назад

      Hi, Please feel free to contact us on discord and we can help out!

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

      local ProximityPrompt = game.Workspace:WaitForChild("YourPartName").ProximityPrompt -- Change "YourPartName" to the name of your part which has the Proximity Prompt
      local Gui = script.Parent.ElevatorFrame --Your Gui which you want to open when someone triggers the Proximity Prompt
      ProximityPrompt.Triggered:Connect(function(Player)
      Gui.Visible = true
      end)

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

      @@Guestallboard2 thank you so much now it works

  • @TacosDeBuche
    @TacosDeBuche 4 месяца назад

    it dont wort for me :(

  • @MelonHanlol
    @MelonHanlol 11 месяцев назад

    when i press e it opens but the close button isnt there anyone know how to fix it?

    • @fairieiz
      @fairieiz 11 месяцев назад +1

      make sure the close buttons visibility is on, but keep the frames visibility off

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

      @@neozim. no problem!! glad i could help

  • @CrimsonValleyPrison
    @CrimsonValleyPrison Месяц назад

    None ever work for me

  • @Kingcaliiiiii
    @Kingcaliiiiii 5 месяцев назад

    Name youre Screengui "Gui" then it works

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

      tysm bro you are the beast

  • @ImportedTime
    @ImportedTime 4 месяца назад

    Doesnt Work For Me

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

    didn't work :/

    • @sunnyfk5371
      @sunnyfk5371 Год назад +2

      Make a RemoteEvent in ReplicatedStorage by pressing the plus button next to ReplicatedStorage, name it "OpenGuiEvent"
      Insert this script into a Script object that is a child of the SpecialPart in which you have placed the ProximityPrompt, remember to change "YourPartName" to the name of your part:
      local ProximityPrompt = game.Workspace.YourPartName:FindFirstChildOfClass("ProximityPrompt")
      local OpenGuiEvent = game.ReplicatedStorage.OpenGuiEvent -- The RemoteEvent used to open the GUI
      if ProximityPrompt then
      ProximityPrompt.Triggered:Connect(function(player)
      OpenGuiEvent:FireClient(player)
      end)
      else
      warn("ProximityPrompt not found in SpecialPart.")
      end
      Now, insert this script into a LocalScript object that is a child of the Gui you want to open when the ProximityPrompt is triggered, again, make sure you name the GUI names correctly:
      local Gui = script.Parent.YourFrameName -- Your Gui which you want to open when the OpenGuiEvent is fired
      local OpenGuiEvent = game.ReplicatedStorage.OpenGuiEvent -- The RemoteEvent used to open the GUI
      OpenGuiEvent.OnClientEvent:Connect(function()
      Gui.Visible = true
      end)
      Let me know if u have further questions

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

      Please create a ticket in my discord server and we can help you out

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

      local ProximityPrompt = game.Workspace:WaitForChild:("YourNamePartHare").ProximityPrompt

  • @lol-fo8uz
    @lol-fo8uz 11 дней назад

    not work

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

    waaste of liife acts all cool with his "fluent accent" like "omg! im soo cool! my english is good!" yet bro cant even properly use english grammar as in the description and gives off the fake illusion through his "accent"

    • @BIG_WIGGLER
      @BIG_WIGGLER 5 месяцев назад

      You're talking about correct grammar, but you misspelt "waste" and you didn't even care to capitalize anything you said. Maybe correct your own mistakes before pointing out other people's. And clearly, your vocabulary must not be very good, because I don't think you've ever heard of the word "kindness".

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

    IT DIDNT WORK

  • @ripmittmailbossy8984
    @ripmittmailbossy8984 9 месяцев назад

    Dosent work

  • @PRINCE_GMC
    @PRINCE_GMC 2 месяца назад

    script works fine yall just to dumb to do it right