Hello guys
I ve a problem. I ve a table like this
local Table = {} Table[1] = { x=200 } Table[2] = { x=259 } Table[3] = { x=-50} Table[4] = { x=150 } Table[5] = { x=-200 } Table[6] = { 170} Table[7] = { x=50} Table[8] = { x= -150 }
My task is to create a function that detect which is the element with the lower “x”.
How can I do this?