Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to check if a player is in a TextBox?

Asked by
ItsMeKlc 235 Moderation Voter
9 years ago

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...

01userInput = game:GetService("UserInputService")
02 
03focused = false
04userInput.TextBoxFoxused:connect(function()--fires when the player focuses on a textBox
05    focused = true
06    print("We live!")
07end)
08 
09userInput.TextBoxFoxusedReleased:connect(function()--fires when the player unfocuses from a textBox
10    focused = false
11    print("We off")
12end)
13userInput.InputBegan:connect(function(input)
14    print("Hi!")
15    if input.UserInputType == Enum.UserInputType.Keyboard and input.UserInputState == Enum.UserInputState.Begin and input.KeyCode == Enum.KeyCode.M and focused == false then
View all 21 lines...

1 answer

Log in to vote
1
Answered by 9 years ago

With this!

1uis = game:GetService("UserInputService")
2focused = false
3uis.TextBoxFocused:connect(function()--fires when the player focuses on a textBox
4    focused = true
5end)
6 
7uis.TextBoxFocusReleased:connect(function()--fires when the player unfocuses from a textBox
8    focused = false
9end)

Then just add an if not focused then do all the stuff with the keys pressed.

Credit to M39a9am3R for this one

0
Looks good but isn't working for me.. Did I do something wrong? (I put it in the question) ItsMeKlc 235 — 9y
0
yes, i spelled stuff wrong, I'll edit ScriptsAhoy 202 — 9y
0
Ok, should work now ScriptsAhoy 202 — 9y
Ad

Answer this question