Okay - if you have a text box say it's name is txtText, and you want to validate the text within that text box to make sure it's numerical, you would type

IsNumeric(txtText.text)

Usually you would use this in an if then statement such as

If IsNumeric(txtText.text) = False (meaning not a number) then

.....

else (if it is numeric)
......
If you need more help - email me at [email protected]