alt text
im new and trying to make roll a ball and it shows no errors to the script. but my charakter wont move. plz help!
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.