Roblox Scripting Tutorial - Ep 12 | All About Events

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

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

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

    You are extremely underrated bro, your videos make it fun to learn scripting and you've helped me so much! Appreciate it!

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

    As a scripter who's been doing my job for years, you explain concepts refreshingly well. Good job

  • @киселавода11
    @киселавода11 11 месяцев назад +3

    this channel is hidden gem, continue making these tutorials they are amazing!

  • @co5tellooffical
    @co5tellooffical 11 месяцев назад +2

    What a great hidden channel. Videos have been well made from the first video and are still being made very well. Keep up the amazing work and i hope you gain the exposure you deserve.

  • @byteblox100
    @byteblox100 11 месяцев назад +2

    Very good tutorial. Roblox community thriving rn

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

      fr fr

    • @im_hiatus
      @im_hiatus  11 месяцев назад +2

      wait aye i just noticed it's you!
      appreciate you 🙏

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

      byteblox🔥🔥🤯🤯🤯🤯🗣🗣

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

      What is bro doing here🗣🗣🗣

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

      ​Hey i found something in the left corner at 7:36 ​@@im_hiatus

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

    this guy always give an example to make the lesson easier . love it!

  • @Bloxtrem
    @Bloxtrem 11 месяцев назад +2

    Hiatus is back!!

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

    just fired the subscribe event for sensei hiatus, the best teacher around

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

    im so glad i found this channel,extremely underrated!

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

    you are just fucking awesome, oh my god your teaching is like 10x better than most lua-related CCs, thank you, and i mean it. thank you.

  • @Starter_lightningRBLX
    @Starter_lightningRBLX 22 дня назад

    As a person with, tourrets, autism, and ADHD, I confirm this, understandable!!!
    Thanks!

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

    Man i really love your content, you explain sooo good that we all understand it . Keep up with the good work❤❤❤❤❤

  • @HelloHello-e6v
    @HelloHello-e6v 22 дня назад

    Ur the best Roblox scripting tutorial

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

    super underrated

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

    An event is anytime the client/user performs an action.

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

    Wow this is a really good tutorial

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

    Insanely good explanation dude

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

    Incredible series bro

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

    wow bro nice , keep up the good work 🧡🧡🧡 ., and you earned a subscriber .

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

    can you do a video on more commonly scripted things like a round system. i have made one but bearly and would be very helpful for making a game fully self operated

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

    Leftfood

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

    very good explanation!

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

    amazing

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

    HIATUS POPPING OFF 🗣🗣🗣🔥🔥🔥

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

    where can i find how to make this vehicle you show at 9:15 it drives awesome

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

    First!

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

    Oh this is sick

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

    I love how the house part hit you when u blow it up :uglycat:

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

    Hi.. Can I ask you a question why did you add a comma instead of the two dots I noticed that the comma do space and the dots don't so that's why or the comma is for another programming language so you are used to it?

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

      I usually use a comma when printing multiple values instead of concatenating with two dots because of the space, you're right! For printing, I find it easier this way instead of concatenating and adding a space manually between the values.

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

      @@im_hiatus thanks for the reply but is this un luau or the dots?

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

      yup this is all Luau, you can use two dots to concatenate strings like this:
      local text = "hi" .. " jojo"
      print(text)
      A comma is used when there are multiple values:
      local a = 1
      local b = 2
      print(a, b)

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

      @@im_hiatus I'm sorry for a lot of questions so they are used for the same reason ?

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

      @@jojo_gaming234 Don't worry, questions are good.
      , and .. are not used for the same reason.
      , is used e.g. when you want to pass multiple values to a function
      .. is used to join strings together to make one larger string
      Imagine you have some Text you want to display on screen and you want to create a string that says "Hi" and the player's name, it would look something like this:
      Text = "Hi " .. PlayerName
      We wouldn't use , here because we can't set the Text to two things at once:
      Text = "Hi", PlayerName
      (this is wrong!)

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

    8:07 “LeftFood”🌭

  • @ShortsHub-o9z
    @ShortsHub-o9z 10 месяцев назад

    İ watched alotoff scripter vid your the best i sub u and liked videos

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

    damm, i will subscribe rn

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

    when will neon come in your video @hiatus

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

    do you have a video on making those birds in the back? I want that real badly.

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

      I can make one soon 👀

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

    W tutorial

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

    Name of font in scripts please

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

      Fira Code, need to download and install it

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

    first

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

    Second

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

    thirb

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

    @im_hiatus i saw a face in the left corner at 7:36

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

      8:18 Left food 💀 HAHAHAHHAHAHAHA 😂😂😂