How to make textbox bigger everytime we type so starting from first character when we press second character it gets bigger, etc.
1 Like
To make the text box automatically resize, choose an option for the AutomaticSize property.
Use GetTextBounds and add some padding and set the TextBox’s Size property to that.
Or, you could use AutomaticSize.
Just turn on TextScaled on a textbutton or textbox
This is for text size…. I’m talking about TextBox Size , the box size, not the text size…
You could use user input service, and check if textbox:IsFocused() then textbox.Size += UDim2.new(0, 1,0,1)
or you could use textbox.Changed
function check if the textbox.Text == prevousText
.