How To Remve All Friction

Lets say i have a player running along a wall,
then he have friction to the wall how to remove this?
I tryed with physics materials setting everyting to 0 with no success.

You have to do more than set the material to 0, you must also set the “Friction Combine Mode” to Minimum

Same problem here, it is driving me crazy!

What you want to do is change the meshcollider’s physics material like this:

GameObject.GetComponent ().material.staticFriction = 0;

There are other properties, along with other friction properties. Give it a try