Ok, I want to do something like this: Get text from EditBox1 and multiply this number by numer got from EditBox2 and show the anserw in EditBox2, i know how to do it but i don't know which symbol i should use, * is not working.
Develop games in your browser. Powerful, performant & highly capable.
You have the symbol right, the strings in the edit boxes just need to be converted to integers or floats using 'Convert value to integer' or 'Convert value to float'. After all, you can't multiply strings together.
try (int)EditBox1 * (int)EditBox2
Vinny was close, but the syntax is wrong. Try setting editbox2's text to:
int(Editbox1.Text) * int(Editbox2.text)
int() converts the text typed in to the edit box in to a number, which can be multiplied.