GetTextSize not correctly working with LineHeight

I have a textbox that automatically resizes using GetTextSize but it doesnt seem to extend to all the way after changing the LineHeight of the textbox

Code:

TextService:GetTextSize(Editor.Text, Editor.TextSize, Editor.Font, Vector2.new(math.huge, math.huge))
Vector2.new(math.huge, math.huge)

Setting ‘math.huge’ as the X-axis boundary will result in the function presuming that the text spans a single line. Change ‘math.huge’ to the absolute X-axis size of the text’s containing ‘GuiObject’ object.