How to make a jumpscare in Roblox studio

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

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

  • @Gaming_Beef
    @Gaming_Beef  2 года назад +40

    Roblox studio has had an update since this video so to export your animation You need to do this: At 2:52 instead of clicking export after clicking on the 3 dots you just need to select publish to Roblox.

    • @l_spel5771
      @l_spel5771 2 года назад +1

      Ok

    • @jamestabequero4171
      @jamestabequero4171 2 года назад

      OK, and also, my accessories for the scare actor thing won't stay on, idk how to fix it.
      NVM

    • @StarLightFilmProductions
      @StarLightFilmProductions 2 года назад

      @Goober the youtuber ya mine didn’t ether but i don’t think it as to do with the script it has to be the model itself cuz for me it works it’s just that the model goes invisible

    • @isak8568
      @isak8568 2 года назад

      Ok

    • @sethjacobcaro2461
      @sethjacobcaro2461 2 года назад +1

      How doyou open the script

  • @Doovlie
    @Doovlie 2 года назад +126

    First script:
    script.Parent.Touched:Connect(function(hit)
    if hit and hit.Parent:FindFirstChild("Humanoid") then
    script.Parent:Destroy( )
    game.ReplicatedStorage.Jumpscare.Parent = game.Workspace
    wait(2)
    game.Workspace.Jumpscare.Parent = game.ReplicatedStorage
    end
    end)
    Second Script:
    Local Animation = script.Animation
    Local Humanoid = script.Parent.Humanoid
    Local AnimationClip = Humanoid:LoadAnimation(Animation)
    repeat wait() until game.Workspace:FindFirstChild("Trigger") == nil
    AnimationClip.Looped = false
    AnimationClip:Play()

    • @DeadLoxYT88
      @DeadLoxYT88 2 года назад

      what dat?

    • @johngross7336
      @johngross7336 2 года назад

      thanks

    • @devii5588
      @devii5588 2 года назад

      Bro local its not Local

    • @1why
      @1why 2 года назад +3

      First script:
      script.Parent.Touched:Connect(function(hit)
      if hit and hit.Parent:FindFirstChild("Humanoid") then
      script.Parent:Destroy( )
      game.ReplicatedStorage.Jumpscare.Parent = game.Workspace
      wait(2)
      game.Workspace.Jumpscare.Parent = game.ReplicatedStorage
      end
      end)
      Second Script:
      local Animation = script.Animation
      local Humanoid = script.Parent.Humanoid
      local AnimationClip = Humanoid:LoadAnimation(Animation)
      repeat wait() until game.Workspace:FindFirstChild("Trigger") == nil
      AnimationClip.Looped = false
      AnimationClip:Play()

    • @citavillestudio6
      @citavillestudio6 2 года назад

      ty you helped me:)

  • @fadinqwes8692
    @fadinqwes8692 2 года назад +28

    script.Parent.Touched:Connect(Function(hit)
    if hit and hit.parent:FindFirstChild("Humanoid") then
    script.Parent:Destroy()
    end
    end)

    • @lyynix8266
      @lyynix8266 2 года назад +1

      make sure to type function with a lowercase F or else it wont run

  • @ThatonePizzamaker
    @ThatonePizzamaker 2 года назад +7

    THANKS SO MUCH. I have looked for this so long for my game.

  • @RobloxBobloxsamething123
    @RobloxBobloxsamething123 Год назад +16

    for people who are lazy here:
    script.Parent.Touched:Connect(function(hit)
    if hit and hit.Parent:FindFirstChild("Humanoid") then
    script.Parent:Destroy()
    end
    end)
    second:
    local Animation = script.Animation
    local humanoid = script.Parent.Humanoid
    local animationClip = Humanoid:LoadAnimation(Animation)
    repeat wait() until game.Workspace:FindFirstChild("Trigger") == nil
    nimationClip.loops = false
    animationClip:play()

  • @deleted7083
    @deleted7083 2 года назад +73

    local Animation = script.Animation
    local Humanoid = script.Parent.Humanoid
    local AnimationClip = Humanoid:LoadAnimation(Animation)
    repeat wait() until game.Workspace:FindFirstChild("Trigger") == nil
    AnimtionClip.Looped = false
    AnimtionClip:Play()

    • @zenx_roblox9532
      @zenx_roblox9532 2 года назад +5

      Trigger Part script:
      script.Parent.Touched:Connect(function(hit)
      if hit and hit.Parent:FindFirstChild("Humanoid") then
      script.Parent:Destroy()
      game.ReplicatedStorage.Jumpscare.Parent = game.ReplicatedStorage
      end
      end)

    • @Icelandical_
      @Icelandical_ 2 года назад +1

      @@zenx_roblox9532 yayayayayayya

    • @Mintytree.
      @Mintytree. 2 года назад

      you spelled "Animation" wrong

  • @hx_rtk6677
    @hx_rtk6677 2 года назад +2

    tysmmm EVERYTHING WORKS YOU'RE THE BEST RUclipsR YOU GAINED A SUB

    • @hx_rtk6677
      @hx_rtk6677 2 года назад

      Can you please make a tutorial on falling jumpscare? Like if you touch a part it triggers and fan falls down...Pls

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

    Girl u explain it so well, this tutorial is fucking awesome i love this.

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

      Girl? I gotta change my avatar bro. Glad the tutorial helped.

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

      @@Gaming_Beef but it didnt really work, idk if i did SOMETHING wrong😭

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

    It kind of worked, but the animation doesn't play, the model just appears

  • @ronimations6722
    @ronimations6722 2 года назад +1

    tysm!! This really helps my bendy game in development

  • @iamyamz
    @iamyamz 2 года назад +16

    I'd recommend just cloning the script and then destroying the clone, that way the actual script itself never leaves where it needs to be, reducing the chance of an error.

    • @poppymetzger3721
      @poppymetzger3721 2 года назад +2

      how? wdym?

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

      @@poppymetzger3721 like this
      local clone = game.ReplicatedStorage.Jumpscare:Clone
      clone.Parent = game.workspace
      wait(1)
      game.workspace.Jumpscare:Destroy

  • @LosCriminalesInutiles
    @LosCriminalesInutiles 2 года назад +1

    Thankyou So much bro,this really helped me out.
    Heres a new sub

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

    Dude you are a hero! ive searched for 3 hours and coudnt find anything! You deserve 100k+ subs dude. Keep up the good work!

  • @rbstudios7420
    @rbstudios7420 2 года назад +7

    I never think any scripts I write myself are going to work. BUT OMG YOU JUST SAVED ME. THIS IS PERFECT FOR MY HORROR GAME TYSM I LOVE THIS VID KEEP UP AMAZING WORK DUDE TYSM
    Edit: my pc just died and I lost everything....
    EDIT: NO IT DIDNT TYSM I GOT LUCKY

  • @ToraeMoegiiro
    @ToraeMoegiiro 2 года назад +2

    omg!! it worked! thank you so much! in next video can you please make a jumpscare that happens on touch (like a jumpscare on death but you touch a part and it happens) its okay if you don't want to!

    • @Gaming_Beef
      @Gaming_Beef  2 года назад +2

      Thanks for the idea, I might do it in a future video.

  • @longestvideosever6624
    @longestvideosever6624 2 года назад

    this was helpful you deserve more subs!

  • @chowman117
    @chowman117 2 года назад

    this video is a frickin lifesaver thanks so much + subbed

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

    Thank you! Btw i was thinking about can you do a jumpacsre tutorial, like apeirophobia, doors, piggy. I mean the camera moves to the monster and the player gets killed

  • @kmineblox600z
    @kmineblox600z 2 года назад +1

    how tf do you only have 60 subs, go commit get 1,000,000 bruh you deserve it

  • @lame4458
    @lame4458 2 года назад

    Great job continue with the content and keep making the best videos u can

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

    Hey In 2023 I cannot find the tools please make an updated version, Thanks.

  • @kingrednoob5501
    @kingrednoob5501 2 года назад

    thx for this tutorial, it actually worked

  • @sponge9259
    @sponge9259 2 года назад

    THX! It really helped alot i subbed you

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

    hey man! i need your help now.I did the mechanisms and scripts in your video.But when i touch the trigger,it only shows the character but not the animation.
    Do you know whats the matter in here?

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

    Script:
    script.Parent.Touched:Connect(function(hit)
    if hit and hit.Parent:FindFirstChild("Humanoid") then
    script.Parent.Destroy()
    end
    end)

  • @PiggyBlox
    @PiggyBlox 2 года назад +1

    tysm bro it worked! you earned a new sub! also how do i make it play a sound?

    • @Gaming_Beef
      @Gaming_Beef  2 года назад

      To add sound to the jumpscare you need insert a sound into the script inside of the jumpscare model. Then change the name of the sound to "Sound". Then inside of the jumpscare's model script create a new line after line 8 (so you will be writing on line 9) and type "Script.Sound:Play()", you also might need to put a wait before the sound (on line 9 so "Script.Sound:Play()" is on line 10) if the sound plays to early.

    • @bersekerso2740
      @bersekerso2740 2 года назад

      @@Gaming_Beef yo ty i was searching how to add a sound to my jumpscare, helped a lot bru.

  • @relash4885
    @relash4885 2 года назад +22

    script.Parent.Touched:Connect(function(hit)
    if hit and hit.Parent:FindFirstChild("Humanoid") then
    script.Parent:Destroy()
    game.ReplicatedStorage.Jumpscare.Parent = game.Workspace
    wait(2)
    game.Workspace.Jumpscare.Parent = game.ReplicatedStorage
    end
    end)
    (script at 4:56)

    • @prod24583
      @prod24583 2 года назад +1

      thx :)

    • @notnalakaxd7258
      @notnalakaxd7258 2 года назад

      Thank you

    • @xbesyy
      @xbesyy 2 года назад

      script.Parent.Touched:Connect(function(hit)
      if hit and hit.parent:FindFirstChild("Humanoid") then
      script.Parent:Destroy()
      end
      end)
      it is this

    • @StarLightFilmProductions
      @StarLightFilmProductions 2 года назад

      So just copy all that down them make my monster then boom

  • @SpookerXG
    @SpookerXG 2 года назад +1

    Hello, just a little question, how can i add a sound for when the monster is appearing?

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

    great tutorial works perfectly!

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

    by any chance can you make a new video about how to make a jumpscare because I looked thru countless videos and I can't find one that actually works pls and thank you

  • @RedwiewOg
    @RedwiewOg 2 года назад

    This helped me a lot!

    • @Gaming_Beef
      @Gaming_Beef  2 года назад +1

      No problem, thanks for using my tutorial!

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

    we dont have to add remote event?? i didnt understand, its not working please help, how do i?

  • @PiggyBonkers0309
    @PiggyBonkers0309 2 года назад +6

    I tried Game M8s jumpscare tutorial 5 times but didn't work, this worked first try. Can guarantee It works! Perfect for my game :)

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

    Finally, something that works!

  • @Gustz_Lmao
    @Gustz_Lmao 2 года назад

    Very thanks it really helped!

  • @sassi_casi1837
    @sassi_casi1837 2 года назад +6

    Worked, useful and easy to follow. Moves at a nice pace and explains it well. Very useful, Definitely recommend using this. Although, I’ve tried duplicating them many times and I just can’t seem to remake them in the same ‘Place’. I’ve tried copy and pasting them, then fixing the scripts and animations, and even rewatching and re-doing it step by step. If you could add a way to duplicate them at the end of each tutorial, it would really help. Thanks.

    • @weston5146
      @weston5146 2 года назад

      i tried copying and pasting and somehow got multiple to work. it was really weird to get them to work but yea a tutorial would be awesome

  • @3RBY_1
    @3RBY_1 2 года назад

    man thx I like that can you do a more jumpscare

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

    what’s the plug-in called

  • @KK-cs8iq
    @KK-cs8iq 2 года назад +3

    Hi well, the jumpscare and everything worked but! I wanted this rig to move across the map but after it did move across the map it also moves back to the original place!
    I don't know if it "worked" but I tried to add a destroy but when it moves back to the original place it deletes it self

    • @PiggyBonkers0309
      @PiggyBonkers0309 2 года назад +1

      Same here!

    • @Gaming_Beef
      @Gaming_Beef  2 года назад +1

      To make a rig move across a map you need to just make the model path find between to locations and then disappear after reaching its set location. I understand that you may not be able to do this so I can do a tutorial on rig path finding in the future.

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

    How could I make it so the monster’s position is at the trigger? I have a random generating room thing and I’ve tried a few things but position or cframe are not a valid member of the jumpscare.

  • @Faddlesticks
    @Faddlesticks 2 года назад +2

    Every time I go onto the jumpscare, the NPC takes a while to load and the animation doesnt play. Then the NPC just stands there even after it has finished. I followed all the scripts and all that so I dont get why this is happening

    • @bleached4094
      @bleached4094 2 года назад

      same thing happened to me, the rig i have spawns, and unloads after a selected amount of time. the only problem is the animation doesn't play.

    • @toothcandle
      @toothcandle 2 года назад

      for me the player character that steps on the trigger plays the animation and not the npc

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

      Don't use local scripts

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

    By any chance could u tell me how do i make the rig fade out? Instead of just disappearing? Also great tutorial! Helped alot! Keep up the great work :D

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

      This is a pretty old comment, but to answer your question, there are multiple ways to achieve this, you can make the peak or jumpscare activate from a long distance so players aren't able to see when it disappears, or you could tween the transparency of individual parts of the rig. That's how I would personally go about it.

  • @Haanacho
    @Haanacho 2 года назад

    can u make another vid of adding sound to the jumpscare plz ty

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

    Those who are lazy like me:
    script.Parent.Touched:Connect(function(hit)
    if hit and hit.Parent:FindFirstChild("Humanoid") then
    script.Parent:Destroy()
    end
    end)

  • @bleached4094
    @bleached4094 2 года назад

    the animation doesnt play for me! So basically the rig i'm using is a blender rig i had made, and the animation is perfect, but it wont play, i inserted a humanoid into the rig but it still doesn't want to play the animation, i followed the video exactly the way you did it! (ps great video it was helpful :D , just stuck on one part)

    • @Daturtle722
      @Daturtle722 2 года назад

      this is also happening to me

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

    it work thank you so very much!

  • @jacksonmoore2193
    @jacksonmoore2193 2 года назад +1

    How do you make the NPC Disappear? I want to make it a little simpler where the NPC disappears when you touch a brick.

    • @Gaming_Beef
      @Gaming_Beef  2 года назад

      Follow the tutorial its all in there.

  • @pev1293
    @pev1293 2 года назад +2

    whats the plugin called that makes you able to load catalog items onto the character?

    • @Gaming_Beef
      @Gaming_Beef  2 года назад +2

      Go check out my other video "How to customize an NPC in Roblox studio". The plugin is linked in that video's description.

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

    There is a good plugin for animation only for 1000 Robux it does the job Amazing

  • @relash4885
    @relash4885 2 года назад +1

    local Animation = script.Animation
    local Humanoid = script.Parent.Humanoid
    local AnimationClip = Humanoid:LoadAnimation(Animation)
    repeat wait() until game.Workspace:FindFirstChild("Trigger") == nil
    AnimationClip.Looped = false
    AnimationClip:Play()
    (script at 4:14)

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

    the monster didnt disappear : (

  • @keyshasnow3320
    @keyshasnow3320 2 года назад +1

    Uhm- How do you add stuffs like those black thing in the monster's back?

    • @Gaming_Beef
      @Gaming_Beef  2 года назад +1

      Its very easy, go take a look at this tutorial to find out how "How to customize an NPC in Roblox studio" - ruclips.net/video/e7qu0ha6_IY/видео.html

    • @keyshasnow3320
      @keyshasnow3320 2 года назад +1

      @@Gaming_Beef Thank you! I'll give it a try!

  • @keizzimp774
    @keizzimp774 2 года назад

    local Animation = script.Animation
    local Humanoid = script.Parent.Humanoid
    local AnimationClip = Humanoid:LoadAnimation(Animation)
    repeat wait() until game.Workspace:FindFirstChild("trigger") == nil
    AnimationClip.Looped=false
    AnimationClip:Play()

  • @loft7166
    @loft7166 2 года назад +1

    The Trigger Should Be As Far as Possible Its Scariest This Way
    I Think Your Trigger Is Too Close To The Monster.

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

    Question, if I wanted to add a sound effect, what would I have to do?

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

      place a new script and put this down.
      script:
      local Played = false
      script.Parent.Touched:Connect(function(Hit)
      if Hit.Parent:FindFirstChild("Humanoid") and Played == false then
      local Player = game.Players:playerFromCharacter(Hit.Parent)
      local Sounds = game.ReplicatedStorage.Sound.HorrorSound:Clone() -- Put it to game.Workspace.SoundHere:Clone() --
      Sounds.Parent = Player.PlayerGui
      Sounds:Play()
      Played = true
      wait(3)
      Played = false
      end
      end)

  • @senron5876
    @senron5876 2 года назад

    I don’t know how to make an animation can I borrow your animation ID

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

    ur the best

  • @ejbanez7760
    @ejbanez7760 2 года назад

    Thank you so much!

  • @AdrolGaming
    @AdrolGaming 2 года назад

    Instead of it play once, how can i make it play everytime when i touch the trigger?

  • @hihihihihihihihihihlololol
    @hihihihihihihihihihlololol 2 года назад

    for some reason only the guides with around 100k views work only XD so i hope this works! edit: AYO IT WORKED LEGEND

    • @Gaming_Beef
      @Gaming_Beef  2 года назад

      All good, I promise that all of my tutorials work. I spend a good hour planning each video.

  • @stagethere
    @stagethere 2 года назад

    I’m making a horror game and this could help

  • @0josslynrose0
    @0josslynrose0 2 года назад

    i feel like earlier in the video you should have specified that it would be an animation, not a full jumpscare that takes up your screen, because i just wasted my time

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

    thank you i will keep this for games i will make in the future

  • @G-Boy-og
    @G-Boy-og 8 месяцев назад

    how do you make the monster only rotate instead of playing animation?

  • @NTSA-ox6fg
    @NTSA-ox6fg Год назад

    How could i make the npc kills the player, for example, after stepping on the trigger the jumpscares fires and the player dies? How can i do that?

  • @pcninja02
    @pcninja02 2 часа назад

    it doesnt work :( i typed and added all of that in and its wont pop up

  • @diankablash5770
    @diankablash5770 2 года назад +1

    local Animation = script.Animation
    local Humanoid = script.Parent.Humanoid

    local AnimationClip = Humanoid:LoadAnimation(Animation)

  • @huntertourvilleyt
    @huntertourvilleyt 2 года назад +7

    what if I want the jumpscare to be him walking across the hall in front of my and dissapearing when he gets on the other side cause it plays it forward but then it plays it backwards and I don't want him to walk backwards and forwards in front of the door

    • @Gaming_Beef
      @Gaming_Beef  2 года назад +2

      That is more complicated to do than this, to do it you will need to use the pathfinding service and make points to where you want your monster to go. I might make a tutorial explaining this in the future.

    • @maddenislifeperiod1600
      @maddenislifeperiod1600 2 года назад

      What about a bunzo jumpscare how do you do that

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

      yeah thnis is what i want

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

      Try making the animation but make sure it is NOT looped and have the ending of the animation him clipping into the ground

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

    Can you help me when I got the jump scare in robloxworkspace or what it was my jump scare character got invisible and I don’t know what to do

  • @JustAPersonWhoComments
    @JustAPersonWhoComments 2 года назад

    Good for the Backrooms…

  • @TroZeStickIsNub
    @TroZeStickIsNub 2 года назад

    THX DUDE!!!

  • @DeathMorethanlife
    @DeathMorethanlife 2 года назад

    Hey I need some help! I tried everything I redid the video more than 20 times but the animation is not playing everything else is working BUT the animation

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

    script: script.Parent.Touched:Connect(function(hit)
    if hit and hit.Parent:FindFirstChild("Humanoid") then
    script.Parent:Destroy()
    end
    end)

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

    everything works but the animation doesnt play when the jumpscare is triggered

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

    Can you collab me in my roblox studio? Please sir😢❤

  • @chonggary2570
    @chonggary2570 2 года назад

    Hey im TheNewKaiSen ( you might not remember me) on Roblox and I donated 5 robux on your game "AFK until someone donates 2500 rbx" and I was wondering if I could have my name on it since I was like the first 7 people to ever donate to your game

    • @Gaming_Beef
      @Gaming_Beef  2 года назад

      I remember you, stay tuned and I might give you your Robux back one day lol.

    • @chonggary2570
      @chonggary2570 2 года назад

      @@Gaming_Beef lol

  • @izyy2753
    @izyy2753 2 года назад +1

    can you put the model? i tried to fix it with my simple knowledge in scripting but still doesn't work even all the structures or spelling in scripts are corrects.

    • @Gaming_Beef
      @Gaming_Beef  2 года назад

      Try redoing the tutorial from the beginning.

  • @Rajeesh_23
    @Rajeesh_23 2 года назад

    2:51 “export” Wdym when I click the 3 dots I don’t have a export button do you mean import? Idk much about programming or computers but I don’t want to mess anything up by importing all I’m trying to do is make my game better with jumpscares.

    • @Gaming_Beef
      @Gaming_Beef  2 года назад

      Sorry about that, Roblox studio was updated so it is done differently now. Check the pinned comment for more info.

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

    how do i make 2 jumpscares or more bc only the first one works

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

    second script:
    local Animation = script.Animation
    local Humanoid = script.Parent.Humanoid
    local AnimationClip = Humanoid:LoadAnimation(Animation)
    repeat wait() until game.Workspace:FindFirstChild("Trigger") == nil
    AnimationClip.Looped = false
    AnimationClip:Play()

  • @deleted7083
    @deleted7083 2 года назад +1

    game.ReplicatedStorage.Jumpscare.Parent = game.Workspace
    wait(2)
    game.workspace.Jumpscare.Parent = game.ReplicatedStorage

  • @lkwan4680
    @lkwan4680 2 года назад

    i think its quite good but i hv a problem is how to make the animation video and add in it

  • @Vo1tDoc11
    @Vo1tDoc11 2 года назад

    Here take my subscribe

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

    i will help you guys script:
    script.Parent.Touched:Connect(function(hit)
    if hit and hit.Parent:FindFirstChild(''Humanoid'') then
    script.Parent:Destroy()
    end
    end)
    2# script:
    local Animation = script.Animation
    local Humanoid = script.Parent.Humanoid
    local AnimationClip = Humanoid:LoadAnimation(Animation)
    repeat wait() until game.Workspace:FindFirstChild(''Trigger'') == nil
    AnimationClip.Looped = false
    AnimationClip:Play()

  • @gr9170
    @gr9170 2 года назад

    my monster won't dissapeer

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

    how do you add a sound?

  • @sonicracktubbieYT
    @sonicracktubbieYT 2 года назад

    I mean it works but the animation doesn't play when the player comes into contact with the trigger

  • @vindiesel1869
    @vindiesel1869 2 года назад

    Im Defo Gonna Try This

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

    Thanks broo

  • @trapphonkboss2001
    @trapphonkboss2001 2 года назад

    this is very helpful! but im so lazy, can ya give me scripts to copy?

    • @Musicu-gv2ul
      @Musicu-gv2ul 2 года назад

      no

    • @Gaming_Beef
      @Gaming_Beef  2 года назад

      If you are trying to become good at scripting I would recommend writing the scripts out manually because you learn more that way.

  • @olivermascorro7558
    @olivermascorro7558 2 года назад

    Does the trigger restart every time you die? and can client press it and have a cool down for others or is it client-sided?

    • @bleached4094
      @bleached4094 2 года назад

      No because the trigger has a Destroy() in the program line, meaning the brick is deleted forever till the player joins a new server

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

    Here is the first script:
    script.Parent.Touched:Connect(function(hit)
    if hit and hit.Parent:FindFirstChild("Humanoid") then
    script.Parent:Destroy()
    end
    end

  • @devii5588
    @devii5588 2 года назад

    @Gaming Beef from me the monster after you go in the wall appear and disappear, but animation dont work. Why?

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

    script.Parent.Touched:Connect(function(hit)
    if hit and hit.Parent:FindFirstChild(*Humanoid*) then
    script.Parent()

  • @aymantheremix7086
    @aymantheremix7086 2 года назад

    Can You Make A Tutorial On Cash Gui Like Uhhhh When You Earn Cash A Text Is gonna Pop Saying The Amount Of Cash It Would Be Better If You Make A Settings Script Like A Module Script

    • @Gaming_Beef
      @Gaming_Beef  2 года назад

      Thanks for subscribing and Yes I can make a tutorial on that for you. Also can you give me more detail on what you mean because I'm a little confused, thanks!

    • @aymantheremix7086
      @aymantheremix7086 2 года назад

      @@Gaming_Beef I Will In Next Video You Upload

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

    gaming

  • @xcallmemia823
    @xcallmemia823 2 года назад

    When i try to touch the trigger, the monster is not showing. how do i fix it

  • @HyperspaceStudios
    @HyperspaceStudios 2 года назад

    It doesn’t work. I copy and pasted the scripts. Can you do a repost on an updated version?

    • @Gaming_Beef
      @Gaming_Beef  2 года назад

      There has been no updates on Roblox studio since I last tested this tutorial so it 100% works. Try again because you could have made a small error, good luck. Also where did you copy paste the scripts from because I didn't put them anywhere lol.

    • @HyperspaceStudios
      @HyperspaceStudios 2 года назад

      @@Gaming_Beef people put them in the comments. I was wondering if they were wrong. Should I just type them myself? Thanks

    • @Gaming_Beef
      @Gaming_Beef  2 года назад

      @@HyperspaceStudios They could be wrong or there could be an error somewhere else. If you are certain that the script is correct and everything is right but it still doesn't work I would just recommend redoing the tutorial. Also it is better to write out scripts yourself for learning purposes and also the scripts from others may be incorrect. Best of luck!

    • @HyperspaceStudios
      @HyperspaceStudios 2 года назад

      @@Gaming_Beef thanks for the tips!

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

    thank you so much

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

    Damn can't make it happen since the Roblox don't have any useful animation plugin