Looking for suggestions that can help me become a better scripter

no problem it shouldn’t be hard to find one myself also last question would you recommend I keep trying to learn OOP or should I try learning something else to organize my code specifically for a battlegrounds-type game as it seems they would use OOP to organize code

Having a grasp on OOP is very useful. It is usually applied for cases where you are going to have multiple instances doing the same thing and it’s totally fine if it’s only used for one.

For your type of game, it can be used to load and unload functionality, for example when the player is in the menu or playing. In the case of abilities or skillsets, it could extend a base moveset or change how it works.

If by any chance you are going to make NPCs, using OOP is a great way to handle them.

2 Likes