Error 39

function should take one or two arguments

You must provide arguments to functions. This function requires either one or two arguments, e.g.

This does not work:

a = random( Ball.Position, 3 , 1 );

a = random( );

The random function needs either one or two arguments:

a = random( Ball.Position );

a = random( Ball.Position, 2 );

 

Xpressionist 3