What is wrong with the key?
Hello. I was writing a script for a new chat bar. I have learned how to do it, and I got all the way down to pressing the key to make it focus.
1 | local Mouse = game.Players.LocalPlayer:GetMouse() |
3 | Mouse.KeyDown:connect( function (Key) |
5 | script.Parent:CaptureFocus() |
When I press the "/" key in test mode it works perfect. It focuses on the TextBox and allows me to type. I've also got it programmed to send the chat when the focus is lost (on enterPressed).
My issue is, when I go online and press the "/" key nothing happens. I spam press it, then rage press it, nothing happens. Then, I accidentally press the right shift key and BAM! It focuses. I'm like, okay and type in a message. I press enter and it shows the message. Press "/" nothing happens. Press right shift and it focuses again.
I don't know if the problem is backslash and right shift go off of the same byte code or what. So if someone could help me figure out the problem, I would appreciate it! Thanks!