Is it possible to detect lowercase key presses

Im making a typing game and noticed that Enum.Keycode has everything set to capital, would it be possible to detect if the player presses a lowercase letter or uppercase?

1 Like

You can check if shift is not being held down, although I don’t know if there is a way to know if caps lock is on/off. What do you need to know this for though? Never heard of something requiring this.

1 Like

I am making a typing racing game, so theres gonna be like a sentence and first person to write it wins. I want to make sure that they are getting the entire sentence right

You could detect whenever a text box’s text changes, check the last character, if char:lower() == char then it’s a lowercase letter.