Method for kicking a player?Solved

Whats the best way to initiate a specific user to client.disconnect?

player.SendConsoleCommand("Client.Disconnect") Does not seem to work. what am I doing wrong?

Ofcourse it doesn't work. All the commands which you can send from the server to client are marked by AllowRunFromServer field in ClientVar attribute. (Look into client assemblies).
If you want to kick player, use 
player.Kick("reason");​
Thanks.
Locked automatically