I am making a game and it uses text boxes, but I want to be able to edit the text boxes after pressing enter/clicking off the text box but I can't, I have looked at the API reference but nothing is mentioning this, please help!
I've never attempted this before, but I can imagine some uses! After some quick thought, this should solve your predicament:
1 | local TextBox = script.Parent |
2 |
3 |
4 | TextBox.FocusLost:Connect( function (EnterPressed) |
5 | if not (EnterPressed) then return end |
6 | --------------- |
7 | TextBox:CaptureFocus() |
8 | end ) |