How do I incorporate larger IntValues?

So basically, I would like to know how I can have IntValues go past 9.22 quintillion. I have had countless hours of research done and I’m still on Point A.

I know that there is BigNum, I tried researching that and how to use it and I don’t understand it all. I tried other ways and I just don’t know what to do anymore. Any tips?

What is the use case?
Luau doesn’t support precise integers larger than 2^53 to begin with as it uses the double precision floating point format to represent numbers so you should use NumberValue instead.

So yes, you have two options (maybe more idk) 1. use BigNum (best but hardest option)

  1. Just use a NumberValue, it lets you store wayyy higher numbers (but loses precision along the way)