Does not read KeyDown?
In a local script that I am working on there is a section that is suppose to find what key was pressed then see if it is the key that is suppose to be pressed in a textBox e.g user types in something then when he is done he clicks the outside to remove the cursor and presses "r", but it is not working.
I don't get any error codes or anything.
01 | local Player = game.Players.LocalPlayer |
02 | local Mouse = Player:GetMouse() |
04 | function rButtonCheck() |
06 | print ( "player pressed return" ) |
11 | Mouse.KeyDown:connect(rButtonCheck,button) |