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.
@jnprge8 ай бұрын
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_Dev8 ай бұрын
it’s called Caching (Cache)
@Kitsune_Dev8 ай бұрын
@@jnprgeyou can’t anyway, it will error when requiring in parallel
@jnprge8 ай бұрын
@@Kitsune_Dev you can outside of parallel tho, that is how i found the issue
@Fingeroo9 күн бұрын
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.
@rafaelrodriguez7778 ай бұрын
Every time this guy uploads a new video, my scripting skills go up like crazy.
@ezrac70412 күн бұрын
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
@74L8 ай бұрын
The real examples were very helpful! Thank you and please make more of this type of content!
@itso67788 ай бұрын
This channel is definately the step from going to intermediate to advanced keep up the stuff man
@keyblademaster82638 ай бұрын
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.
@YLVrbx8 ай бұрын
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 🙏
@juniorwizard-ek9zl5 ай бұрын
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!
@Ethan-vx3ws8 ай бұрын
You don't understand how much this helped me. God bless!
@dane1up8 ай бұрын
incredibly useful video (as always)!
@74L8 ай бұрын
Agreed
@customgunz008 ай бұрын
idec about this video you seem like youre a saint brother, good stuff
@He_ze8 ай бұрын
An extremely informative video, thanks for making this!
@TheManThatIsRay8 ай бұрын
I greatly appreciate your teaching style and the real world examples.
@cemantical8 ай бұрын
No wayyy this is the exact video I needed 😭 tysm
@koei3920Ай бұрын
Not all hero's wear capes. Cheers to you.
@HolyStudiosRBX3 ай бұрын
Great video! Also can you make a video about the script coloring. I love the look of your script editor.
@zeaveer53998 ай бұрын
Very useful knowledge. Thanks for this video !
@KageNoDragon5 ай бұрын
Bro I love it it's like a father teaching us :0
@codexed-i8 ай бұрын
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.
@koainanis58408 ай бұрын
well done and nice explained. thank you and keep up the good work.
@luigifernando_8 ай бұрын
actual goat 🐐
@wav85186 ай бұрын
vica chile
@DropperMaster8 ай бұрын
The previous video is very good. I signed up
@DropperMaster8 ай бұрын
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.
@vexillumination60748 ай бұрын
Module scripts are amazing and save so much time
@Sasuke465258 ай бұрын
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
@sr32qawrq6 ай бұрын
This is awesome bro
@cupofdespair77278 ай бұрын
needed this video omg
@yarik_superpro2 ай бұрын
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.
@ProxyGameDev8 ай бұрын
Damn, you're good
@mist50238 ай бұрын
Great video
@lasanhadahora26 күн бұрын
why in bigger games you barely sees common server scripts?
@batbenrules8891Ай бұрын
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
@Kitsune_Dev8 ай бұрын
can you talk about Test driven development and TestEz?
@jso18 ай бұрын
love this
@liam27957 ай бұрын
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
@SilverSuperGamer6 ай бұрын
There is no single right way btw
@Beehopmew8 ай бұрын
mate do you do private leasons ?
@qweekertom8 ай бұрын
Sadly no
@ZoiluАй бұрын
What's the purpose of "name : string"
@terrazaelehАй бұрын
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