How do i create a class of functions that i can reuse across my project?

You can just create a class in another .verse file like this:

utils := class():

    CheckPlayerTeam():void=
        # Your code

And to call your function anywhere, you need to call the class and the function in it:

utils{}.CheckPlayerTeam()
1 Like