I have a text box that asks the user for a number, then I have a line of text that changes and adds 10 to that number, but I can't add 10 to a string. Is there a way of asking for only an integer?
You just need to convert the text to an int or float.
Example:
A textbox with the text "11"
->Text: Set text to int(Text.Text) + 10
will set the textbox to the text "21"