About 449,000 results
Open links in new tab
  1. How to use OOP inheritance? - Scripting Support - Roblox

    Sep 10, 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 …

  2. How to get an OOP object from another script? - Roblox

    May 20, 2025 · I’m currently learning OOP, and I have an issue: How do I get an already existing object from another script? Storing them somewhere returns an empty table in other scripts …

  3. A look into Object Oriented Programming and performance

    May 4, 2025 · OOP, also known as object-orientated programming, is simply a way of designing our game where we use ‘classes’ that represent the state of our game. Say we have a tycoon; …

  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. OOP Party System V2 - Community Resources - Roblox

    Feb 26, 2025 · OOP Party System V2 automatically creates a RemoteFunction named PartyRemoteFunction in ReplicatedStorage when the module initializes, handled by the …

  6. Advanced Object-Oriented Programming - Roblox

    Aug 5, 2024 · Advanced Object-Oriented Programming A Senior’s Guide to Object-Oriented Programming in Luau. Originally Written by Bitlet Table of Contents Introduction Prerequisites …

  7. Luau type inheritance? (OOP) - Scripting Support - Roblox

    Aug 14, 2021 · luau is for the most part, just a sandbox version of lua. As far as I know, roblox hasn’t changed tables and metatables That being said, oop can be made in exactly the same …

  8. 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 …

  9. How would you use OOP? - Scripting Support - Roblox

    Jun 13, 2025 · Don’t go down the rabbit hole of purely OOP, else you’ll wind up using odd workarounds for scenarios that wouldn’t exist if you didn’t use OOP! Plus, pure OOP causes a …

  10. Object Oriented Programming with Luau in 2023 - Roblox

    Jan 11, 2023 · If I decide use the whole ‘table with both data and metamethod-invoked functions,’ which is what I call Lua OOP, it’s only ever something I do to “neaten it up” afterward.