I know I can do
01 | if key.KeyCode = = Enum.KeyCode.A then |
02 | --code A |
03 | end |
04 | if key.KeyCode = = Enum.KeyCode.B then |
05 | --code B |
06 | end |
07 | if key.KeyCode = = Enum.KeyCode.C then |
08 | --code C |
09 | end |
10 |
11 | --etc |
but I don't want to check for every separate key. I want to return whatever key the player presses. This might be a stupid question, I just couldn't find the answer anywhere. Help?