Making a laser beam that damages players in Roblox

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

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

  • @fahkyew7776
    @fahkyew7776 7 หลายเดือนก่อน +116

    I clicked on the "Generate Textures with AI" video in the creator hub and it directed me here for some reason.

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

      yep same, but im not complaining im glad i got send to this video lol

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

      Lol same

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

      Yeah

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

      lol

    • @ForrestS.
      @ForrestS. 7 หลายเดือนก่อน

      same

  • @TQNY
    @TQNY 10 หลายเดือนก่อน +9

    Fantastic Tutorial !! So well explained - no doubt left behind.
    I look forward to other educational videos like this. THX.

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

    Hey Roblox, you shouldent directly set the health to 0 but get a variable of the Humanoids MaxHealth, and current health, then get the difference between them, then use the humanoids TakeDamage() function with the difference between the 2 variables. This would ensure that if you have a forcefield you survive, and dosent take away extra damage. also add a debounce in the Touched event.

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

    No debounce, kinda important for touched events.

  • @sebalby34
    @sebalby34 7 หลายเดือนก่อน +25

    this is literally a glorified kill brick

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

      I was js thinking that

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

      I thought that was the point
      To trick the player into think it is learning how to do one specific thing, but actually it’s something that could be applied for many situations

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

    Yay tutorials! 😁

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

    2:54 my god you CAN say "Die" they say it a bit in some shows for older kids i think

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

    Worked well! Wow... i learned my first code and actually learned it after 2 year of given up

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

    "Texture file go BRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR" Epik moment.

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

    good job

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

    1:23 texture file go brrrrrrrrrrr

  • @whatdidyousay245
    @whatdidyousay245 6 หลายเดือนก่อน +3

    i ended up finding this while watching videos, to make it do a certain amount of damage make the kill script say
    =- 5 and not = 0

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

      use += if u want it to increase health and also *= if u want it to multiply health

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

    i have a question, how i can use this on a gun?

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

    but how would i get a texture ID? also WHERE IS THE FINISHED SCRIPT???????

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

      Textures for beams are in the toolbox, just search "beam texture".
      And the script is very easy, it is actually a default killbrick, so there's no strict requirements, but anyways
      local lasertrap = script.Parent
      local collisionBox = laserTrap.CollisionBox
      local function onTouch(otherPart)
      local character = otherPart.Parent
      local humanoid = character:FindFirstChildWhichIsA("Humanoid")
      If humanoid then
      humanoid.Health = 0
      end
      end
      collisionBox.Touched:Connect(onTouch)

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

      @@Kitoucher that's too complicated, I mean the script it should be easier like this
      newpart.Touched:Connect(function(touchpart)
      humanoid = touchpart.Parent:FindFirstChild("Humanoid")
      if humanoid then
      humanoid.Health -= 10
      task.wait(1)
      end
      end)

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

      I added the wait by accident since it was from a previous script

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

      @@JREHighLightings it's not my script, as he asked, i sent him a script from the video.

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

      @@JREHighLightings and :connect(function()) makes a new function, which is perfomance consuming, using already existing function is better than creating one every time script triggers.

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

    the problem is that i cant search for some reason

  • @CosoCoso810
    @CosoCoso810 10 หลายเดือนก่อน +3

    Wow

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

    didn't work at all. it didn't let me make the beams work and didn't kill me

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

    thank you

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

    thank you john roblox

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

    Does This Help Me?

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

    i tought you were eplaining how to script and control the beam

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

    collisionbox

  • @Javiertheminiman678
    @Javiertheminiman678 7 หลายเดือนก่อน +4

    this gave me a minecraft ad bruh

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

    How Damage players, u already teach how make a hitkill-touchblock

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

    this is not a collision box this is called a hitbox

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

      practically the same thing

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

      @@abidbmtt not rally, collision boxes can be just for collisions. Hit boxes are for damage.

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

      ​@@Tact1kalnope. They're the same thing.

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

    this helped me alot!, thanks roblox for making theese tutorials

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

    Thanks David

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

    Aptundu - Aptundu - Famaus Roblox Song

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

    para traducirlo del ingles, ¿?

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

    Make it for cell phone

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

    thanks this tutorial is so good!

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

    thx but i dont get it

    • @RandommmGAMING
      @RandommmGAMING 13 วันที่ผ่านมา

      do u need help? i can help u get better at scripting, and btw this is basically a killbrick

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

    no id thing is in the descriptioin

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

    cool

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

    How do you make on mobile?

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

      u need pc, mobile doesn't have roblox studio

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

      @@edvilemon5039 :(

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

      bad news, its only on pc. i wish is on mobile tho ):

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

      @@aaaaaaaaaiguess I don't think it's possible for an entire game making engine to get squished into mobile

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

      Can you make it so you can create on ps4

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

    local functon 👀☠

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

    Thnk You!

  • @Shadowstrike-Gamer_Yd
    @Shadowstrike-Gamer_Yd 7 หลายเดือนก่อน

    No thing Happened i dont Know why

  • @RobloxGameStudio-1
    @RobloxGameStudio-1 2 หลายเดือนก่อน

    okay

  • @SajmonPSO-bh9nc
    @SajmonPSO-bh9nc 7 หลายเดือนก่อน

    epic!

  • @BEaNZFNAF_Stuffz-jf6tk
    @BEaNZFNAF_Stuffz-jf6tk 6 หลายเดือนก่อน

    This tip was very Helpful!!!

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

    it works ty roblox

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

    I’m gonna make my own game!

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

    it doesnt work :(

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

      What exactly doesn't work?

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

    Muito legal

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

    texture file go brrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr

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

    good

  • @صقر-ب8ش
    @صقر-ب8ش 6 หลายเดือนก่อน

    Long how 😢Thy or Left1120😊

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

    a better way to do this is to use raycast

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

      Not really, raycasts would lag the server if theres lots of them

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

    Quiero desarrollar un juego de parkour y que lleve un item de como primer juego que hago

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

    what is this!!!

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

    Oh

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

    oh my yap

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

    Hi

  • @とあ-f4t
    @とあ-f4t 4 หลายเดือนก่อน

    hi

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

    It work

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

    4:02

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

    wyyyyyyy my vres

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

    Πολύ😎

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

    primero en español :D

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

    Quem e do brasil deixa seu like

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

    Wow