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:
local TextBox = script.Parent TextBox.FocusLost:Connect(function(EnterPressed) if not (EnterPressed) then return end --------------- TextBox:CaptureFocus() end)