Hello there! I’m currently experiencing a bug, when making Copy & Paste Logs there is no way to register Command + V apart from Control + V, so you cannot register it for Mac Users.
Command + V Below, no key code matching Command! (only works in studio)
This is in-game!
Hello, can you take a look at this post and see if the proposed change will work for you? If you want it to do the same thing for the control and command key, you will need to use LeftMeta and RightMeta in addition to LeftControl and RightControl, like this:
if InputObject.KeyCode == Enum.KeyCode.LeftControl or InputObject.KeyCode == Enum.KeyCode.RightControl or InputObject.KeyCode == Enum.KeyCode.LeftMeta or InputObject.KeyCode == Enum.KeyCode.RightMeta then ...
If I understand your issue, this is possible to do currently to make it work. Please let me know of any concerns.
Thanks!
Does listening for the keypress Enum.KeyCode.LeftMeta work in-game? I apologize for the inconvenience.
Would it be possible to share a rbxl file that shows the incorrect behavior?