I cant find a property for this, so how?
The TextBox has an event called Focused
which runs every time someone focuses their mouse on the box. Using this, we can also unfocus it when this event is called, so it gives an illusion of a disabled textbox.
local textBox = yourTextBoxPathHere -- (for example, gui.TextBox) textBox.Focused:connect(function() -- Event called textBox:ReleaseFocus() -- Makes it disable typing end)
By using a TextLabel
. Whoops, excuse my while I fix all of my GUI's.