I was wondering, whats the byte code for 'ctrl' or 'Control'? I read on a java forum that it's 17 but that didn't work :/
You can test yourself easily enough:
1 | game.Players.LocalPlayer:GetMouse().KeyDown:connect( function (key) print (key,key:byte()); end ); |
For some reason for me it is giving 50
(which corresponds also to the 2
key for some reason?)
Ctrl is 50. In the future, if you need more byte codes, use this short script, it tells you the code of the keys you've pressed :
1 | game.Players.LocalPlayer:GetMouse().KeyDown:connect( function (Key) |
2 | print (string.byte(Key)) |
3 | end ) |
This table has helped me SOOOO much with ASCCI codes: http://www.asciitable.com/