Error 36

no dot in variable name

You can't place a dot in a variable name. Dots are used in channel names and to define components of vectors.

This does not work:

my.variable = Ball.Position;

Use underscores to structure variable names:

my_variable = Ball.Position;

Xpressionist 3