How to add a TextBox Input Counter?

script.Parent.Changed:Connect(function()
	if string.len(script.Parent.Text) > 193 then
		script.Parent.Text = script.Parent.Text:sub(1,193)
	end
end)
2 Likes