Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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

...