About 63,700 results
Open links in new tab
  1. How to use PathfindingService + implementing it as OOP

    May 31, 2025 · I recently helped a user make a OOP oriented Ai and decided to make a Community Tutorial on it. This tutorial should help you implement PathFindingService and how …

  2. Object Oriented Programming with Luau in 2023 - Roblox

    Feb 15, 2024 · 23 Likes My Approach for OOP in Luau AridFights1 (Arid) January 12, 2023, 12:54am 2

  3. Unleasing the power of Object-Oriented Programming | OOP

    Jun 19, 2023 · OOP, short for Object-Oriented Programming, is all about organizing your code around objects. Think of objects as these nifty little things that bundle together data and …

  4. All about Object Oriented Programming - Roblox

    Sep 3, 2014 · ALL ABOUT OOP! Prerequisites An understanding of meta-tables (although the required code will be explained) How tables work and a competent grasp of the Lua syntax …

  5. How to use OOP inheritance? - Scripting Support - Roblox

    Sep 24, 2024 · I’m learning OOP and created a base-class (AnimalClass) and have sub-classes inheriting from the base class (Dog, Cat, Penguin) I see two different ways to do it, and am not …

  6. Guide to Type-Checking with OOP - Community Tutorials - Roblox

    Mar 4, 2023 · This tutorial has been updated on March 4th Introduction Hey! So, the Luau page on idiomatic OOP is a little…lacking, to say the least. So after pretty much a 5-month gap, I’ve …

  7. Efficient Object Oriented Programming Tutorial - Roblox

    Feb 21, 2021 · Efficient Object Oriented Programming Tutorial This tutorial will not be explaining what OOP (aka Object Oriented Programming) is. I’ll be showing how to create an efficient …

  8. Prototype-based OOP; A cleaner and simpler way to do OOP

    Jan 8, 2025 · Oh yeah my bad, it definitely does store slightly more memory because it holds references to the methods instead of holding a pointer to another table, however I do think the …

  9. Draggable inventory slots, OOP - Community Tutorials - Roblox

    Feb 9, 2025 · Let’s create an inventory, where item slots can be dragged around and swap places. I will also create some of the UI through code, which is generated by Codify plugin …

  10. Metatables And OOP: Simplified - Community Tutorials - Roblox

    Oct 1, 2024 · Metatables-based OOP: Directly use metatables to manage class behavior, which can be complex and tedious to maintain. Functional OOP: Implement classes using functions, …