I made a key casting plugin that shows what keys you’ve pressed on the bottom-left hand of your screen.

It does not show a few keys like the F1 to F12 keys due to roblox being roblox but most of the keys are able to to be shown
It also won’t run in testing mode cause I thought it might get in the way
test it out here
(KeyCast - Roblox)
4 Likes
What’s this supposed to mean? You could just have a case of bad or complex code, so it’d be better to run a few tests and fix your code rather than chalk it up to “Roblox being Roblox”. No issue here when trying to display any of the function keys.
local UserInputService = game:GetService("UserInputService")
UserInputService.InputBegan:Connect(function (inputObject, gameProcessedEvent)
print(inputObject.KeyCode.Name)
end)
5 Likes
I did not now KeyCode had property called Name lol, that would have been so helpful lmao ;-;. Imma go update the plugin
I tried that but when i use the function keys or mouse it just says unknown
Just add a if statement to chek their names and dont display the ones names unknown