@AlexCalv - I don't want to discourage you in any way, but programming is hard. It's not all about "learning a language" (i.e. a particular syntax). It's about being able to understand both abstract concepts and the practical implementation, but most importantly about a continuous process of documentation and learning, even when you feel like you can't understand anything that you're reading, until it all clicks into place.
In your particuar case, you can't simply avoid learning at least the basics of OOP, because the entire LOVE framework is built on this programming pattern.
I would advise to keep reading OOP tutorials on the internet, wikipedia pages on OOP concepts, maybe to try and get your hands on some programming courses. The best case scenario would be to have a friend explain this to you.
I'd start with looking up what a class is, what an instance is, what an object reference is, what a value type is, what the garbage collector does, what the "self" keyword is and how it works. You can look these things up on google.
I found some Lua OOP programming resources on a quick search, but they don't seem that beginner-friendly (they all kinda assume that you already have applied OOP knowledge from other languages)
http://lua-users.org/wiki/ObjectOrientedProgramming
http://theindiestone.com/forums/index.p ... etatables/
http://www.troubleshooters.com/codecorn/lua/luaoop.htm