How to create a GUI button that triggers ReleaseFocus for a text box when pressed?
local frame = script.Parent
local button = frame.TextButton
local box = frame.TextBox
button.MouseButton1Click:Connect(function()
box:ReleaseFocus()
end)
Relatively easy to do this.
Yes, I thought it was harder lol.