';' Expected Please insert semi colon here (3,13) HELP
var target : Transform;
var moveSpeed = 3;
var rotation speed = 3;
Comment
Answer by getyour411 · Sep 01, 2015 at 12:30 AM
rotation and speed are two different things on line 3
Answer by binaryspace1010 · Sep 01, 2015 at 12:32 AM
@Bacn Hello there! Your problem is pretty simple, but I was once scratching my head with this one too. Your problem is that you have a space between the words in the variable "rotation speed".
So instead of a space, these are all acceptable titles: rotationspeed, rotationSpeed, and rotation_speed
Hope this helps!