i cant move my character.

im new and trying to make roll a ball and it shows no errors to the script. but my charakter wont move. plz help!

alt text

Most programming languages are case sensitive - “start” is not the same as “Start”, and “fixedupdate” is not the same as “FixedUpdate”. The case of things is very important.

So changing your function names to…

void Start()
{
  ...
}

and…

void FixedUpdate()
{
  ...
}

Should get things going for you.