I was wondering how to send a keycode that would be as if I was holding down the arrow key because right now I am using the input managers first 2 indices for the arrow keys. any ideas?
Did you tried this
SendKeys.Send({"UP"})
SendKeys.Send({"DOWN"})
?