METATABLES | What are they and how can we use them?

Ойындар

You've heard of the big, bad, and scary metatable! But what is a metatable? How can we use it? This video will hopefully demonstrate exactly what we use metatables for while scripting.
Ever wanted to learn Roblox Studio & scripting? Check out my course:
bit.ly/LuaScriptingCourse
Use code RBLX_DEV for 33% off!
My linktree:
linktr.ee/crusherfire
Happy scripting!

Пікірлер: 82

  • @TreeLeeGames
    @TreeLeeGames5 ай бұрын

    meta

  • @crusherfire1

    @crusherfire1

    5 ай бұрын

    meta

  • @VoItmann

    @VoItmann

    5 ай бұрын

    tables

  • @IAmLoviatar

    @IAmLoviatar

    5 ай бұрын

    teta mables

  • @disreceded

    @disreceded

    5 ай бұрын

    the metaverse

  • @himynameisidiot

    @himynameisidiot

    5 ай бұрын

    beta aables

  • @NeverEverFaceTheDark
    @NeverEverFaceTheDark3 ай бұрын

    First four minutes have already done a much better job of saying what these things are than anyone else's explanation I've tried. Thanks

  • @nutmooose
    @nutmooose3 ай бұрын

    Thanks for this short and comprehensive tutorial on Metatables. You have a natural skill for teaching. I don't usually comment on youtube but I wanted to say this because I believe that we do have so many teachers but only few who has truly can do it well.

  • @crusherfire1

    @crusherfire1

    3 ай бұрын

    thanks 🫡

  • @Andrew90046zero
    @Andrew90046zero5 ай бұрын

    One thing metatables do is make it so you don't have to store functions directly inside the "instance" tables. Which means your tables only store the things that are different between each table, which saves memory. All of your table instances will refer to the same "metatable" for various functions and other data that is shared among all the table instances.

  • @crusherfire1

    @crusherfire1

    5 ай бұрын

    This is a great point too! Just like how you can create a single function that listens to events (for example, maybe you have dozens of UI buttons) to save on memory as well

  • @Andrew90046zero

    @Andrew90046zero

    5 ай бұрын

    ​@@crusherfire1 Thank you :D Idk if you plan on doing many episodes on metatables. But covering the other meta functions would definately be cool, and would compliment this video well. Because if somone wanted to achieve those benefits I mentioned, they would need __index and __newindex. Which then goes into how Lua achieves OOP.

  • @crusherfire1

    @crusherfire1

    5 ай бұрын

    @@Andrew90046zero I think I'll make a video in the future talking about how to use metatables for imitating OOP concepts, thanks!

  • @imaSeraphRBX
    @imaSeraphRBX5 ай бұрын

    Thank you for this. Ive been ignoring them for the longest time because they confused me. I finally get it! I still dont think I'll end up using them, but who knows, I may suprise myself.

  • @imaSeraphRBX

    @imaSeraphRBX

    5 ай бұрын

    Do you know what type of scenario would be good to implement these? They seem like fun@@epixerty

  • @TheMastrBuilder

    @TheMastrBuilder

    Ай бұрын

    They are useful in OOP

  • @Jesseyn
    @Jesseyn5 ай бұрын

    Very Well explained video, I saw some people struggle to understand metatables so i thought it would be very difficult. But, then I saw your video and it looked so easy.

  • @SilverSuperGamer
    @SilverSuperGamer3 ай бұрын

    Absolutely brilliant for making those stupidly annoying to make but excellent in the end ui libraries

  • @LovPotatoes
    @LovPotatoes5 ай бұрын

    One of the best Explanations out there! Appreciate this!

  • @jarrett-xr3bm
    @jarrett-xr3bm5 ай бұрын

    you've explained it better than anyone else, thanks!

  • @infinity2394
    @infinity23943 ай бұрын

    YOU SIR ARE AMAZING, ONE OF THE BEST EXPLANATIONS OF METATABLES, THE ANALOGY WITH THE RESTRAUNT WAS ABSOLUTELY BRILLAINT, YOU HAVE MY UTMOST GRATITUDE! 🔥🔥

  • @sicknickeroni
    @sicknickeroni5 ай бұрын

    thanks! as someone who does most work in javascript and typescript, i had no previous understanding of metatables.

  • @Tybeef
    @Tybeef5 ай бұрын

    I used metatables to create an OOP without knowing what it does, but this was a great explanation of what it is.

  • @Taazered
    @Taazered5 ай бұрын

    i finally understand now, true enlightenment

  • @amit6875
    @amit68755 ай бұрын

    Damn thats the best explanation i have seen of metatables, great video

  • @mafnor2268
    @mafnor22685 ай бұрын

    Finally a tutorial on metatables I can understand, this was the only thing I never understood in lua lmao.

  • @hexarinumerial
    @hexarinumerial2 ай бұрын

    Nice video, the only thing I would've recommended is to teach the "self" syntax because that's very important in metatables

  • @akaisstudios
    @akaisstudios3 ай бұрын

    Good class, i'm making my own system and i'm using some of your lession to put in practice.

  • @TheMastrBuilder
    @TheMastrBuilderАй бұрын

    Hey Cursher! Regarding the const thing, there actually is something (at least for tables) that does allow you to create readonly values. Using 'table.freeze()', we can freeze a table, making it readonly. It does not effect any tables inside it though. My question: How would one implement 'table.freeze()' into a system like this? Creating a whole result variable seems very round about'y', but you can't perform calculations on a read-only value.. In a nutshell, I'm trying to learn how to make code as short as possible and would like to know the pro methods. 😊

  • @BedwarsRBLX
    @BedwarsRBLX5 ай бұрын

    Basically: Table on steroids

  • @Yusaq
    @Yusaq5 ай бұрын

    thanks

  • @soollz4072
    @soollz4072Ай бұрын

    this was easier than i thought

  • @rfo.
    @rfo.5 ай бұрын

    Thx

  • @Miltonator77
    @Miltonator7723 күн бұрын

    Hi, I know I'm late to the party, but I have a question: In what circumstances would a metatable be more beneficial than a set of normal functions acting on a table. I am curious to the use cases behind the metatable. To me, the metatable seems more complicated to set up and limited to the pre-defined functions created by the Lua developers. I am new to Roblox Lua and programming in general and am interested in learning from an experienced programmer such as yourself. I loved this video and think you are an amazing teacher.

  • @crusherfire1

    @crusherfire1

    22 күн бұрын

    There are many metamethods for all the possible scenarios of things that can happen to your tables with the interpreter not knowing how to do them by default, so I wouldn't consider them limited. Metamethods won't be used commonly (I rarely use them), but the most common metamethod typically used is the __index metamethod due to its necessity for OOP. Another way I utilize the __index metamethod is by creating a table that errors when you index it with a key that doesn't exist. This is useful when you're trying to imitate an enum and want to make errors in your game easier to trace as the code will immediately halt instead of having a nil value floating around your code.

  • @bretabel1642
    @bretabel1642Ай бұрын

    to be more specific, methods are functions that belong to objects/classes

  • @stephen5070
    @stephen507018 күн бұрын

    How can using Meta Tables help me while using Module Scripts? I'm currently making an Incremental game in Roblox Studio which will have a lot of unlockable buttons for the player to purchase. I have two choices, either hardcoding a huge wall of text to return a table or generate a bunch of keys inside a table but I have to be able remember each of the returned variables. I'm trying to manage a big player data base and make sure nothing gets out of control once my game becomes bigger.

  • @AlexD-mg9xb
    @AlexD-mg9xb5 ай бұрын

    i aint watching allat but im liking cause crusherfire is goated

  • @TheMastrBuilder

    @TheMastrBuilder

    Ай бұрын

    Then you'll never truely learn :)

  • @polymerr
    @polymerrАй бұрын

    is there anyway you can post your roblox studio script editor theme? it's really nice to the eyes (ok never mind, I found it)

  • @SudoSed
    @SudoSed5 ай бұрын

    Hello, I am taking the course called Roblox studio on the Udemy platform. However, the course currently does not have a Turkish subtitle option. I have a request to add Turkish subtitles. Help me in this matter

  • @friendlybuilder2414
    @friendlybuilder24145 ай бұрын

    make a FastCast tutorial please and also a tutorial about ViewportFrames 💖💖

  • @crusherfire1

    @crusherfire1

    5 ай бұрын

    I actually have not yet found a need to use the FastCast module. However, you don't need to wait for me to learn it, I'd recommend reading the documentation for FastCast and experimenting with it yourself! etithespir.it/FastCastAPIDocs/ As for ViewportFrames, maybe?! 🤔

  • @tal5667
    @tal56674 ай бұрын

    what's your studio colours? looks sick

  • @crusherfire1

    @crusherfire1

    4 ай бұрын

    you can check out this plugin for some neat code editor color schemes: create.roblox.com/store/asset/3617323299

  • @Cidosophy
    @Cidosophy3 ай бұрын

    My question is which is better practice to use? function additionMetaTable.__add(ourTable, value) end *OR* local additionMetaTable = { __add = function(ourtable, value) } Is there any major differences? is one better practice over the other? personally I find it much easier to understand using the first way I provided

  • @crusherfire1

    @crusherfire1

    3 ай бұрын

    Either way works, just a different way to create them. However, it should be noted that if you need to make any functions that need to have access to the hidden 'self' keyword, it needs to be created using the colon notation. function SomeClass:SomeMethod() --- has access to self end SomeClass.SomeMethod = function() --- does not have access to self end

  • @yourcomputerhasdied
    @yourcomputerhasdied5 ай бұрын

    I loove metatables 🤤

  • @lembarkii8669

    @lembarkii8669

    Ай бұрын

    dawg

  • @Andrew90046zero
    @Andrew90046zero5 ай бұрын

    table

  • @EpicPico0625
    @EpicPico06255 ай бұрын

    Essentially tables with modifiable behavior

  • @crusherfire1

    @crusherfire1

    5 ай бұрын

    yup

  • @origamimaster2077
    @origamimaster207715 күн бұрын

    Metatables are also great ways for exploiters to hook onto your functions ;)

  • @JeffaFloppa
    @JeffaFloppa5 ай бұрын

    now we need oop...

  • @betapacket
    @betapacket5 ай бұрын

    did anyone tell him that using pairs or ipairs is redundant because you can just pass the table in the for loop (for x, y in ipairsOrPairs(z) -> for x, y in z)

  • @crusherfire1

    @crusherfire1

    5 ай бұрын

    Yes, I know you can pass a table directly without the use of an iterator like ipairs() or pairs(). This is a feature exclusive to Luau and not native Lua. However, if you do not use an iterator and pass the table itself and if that table has a metatable with a custom __call metamethod, that __call metamethod will be executed, which may not be desired behavior. Wrapping in ipairs() or pairs() prevents that issue.

  • @xwewfbgcangvao6159

    @xwewfbgcangvao6159

    21 күн бұрын

    @@crusherfire1thx

  • @crooda3681
    @crooda368112 күн бұрын

    table with workers

  • @RexBruhh
    @RexBruhh4 ай бұрын

    Whenever I try to print something out I get as output table: 0x79d1391f852dbe5e

  • @noturne54
    @noturne54Ай бұрын

    I never ever saw any real utility to the metamethods except __index and __newindex other than making tables fancier. Maybe organization? Its not the best for it, so it seems kinda pointless tho.

  • @nxsus

    @nxsus

    20 күн бұрын

    __eq

  • @Schwert_Brawl_Stars
    @Schwert_Brawl_Stars5 ай бұрын

    Have you a dc server?

  • @crusherfire1

    @crusherfire1

    5 ай бұрын

    I do have a server but it's not public

  • @Schwert_Brawl_Stars

    @Schwert_Brawl_Stars

    5 ай бұрын

    @@crusherfire1 ah okay nice 👍

  • @ralphwuu
    @ralphwuu5 ай бұрын

    Similar to Python dunder methods

  • @crusherfire1

    @crusherfire1

    5 ай бұрын

    Yup, and metatables allow us to imitate classes! You can actually recreate many Roblox classes, like Vector3, entirely from tables and metatables!

  • @bbnmm8720
    @bbnmm87205 ай бұрын

    1:37 what is the music tell me now or your next code will give a error 😈😈

  • @crusherfire1

    @crusherfire1

    5 ай бұрын

    oh no! the music for this video can be found here: kzread.info/dash/bejne/n6mA1LRqYNG6mLA.html

  • @bbnmm8720

    @bbnmm8720

    5 ай бұрын

    In a distant kingdom where bytes danced to algorithmic melodies and codes wove the fabric of the digital universe, a young programmer found themselves ensnared in the clutches of a dreadful curse: the dreaded "Fatal Error". This error cast a shadow over their work, bringing forth despair and frustration. Try as they might, they couldn't unravel the origins of this mysterious error. In their distress, they sought help. They made their way to the tower of the wise code master, an old and sage programmer known as Master Algorithmos. The tower was shrouded in digital mist, and with hope in their heart, they knocked on the door. Master Algorithmos, with their long beard and white hair, welcomed them kindly. With a wise smile, they said, "Ah, young one, I see the cloak of the 'Fatal Error' has enveloped you. But fear not, for every error has its solution, and every problem, its answer." Seated at a table laden with code manuscripts, Master Algorithmos guided them through the intricate pathways of the algorithm, unveiling hidden secrets and invisible patterns. With patience and wisdom, they explored lines of code, debugged functions, and unraveled the enigmas of programmatic logic. As the hours passed and the stars danced in the digital sky, they felt a weight being lifted off their shoulders. The "Fatal Error" began to lose its grip on them. Thanks to the guidance of Master Algorithmos, they began to see the light at the end of the programming tunnel. Finally, after a journey of learning and discovery, they found the solution to the "Fatal Error". With a simple adjustment to the code, the curse was broken, and the project came back to life, shimmering with newfound energy. In gratitude to the wise code master, they thanked Master Algorithmos with humility and respect. They vowed to honor the knowledge gained and share it with other programmers, so that they would never again succumb to the power of the "Fatal Error". And so, with a light heart and a renewed mind, they returned to their work, ready to face new challenges with courage and determination. For now they knew that, with the right guidance and the will to learn, no programming error could stand in their way. And thus, the legend of the one who broke free from the curse of the "Fatal Error" spread throughout the kingdom, inspiring programmers everywhere to never give up, no matter how daunting the code.@@crusherfire1

  • @bbnmm8720

    @bbnmm8720

    5 ай бұрын

    @@crusherfire1 i meant... thanks you wont get any error, will use this song for programming rn

Келесі