Roblox Module Scripts (The Right Way)

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 พ.ย. 2024

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

  • @Andrew90046zero
    @Andrew90046zero 9 หลายเดือนก่อน +48

    One important takeaway from Module Scripts as well is, when you call require with a specific module, the code of the Module Script is only executed *once*, even if multiple scripts call require with that module script. But each time you do call require with that module, it returns the same data each time. So in the case of it returning a table, it will be the same table. So you could even use the module script to share mutatable data between multiple scripts.

    • @jnprge
      @jnprge 8 หลายเดือนก่อน +5

      another important tip: if you use an actor to contain your script, and if you require the modulescript, it WILL be executed again
      this will make another table you don't want, and is the main reason why i never use actors with modules

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

      it’s called Caching (Cache)

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

      @@jnprgeyou can’t anyway, it will error when requiring in parallel

    • @jnprge
      @jnprge 8 หลายเดือนก่อน +3

      @@Kitsune_Dev you can outside of parallel tho, that is how i found the issue

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

      Be aware that this is dependent on the execution context of the scripts requiring the module. All server scripts that require a module will receive the same data, but local scripts requiring that same module will all receive a second set of data.

  • @rafaelrodriguez777
    @rafaelrodriguez777 9 หลายเดือนก่อน +23

    Every time this guy uploads a new video, my scripting skills go up like crazy.

  • @keyblademaster8263
    @keyblademaster8263 9 หลายเดือนก่อน +4

    These videos will help you make the transition from intermediate to advanced. Play these videos a multiple times & your scripting habits will improve.
    Dont give up now the fact that you are here is proof enough that you came a long way from where you started.

  • @74L
    @74L 9 หลายเดือนก่อน +5

    The real examples were very helpful! Thank you and please make more of this type of content!

  • @ezrac704
    @ezrac704 24 วันที่ผ่านมา

    I've never seen someone achieve a balance of accessible content for beginners while also promoting good coding practices.
    It's insane to see type annotation in the button style code

  • @itso6778
    @itso6778 9 หลายเดือนก่อน +4

    This channel is definately the step from going to intermediate to advanced keep up the stuff man

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

    You don't understand how much this helped me. God bless!

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

    This was so helpful! I couldn't find a video with a simple explanation that shows you how to use module scripts properly, tysm again!

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

    I love watching your videos, I really want to get better at making clean and good games, thanks to you im learning new stuff from you. Please if you can, Keep up uploading videos like this 🙏

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

    I greatly appreciate your teaching style and the real world examples.

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

    An extremely informative video, thanks for making this!

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

    Not all hero's wear capes. Cheers to you.

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

    idec about this video you seem like youre a saint brother, good stuff

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

    incredibly useful video (as always)!

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

      Agreed

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

    Great video! Also can you make a video about the script coloring. I love the look of your script editor.

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

    No wayyy this is the exact video I needed 😭 tysm

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

    Bro I love it it's like a father teaching us :0

  • @codexed-i
    @codexed-i 8 หลายเดือนก่อน

    I like how in Rust (my fav pr language) code is just in the src folder, so it is easy to organize, but on Roblox... i had to write a library to load scripts, but at least it is easier to scale/organize.

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

    U should definitly make a game videos, but not like simulator games you know also i like ur videos ur life saver and keep making videos, while u are making videos make it with perfect orginazed

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

    Very useful knowledge. Thanks for this video !

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

    Module scripts are amazing and save so much time

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

    well done and nice explained.
    thank you and keep up the good work.

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

    actual goat 🐐

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

      vica chile

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

    The previous video is very good. I signed up

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

      I would like to see a detailed video on how to clean up the garbage in the code. How to clean the OOP component after removal. I know about the "Debris" library. And I know roughly what "Destroy" should look like in OOP. However, many people are interested in this. And maybe it would be informative.

  • @skyblox-eo5se
    @skyblox-eo5se 9 วันที่ผ่านมา

    Hi! This type of programming using module scripts is new to me . May i know, lets say i have a module loader script and I have a gun . Do i add a local script in the gun so that that script can require and create a gun class???

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

    needed this video omg

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

    there is another type:
    Module used to share table across multiple scripts.
    Video were not much usefull for me since i knew it but will be usefull for someone else definatly.

  • @b2s652
    @b2s652 6 วันที่ผ่านมา

    I don't understand the difference between utilities and functions. Can't I pass in data to either one of them and have them do something with that data?

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

    can you talk about Test driven development and TestEz?

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

    This is awesome bro

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

    Damn, you're good

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

    why in bigger games you barely sees common server scripts?

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

    so more specific question how would you edit smtn like an A chassis tune script because i cant even get it to change One variable in there

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

    Great video

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

    How can I access the data that I put inside of Mosul script and place it in the workspace and that was done by sever script but how can I access that data from local script

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

    love this

  • @SilverSuperGamer
    @SilverSuperGamer 6 หลายเดือนก่อน +12

    There is no single right way btw

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

    mate do you do private leasons ?

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

      Sadly no

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

    What's the purpose of "name : string"

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

      It makes it so the editor itself knows what type of data it is. Useful for using functions on a string when it's not declared yet I believe

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

    Peak

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

    FIRST