This function helps you to add keys binding if you use C # client side ...
Example of use :
Tick Event
KeyManager.KeyBind(0xA2, () =>
{
Chat.Output("Key Bind Work");
});
KeyManager.KeyBind(KeyManager.KeyMouse, () =>
{
Cursor.Visible = !Cursor.Visible;
});