of     1   

Festivereinhard2
#215507753Friday, April 28, 2017 10:45 PM GMT

what is the best way to sort and then return 5 intvalues from highest value to lowest?
Wunder_Wulfe
#215507884Friday, April 28, 2017 10:47 PM GMT

local values = { list of values } table.sort( values, function( a, b ) return a.Value >= b.Value end )
Wunder_Wulfe
#215507969Friday, April 28, 2017 10:48 PM GMT

also i recommend storing the function so u dont clog up the memory (even with garbage collection)

    of     1