...
With variables it is possible to perform all kinds of calculations, but the data type (integer, float, vector) has to be exactly the same, or . Otherwise you will get errors or a false results:
vector3 = Vector.new(0,1,0) + Vector.new(1,0,1)
mass = 677.533 / 2.0
newId = 3 * 100
...