Not sure why you accepted the other answer even though it didn't answer your question.
To check whether a variable is higher than or equal to 1 you use >=
and to turn a string into a number you use tonumber()
In the if statement I use tonumber(attrib.Text)
twice; first, to make sure it is actually a number then the second, compares it only when it's a number.
01 | local attrib = { Text = "5" } |
03 | local function CheckNumber() |
04 | if tonumber (attrib.Text) and tonumber (attrib.Text) > = 1 then |
05 | print ( "Yes, it is 1 or greater." ) |
07 | print ( "No, it is less than 1 or not a number" ) |
17 | attrib.Text = "GSFDgs4545" |
Read more about:
tonumber()
Relational Operators