How to check if a player is in a TextBox?
How do you check if a player is typing in a TextBox? I have certain keys bind to open menus in my game and this is an issue for when I need the player typing in a TextBox.
EDIT; This is what I currently have, but it doesn't work...
01 | userInput = game:GetService( "UserInputService" ) |
04 | userInput.TextBoxFoxused:connect( function () |
09 | userInput.TextBoxFoxusedReleased:connect( function () |
13 | userInput.InputBegan:connect( function (input) |
15 | if input.UserInputType = = Enum.UserInputType.Keyboard and input.UserInputState = = Enum.UserInputState.Begin and input.KeyCode = = Enum.KeyCode.M and focused = = false then |
21 | script.Parent.MouseButton 1 Click:connect(onClicked) |