how toDisable the FPSInputController.

Hello, I was wondering how I would go about disabling the FPSInputController. I’m making a multiplayer game and that seems to be cuasing a problem. When the 1st player moves the 2nd player moves with it so I figure its because the FPSInputcontroller isn’t disabled for the person who’s networkview it is not. I’ve already tried
GetComponent(FPSInputController).enabled = false;

but it gives me an error. What should I do? Thanks!
Ps: I’m using c#.

To disable FPSInputController in C# you must use:

GetComponent<FPSInputController>().enabled = false;