Set MINIMUM speed?

GetComponent ().AddForce (Input.GetAxis (“Mouse X”)+3000, 0f, Input.GetAxis (“Mouse Y” )+3000);

Don’t work properly. Player start moving even if i don’t move mouse at all.

You are adding 3000 to the mouse movement values so it is normal that the player moves even if the mouse doesn’t move. What are you trying to do?