Part that makes some text pop-up | ROBLOX STUDIO [EZ]

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ม.ค. 2025

ความคิดเห็น • 339

  • @bookedsam
    @bookedsam  ปีที่แล้ว +25

    Please watch the new video and post a comment there if it is not working correctly. th-cam.com/video/uz8eOOX7ga8/w-d-xo.html
    You can get the code at: pastebin.com/8R6aaJrq
    To make multiple, just copy the part (DO NOT COPY THE SCREENGUI. JUST THE PART AND THE SCRIPT INSIDE IT)
    If you are having trouble, please watch the new video which goes into more detail: th-cam.com/video/uz8eOOX7ga8/w-d-xo.html

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

      the last link is private

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

      its private?

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

      @@bookedsam dude UNPRIVATE IT?? WHY ARE U HEARTING IT

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

      @@bookedsam dude.. unprivate rhe video

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

      Dude.. unprivate it.

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

    at first i struggled to make it worl because of the names, but i was able to make it work. thanks!

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

    I was looking for this tutorial the whole day! Thank you so much!!!

  • @GlitchVR7
    @GlitchVR7 6 หลายเดือนก่อน +21

    For people who have the error: "Popup is not a valid member of PlayerGUI", Just rename the ScreenGUI to Popup

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

      it's not working Popup is not a valid member of PlayerGui "Players.zeedan29_lol.PlayerGui"

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

      i have the error "fade is not a valid member of textlabel, but when i put it in my text, it says it isn't a part of screengui. how do i fix this?

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

      @@passiveaggressive_ im pretty sure put fade into text label and then put text label into screengui im not sure tho is been a long time

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

      @@GlitchVR7 the textlabel is in screengui already though

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

      @@passiveaggressive_ i have no idea then im sorry

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

    or a simple one if you dont want to copy
    make a text show up in the gui and make it not visible and then put a local script in it and you have to type this in the local script
    local text = script.Parent -- the text label location
    local part = workspacae.(your part name) -- part location
    part.Touched:Connect(function(hit)
    if hit.Parent:FindFirstChild("Humanoid") then -- checks if the one who touched is a player
    text.Visible = true --makes the text show up
    wait({how much seconds you want before the text is invisible})
    text.Visible = false --makes the text invisible
    end
    end)
    tell me if there is any bug

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

    If you guys wants to make the text only appears once (one time) copy this scripts in the "Information" Script
    local debounce = false
    local text = "TEST" --Change that text but make sure to not delete the quotations
    script.Parent.Touched:Connect(function(hit)
    if debounce == false then
    debounce = true
    if hit.Parent:FindFirstChild("Humanoid") then
    local character = hit.Parent
    local player = game.Players:GetPlayerFromCharacter(character)
    local playergui = player:WaitForChild("PlayerGui")
    local textbox = playergui.Popup.Text
    textbox.Text = text
    textbox.Fade:FireClient(player)
    end
    wait(9999)
    debounce = false
    end
    end)

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

    tysm!!! such an underrated channel!

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

      fr fr

  • @bookedsam
    @bookedsam  ปีที่แล้ว +4

    I AM GOING TO REMAKE THIS TUTORIAL WITH VOICE AND A DEBUGGING GUIDE.

    • @ZeptixOfficial2
      @ZeptixOfficial2 ปีที่แล้ว +1

      Epic, I’ll make sure to watch it :)

  • @notsnepsi
    @notsnepsi ปีที่แล้ว +5

    heavily underrated, thanks my guy

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

    This is great perfect video thanks!

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

    this works amazingly tysm

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

    i hope this works! thanks if it does! very underrated

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

    if you want the ui to only show once, make the trigger destroy when you touch it

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

    Works great!

  • @fredwijmer907
    @fredwijmer907 ปีที่แล้ว +1

    It works! U deserve a sub ;)

  • @ThreeStarsRBLX
    @ThreeStarsRBLX 21 วันที่ผ่านมา +4

    Yo mine doesn’t work and I’m wonder what the part simply titles “popup” is even for as it was there before the video started and has no reason for it!?! Is that why mine doesn’t work!?! Am I missing something!?!
    I’m 100% positive I’ve done everything right

  • @NoviceGrub
    @NoviceGrub ปีที่แล้ว +3

    I LOVE YOU SO MUCH TYSM

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      Thank you!

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      I have made an updated version of the script, if you have had any errors this may fix it. Find it in the pinned comment

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

      How can it be one time ?​@@bookedsam

  • @INEVITABLE_FATE
    @INEVITABLE_FATE ปีที่แล้ว +3

    Omg tysm :o

  • @ab4cxt823
    @ab4cxt823 ปีที่แล้ว +3

    It didn't work for me, the text shows but it isn't the text i put. It just says ''Insert Text Here'' instead of the text i wanted. How do i fix this?

    • @bookedsam
      @bookedsam  ปีที่แล้ว +2

      Look in the "information" script. Near the top, between the speech marks, put the text you want

    • @ab4cxt823
      @ab4cxt823 ปีที่แล้ว +2

      @@bookedsam thank you it works now :)

    • @clumsymorgie
      @clumsymorgie ปีที่แล้ว +1

      what do you mean look in it, look in it on your video or in my studio because its not in there for me in my studio@@bookedsam

    • @bookedsam
      @bookedsam  ปีที่แล้ว

      @@clumsymorgie In studio, if you copied it correctly

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

    this is not working for me at all when i walk on the brick its now showing anything i copied eeverything correctly

  • @oofy7633
    @oofy7633 ปีที่แล้ว +7

    Thanks for the tutorial. Question how do you make it a one time trigger?

    • @cvrswQ
      @cvrswQ ปีที่แล้ว

      it is a one time trigger

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

      you can do a destroy line

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

      @@mnkymndn how do i do that?

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

      @@jertsu4787 to destroy the part

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

      @@jertsu4787 just do script:Destroy() or script:destroy() if its case sensitive

  • @tinglytangomango
    @tinglytangomango ปีที่แล้ว +5

    so basically i want it so everytime a person picks up a coin, it will pop up on their screen they got like '+1 speed', i followed this tutorial and it helped a lot so thank you but i want to know how i can make it so if they picked another coin up like a second later or whatever, the '+1 speed' text will be below the one that was originally there from the coin they they picked up before. idk if that makes sense im bad at explain but if you could help me that would be great thanks.

    • @bookedsam
      @bookedsam  ปีที่แล้ว +3

      I have posted an updated version, find it in my reply to the pinned comment

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

      @@bookedsam It is Private

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

      can u stop h earting comments that explicitly say "its private" and actuall unprivate it

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

    can you create a tutorial on how to make it so that when you touch a block, a sound plays, and below there's text, simulating a movie-style voiceover? For instance, the audio saying 'hello, how are you?' and having the corresponding subtitle below.

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

      id love to know that to

  • @thepandathing1343
    @thepandathing1343 ปีที่แล้ว +3

    This did not work for me (I did use the updated script). The error message I am getting says "Information is not a valid member of PlayerGui". I noticed you had a ScreenGui named Information, is this related to the issue?

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      Thankyou for pointing this out, I realised the code I provided was trying to find a GUI called "Information" when it was actually meant to find one called "TextPopup". I have fixed it now

    • @Chris-n4n2r
      @Chris-n4n2r 8 หลายเดือนก่อน

      Same😅

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

    I kinda needed this for my cutscene. But, I need it multiple of them, and I need them to say more than one text label.

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

    Thank you for the vid🫶🏻

  • @prodcolaa
    @prodcolaa ปีที่แล้ว +1

    Thank you so much🙏

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      Your welcome 😃

  • @Evan-creations-e7e
    @Evan-creations-e7e 2 วันที่ผ่านมา

    Can you make a video about how to make audio and text pop-up?

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

    One question , can you make the text changes whenever it touches more than 1 time?

  • @zakuwoX
    @zakuwoX ปีที่แล้ว +2

    Is there any way to put a sound to this?
    So when they touch the part It will trigger the script with the sound and It will play when you touch to it

    • @bookedsam
      @bookedsam  ปีที่แล้ว +2

      Do you want the sound to only be heard by the player or, for it to come from the part?

    • @zakuwoX
      @zakuwoX ปีที่แล้ว +2

      @@bookedsam When the player touches the part the sound will start playing

    • @bookedsam
      @bookedsam  ปีที่แล้ว +2

      @@zakuwoX Let me rephrase my question: Do you want only the player that touched the part to hear it or do you want the part to act as a speaker for everyone to hear

    • @ZeptixOfficial2
      @ZeptixOfficial2 ปีที่แล้ว +1

      ⁠@@bookedsam To only be heard by the player please

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      I have posted an updated version, find it in my reply to the pinned comment

  • @internetuser6444
    @internetuser6444 4 วันที่ผ่านมา +1

    mine just doesnt work theres no error or anything coming up but everytime i walk over the block it just does nothing

    • @bookedsam
      @bookedsam  4 วันที่ผ่านมา +1

      @@internetuser6444 If there's no error in the console, check if you have set the text to something.

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

    If we touch the part quickly, the text is distorted. how can i fix this?

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

    I did it step by step and when i stepped on the block it didnt do the text

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

    is there a way to keep background transparency on the text label? i want the gui to look like the death text in dark souls if possible.

  • @Sinister_MoHeck
    @Sinister_MoHeck ปีที่แล้ว +5

    Hey, Awesome tutorial, i have a question.. How do you make it so it appears once on the part and when you walk it wont appear, but when you retouch the part it appears again for only 1 time?

    • @NTSA-ox6fg
      @NTSA-ox6fg ปีที่แล้ว +3

      You can use the :Destroy event (Not a event i just forgot the name 💀) so after the player touches it detroys

    • @Sinister_MoHeck
      @Sinister_MoHeck ปีที่แล้ว +3

      alr ty!@@NTSA-ox6fg

    • @R3c0iI
      @R3c0iI ปีที่แล้ว +2

      @@Sinister_MoHeck In the information script you can change the last debounce to true

    • @NTSA-ox6fg
      @NTSA-ox6fg ปีที่แล้ว +2

      @@Sinister_MoHeck 👍

    • @Sinister_MoHeck
      @Sinister_MoHeck ปีที่แล้ว +2

      Thank you, im tryna make a game which when you enetr a biome it sais the name then fades out heh@@R3c0iI

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

    worked! any way to make it play a sound, and can i just copy n paste and then change text so i can use it in diff levels?
    edit: yes copying n pasting then changing properly works!

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

    THANK YOU BROTHER!

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

    it doesn't pop up at all for me

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

    thanks dude :D

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

    hey im a bit late, i did everything right but it dosent work? they are all local scripts and are in the same spots, i also put the fader and fader local script in the text label, what am i doing wrong?

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

      The information script must be a normal script. If it still doesn't work check out the more in-depth tutorial here: th-cam.com/video/uz8eOOX7ga8/w-d-xo.html

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

      @@bookedsam thanks

  • @blastfull3793
    @blastfull3793 ปีที่แล้ว +2

    How do you make it to like when you go over it again it wont pop up i just want the text to be only 1 time to show up then done
    please help - BlastFull_s

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

    You can also put the scripts on the description of the video not an another website.

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

      @@SMIL3Y-SM TH-cam blocks some symbols which breaks the script if I do so

  • @buildersz
    @buildersz ปีที่แล้ว +7

    Add this onto the end of both scripts, so it will work every time you walk on it; instead of just the first time..
    wait(5)

    script.Enabled = false
    wait(0.1)
    script.Enabled = true

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      The updated version fixes this

    • @buildersz
      @buildersz ปีที่แล้ว +1

      Oh. Anyways, this also works, also thanks for this tutorial because im using it for a very demanding project.@@bookedsam

    • @jakubchloe
      @jakubchloe ปีที่แล้ว +2

      ​@@bookedsamhow do I make it so the text comes when I press thr block

    • @buildersz
      @buildersz ปีที่แล้ว +1

      @@jakubchloe Change like it to workspace.(changetoclickdetector).MouseClick:Connect(function()
      then do some of the other code

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

    Thank you so much

  • @croisei
    @croisei ปีที่แล้ว +2

    it work at first but in the second part it won't work, I need help🙁

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      Check out the new tutorial!
      th-cam.com/video/uz8eOOX7ga8/w-d-xo.html

  • @Nedimmss
    @Nedimmss ปีที่แล้ว +1

    how do i make if a ball touches the part to change the gui text im makimg a football game(can u help me)

  • @mathiashansen2424
    @mathiashansen2424 ปีที่แล้ว +1

    Nice!. But i want it to appear once and not spam the text everytime you move. so maybe if i can make a custom cooldown?.

    • @bookedsam
      @bookedsam  ปีที่แล้ว +2

      It includes a 2 second cooldown, you can modify it by changing the "wait(2)" in the "information" script

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

    can you make a code when a player uses an item/gear it will make text pop up and fade aswell and where to put a script and how to make the gear thank you!!

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

    hey, is the fader part of the script (in the pinned comment) supposed to be in the parts' script or in the gui's?

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

      The fader script is for the GUI

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

      so where does the other script go?

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

      @@bookedsam also, if the part is a model, will it work?

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

      @@ratongamez Watch the updated version in the pinned comment if you need more help

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

    IF IT DOSENT WORK CHANGE PopUp TO Popup

  • @mxteuss
    @mxteuss ปีที่แล้ว +1

    Hey! Nice tutorial you have here! But, how can i add images to the popup? (eg: the text and the images fade in and then they fade out).

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

      no

    • @Letochka-7
      @Letochka-7 6 หลายเดือนก่อน

      It is possible, If you know scripting :)

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

    Hey instead of Text i was wondering if you knew a script on how to add a fade in effect onto a frame / blank screen?

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

      Change transparency and texttransparency to BackgroundTransparency in the fader script

  • @brorealmc2
    @brorealmc2 7 วันที่ผ่านมา +1

    i cant make more then one popup please help? nothing shows up in the second one but the original one works please reply

  • @NotLT_HoundFr
    @NotLT_HoundFr ปีที่แล้ว +1

    for me it dony fade out for sm reason

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

    can you make a proximity promt one ? iam trying to do custom doors paintings

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

      @@pepazdepa-hc3tv Yes you can.

    • @Netizen-i8e
      @Netizen-i8e หลายเดือนก่อน +1

      @@bookedsamYo I think he was asking you to make a tutorial lol

  • @Strongmann1_2
    @Strongmann1_2 ปีที่แล้ว +9

    How do I make it play once?

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

      um this is really late but just put script.Enabled = false in the next line after textbox.Fade:FireClient(player)

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

    make a tutorial "part that makes sound" PLZZ I NEED IT :

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

      Thankyou for the video idea

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

      @@bookedsam no problem but why is it not working

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

      local Debaunce = false
      local Part = script.parent
      local Sound =script.parent.sound
      Part.Touched:Connect(funktion(hit)
      if Debounce == false then debaunce = true
      if hit.parent:FindFirstChild("Humanoid") then
      sound:Play()
      end
      wait(2)
      Debaunce = true
      end

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

      @@The_IntruderI make sure function and denounce are spelt correctly for this to work

  • @person28199
    @person28199 ปีที่แล้ว +1

    I wanted this text to show on multiple parts of the game for my horror game, so I basically duplicated the touch part and then changed the text. Am I allowed to do that? Also, I have this glitch where sometimes it pops up and other times it doesn’t. What should I do?

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

      i have the same problem

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

    is there a way to make this popup only appear once per life or add a cooldown to the text popup?

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

    it shows the text inmiddetaly for me and wont go away, what did i do wrong?

  • @LiminalTranquility
    @LiminalTranquility 20 วันที่ผ่านมา +1

    For some reason I can’t see the copy and paste script, if you are seeing this could you post it in the replies?

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

    how to make it pop out only once?

  • @สายบัวลบไพลิน-ค2ถ
    @สายบัวลบไพลิน-ค2ถ 7 หลายเดือนก่อน +1

    Why it not work for me alone 😭😭😭😭😭😭😭😭😭😭😭😭

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

      Please read the pinned comment in full

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

    i tried to add in a background + a ui corner to make the text seem better, but the background shows when the text isnt activated and disappears when the text is activated, how do i fix it??

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

    hey, how do i make it say like: one text, 5 secs later another text

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

    hey so, i want something like this, but it pops up randomly with random text, i got the whole random text thing down, but i don't know how to make it pop up randomly, any tips? (no trigger block)

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

      While true do
      script.Parent.TextLabel.Text = (Put the random text variable here)
      wait(math.random(10,15)
      script.Parent.TextLabel.TextTransparency = 0
      wait(1)
      script.Parent.TextLabel.TextTransparency = 1
      End
      End

  • @SpiritPlanes
    @SpiritPlanes ปีที่แล้ว +2

    for anyone making a game where you cant jump and ur part is at a high place just use click detectors i'll put the script when i test it
    edit:nvm it aint possible

  • @bookedsam
    @bookedsam  ปีที่แล้ว +8

    The "Fader" script is below:
    local FadeIn = script.Parent.Fade --change the fade if your event doesn't have the same name
    local fader = 0
    local debounce = false
    FadeIn.OnClientEvent:Connect(function(txt)
    if debounce == false then
    debounce = true
    script.Parent.Transparency = 1
    fader = 0
    while fader < 21 do
    script.Parent.TextTransparency -= 0.05
    fader += 1
    wait()
    end

    fader = 0
    wait(2)
    while fader < 21 do
    script.Parent.TextTransparency += 0.05
    fader += 1
    wait()
    end

    script.Parent.Transparency = 1
    wait(1)
    debounce = false

    end

    debounce = false

    end)
    The "Information" script is below [I HAVE FIXED IT AND NOW YOU DONT NEED TO MODIFY IT HOPEFULLY]:
    local debounce = false
    local text = "Insert text here" --Change that text
    script.Parent.Touched:Connect(function(hit)
    if debounce == false then
    debounce = true
    if hit.Parent:FindFirstChild("Humanoid") then
    local character = hit.Parent
    local player = game.Players:GetPlayerFromCharacter(character)
    local playergui = player:WaitForChild("PlayerGui")
    local textbox = playergui.TextPopup.Text
    textbox.Text = text
    textbox.Fade:FireClient(player) --Change the fade if your event doesnt have the same name
    end
    wait(2)
    debounce = false
    end
    end)

    • @BigMeow_Roblox
      @BigMeow_Roblox ปีที่แล้ว +1

      so low views, its cool video for me. Thanks! I think you get 100k subs;)

    • @bookedsam
      @bookedsam  ปีที่แล้ว +2

      @@BigMeow_Roblox Thankyou 😃

    • @bookedsam
      @bookedsam  ปีที่แล้ว +2

      The "Fader" script is below:
      local FadeIn = script.Parent.Fade --change the fade if your event doesn't have the same name
      local fader = 0
      local debounce = false
      FadeIn.OnClientEvent:Connect(function(txt)
      if debounce == false then
      debounce = true
      script.Parent.Transparency = 1
      fader = 0
      while fader < 21 do
      script.Parent.TextTransparency -= 0.05
      fader += 1
      wait()
      end

      fader = 0
      wait(2)
      while fader < 21 do
      script.Parent.TextTransparency += 0.05
      fader += 1
      wait()
      end

      script.Parent.Transparency = 1
      wait(1)
      debounce = false

      end

      debounce = false

      end)
      The "Information" script is below [I HAVE FIXED IT AND NOW YOU DONT NEED TO MODIFY IT HOPEFULLY]:
      local debounce = false
      local text = "Insert text here" --Insert text here
      script.Parent.Touched:Connect(function(hit)
      if debounce == false then
      debounce = true
      if hit.Parent:FindFirstChild("Humanoid") then
      local character = hit.Parent
      local player = game.Players:GetPlayerFromCharacter(character)
      local playergui = player:WaitForChild("PlayerGui")
      local textbox = playergui.TextPopup.Text
      textbox.Text = text
      textbox.Fade:FireClient(player) --Change the fade if your event doesnt have the same name
      end
      wait(2)
      debounce = false
      end
      end)

    • @bookedsam
      @bookedsam  ปีที่แล้ว +3

      Make sure your screengui is called "TextPopup" with the same capital letters, spelling and no spaces.

    • @liqht477
      @liqht477 ปีที่แล้ว +1

      you are a legend bro thanks so much@@bookedsam

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

    how do you get rid of the background on the text like the white background

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

      change backgroundtransparency in properties to 1

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

      @@bookedsam yeah I found that out like right after I said it :D

  • @BearlyWarm
    @BearlyWarm ปีที่แล้ว +1

    Hey how do i make when a player touches it, it shows the text but when he touches again it wont show the text
    @bookedsam

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      I think I fixed this by changing one of the debounces in the "information" script. I will update the scripts in the video when I am able too

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      I have posted an updated version, find it in my reply to the pinned comment

  • @Normally2
    @Normally2 ปีที่แล้ว +1

    i just want the pop up to show on spawnnnnnnnnnnnnnn

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      Place the TextPopup part on the spawn location

    • @Normally2
      @Normally2 ปีที่แล้ว +1

      bet@@bookedsam

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

    hi, i did everything right from the video but cant still see my text, can someone help?

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

      Watch the updated version in the pinned comment

  • @Ionn_Crystal
    @Ionn_Crystal ปีที่แล้ว +1

    i love this! it works but there is one problem: *i want multiple of these popup parts in an area. i tried making a 2nd one but failed to do so. can you give me some info on how to make this work?*

    • @bookedsam
      @bookedsam  ปีที่แล้ว +2

      Duplicate the original one and rename it (eg. TextPopup2) You can then change the text as you like and it should work.
      Make sure you are using the updated script and, the popups aren't too close (otherwise one won't be finished as you walk over the second)
      You don't need to duplicate any of the faders or screen GUIs. Just the part (and it's script) in the workspace

    • @person28199
      @person28199 ปีที่แล้ว +1

      @@bookedsamyeah, so sometimes the gui pops up, and other times it doesn’t for some reason and I don’t know what’s going on

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      @@person28199 are there any errors in the output?

    • @person28199
      @person28199 ปีที่แล้ว +1

      @@bookedsamsometimes when I go through it, nothing will pop up so I have to walk through it again which then triggers the text for some reason. Yeah there doesn’t seem to be any errors though

    • @croisei
      @croisei ปีที่แล้ว +1

      its still not working:(@@bookedsam

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

    most under complicated script tutorial:

  • @14nicholo6
    @14nicholo6 ปีที่แล้ว +1

    hi i am so sorry to bother but i tried it and it didnt work. even when i fixed my mistakes it still didnt pop up. i used an invisible wall from the toolbox and put in the 'information' script and copied the same script but it still didnt work. i did the same thing step by step and it still didnt work. how?

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      Make sure the invisible wall has "CanTouch" on
      You can find it in the properties tab when the part is selected

  • @dynahzm
    @dynahzm ปีที่แล้ว +1

    can u make a less complicated so when any player touches it it displays any text im making golf game demo

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      What do you mean so it displays any text? It can already display whatever you like

  • @mullermagic.bayern
    @mullermagic.bayern ปีที่แล้ว +2

    I did everything like in the Video, but it dint work. I tried other Tutorials, did not work either. maybe I missed something? a little help would be helpful.

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      Did you get any error in the output?

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

    Why it isnt working for me

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

    its not poping up

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

      Read the pinned comment

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

    why does it not work i did the names and everything Bruh

  • @l44rry_0
    @l44rry_0 ปีที่แล้ว +1

    im still a beginner in lua and im wondering how to make it with a click detector? like the text appears when you click the part

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      You will have to add a click detector into the part and then change the touched function in the "information" script.
      You just have to fire the function inside the player's gui sending (player). The "(player)" is a variable that simply leads to the player in the "players" tab on explorer

    • @l44rry_0
      @l44rry_0 ปีที่แล้ว +1

      thank you for helping me but i need help on something how do you find the parent of hit? like from your script "local player = hit.parent" but since im using a click detector i dont know how to find the parent (im sorry if my english is bad) @@bookedsam

  • @plainlegend9054
    @plainlegend9054 ปีที่แล้ว +2

    how do i make this appear on everyones screen

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      You could use the "for i, v in pairs()" loop to make this appear on everyone's screen however this can be quite difficult.
      Otherwise, you might want to look at another tutorial for something like that

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

    is there any script to make the pop-up appear one time?

  • @Nedimmss
    @Nedimmss ปีที่แล้ว +1

    hoe do i make if the ball touches the part the gui text changes i really need an answer

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      You could change the hit detector to check if the object is a ball instead of a player

    • @Nedimmss
      @Nedimmss ปีที่แล้ว +1

      where is that?@@bookedsam

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      In the code@@Nedimmss

  • @mrlizard7609
    @mrlizard7609 ปีที่แล้ว +1

    it didnt work for me can u help me please?

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      Did you paste the code directly from the description? If so, use the code in the pinned comment - it is ready for immediate use

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      I have posted an updated version, find it in my reply to the pinned comment

    • @zzoom3541
      @zzoom3541 ปีที่แล้ว +1

      used the new code and it didnt work@@bookedsam

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      @@zzoom3541 Make sure that everything is named correctly. If that didn't work, tell me the error in the output (you can open it in Roblox studio by going to the topbar and enabling it in the view tab)

    • @zzoom3541
      @zzoom3541 ปีที่แล้ว +1

      got it to work now but used the first script, not the reuploaded version since the reuploaded version didnt seem to work for me@@bookedsam

  • @GreenBoiy
    @GreenBoiy ปีที่แล้ว +1

    I hope I’m not stupid but what’s the left arrow again?

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      Use the one in the comments

  • @FireFTI
    @FireFTI ปีที่แล้ว +2

    How can I make it so when the part is touched, the gui pops up on everyone in the severed screen?

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

    I retried this over and over again, but it wont work, do you think the code is outdated?

  • @doodlebebjoe6447
    @doodlebebjoe6447 ปีที่แล้ว +1

    Need help I tried to follow along but it isn’t showing up

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      Are there any errors in the console? To find out, you can open the output in studio by pressing the "view" tab and then enabling it.

  • @lightzya8137
    @lightzya8137 ปีที่แล้ว +1

    Hey, I tried using the updated version thats in the comments but for some reason it didn't work. The original version worked but if I added anything to it, it would stop working. Im not seeing and errors in output nor in the script.

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      I'll investigate this

    • @lightzya8137
      @lightzya8137 ปีที่แล้ว +1

      @@bookedsam got it to work somehow. Closed studio, then the script magically started working the next day.

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

    when i finish i walked into the part but it didn't work.the text didnt show up.i watched the video 10 time to find the miskea but nothing i found out

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

      You've made a mistake in following the tutorial. I retested it recently and it works.

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

      change the PopUp to Popup

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

    how do you add sounds?

  • @itsjustchaos4415
    @itsjustchaos4415 ปีที่แล้ว +1

    I did it on a base baseplate first and it worked, but when I tried doing it in my game, it didnt. Why?

    • @bookedsam
      @bookedsam  ปีที่แล้ว +1

      Perhaps there are already objects with the same name? Are you getting any errors in the console?

  • @bookedsam
    @bookedsam  ปีที่แล้ว +1

    Want to see this script in a game? I feature this in my game here: www.roblox.com/games/12821057733/Sams-Simple-OBBY

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

    It shows all the time the part doesn’t do anything

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

      Make sure that there is the script in the part and the script in the screengui. Also, set the text transparency to 1

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

    is there a way to make this work with a proximity prompt?

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

      Yes, you could change the .touched event to when the prompt is triggered.

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

    Are you able to add decals to the pop up for this?

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

      You can change the text label to an image label and change the text transparency in the fader script to image transparency.

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

    Thanks

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

    I think the script is wrong I copied the 1st script and the second script in the fader did I do something wrong

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

    Thanks, but when it shows the text, it doesn’t go away like it doesn’t fade, you think you have a solution with it?