Can't Focus Textbox on Mobile

There is an ID Box and two buttons, a stop and a play, that can be interacted with on PC but will not work on mobile for some reason. I believe it has something to do with the explorer tree I have set up for the UIs but I cannot before certain. Does this look alright? What am I doing that is prohibiting mobile interaction with the UIs?

image

I would try moving the textbook outside of the image, as the image could be getting in the way of the player being able to focus on the box.

I had this issue. I fixed it by creating a textbutton that overlapped it and when pressed focus the textbox.

Example:

button.MouseButton1Down:Connect(function()
     textbox:CaptureFocus()
end)

For me it only didn’t work on mobile if the property TextBox.Active was false. When I set TextBox.Active to true it worked on mobile.

4 Likes

You are actually insane, everyone finding these weird work arounds and you just had the answer.

1 Like