Could you use a method that would find the highest value out of a set of multiple different values in a few short lines of code, or would you have to do it the manual way with multiple lines of code?
You can use math.max() !!!
It returns the highest value that you provided it
local highest = math.max(3, 5, 2, 199234424) print(highest) --199234424