Text Label Wierd TweenSize

Hey guys, can someone give me some intel on why my text tweens like this ? I would like this to be more smooth.

Video: https://gyazo.com/d79a9ed029108db23256b2a19c16aba2

function TaskCreation.TasksCompleted()
	
	TasksGUI.TasksCompleted.Size = UDim2.new(1, 0,0.05, 0)
	
	local TasksCompletedIn = game.TweenService:Create(TasksGUI.TasksCompleted, TweenInfo.new(2), {TextTransparency = 0})
	TasksCompletedIn:Play()
	
	TasksGUI.TasksCompleted:TweenSize(UDim2.new(1, 0,0.15, 0),
		Enum.EasingDirection.InOut, 
		Enum.EasingStyle.Quad, 
		10,                      
		true
	)
	
	task.wait(4)
	
	local TasksCompletedIn = game.TweenService:Create(TasksGUI.TasksCompleted, TweenInfo.new(2), {TextTransparency = 1})
	TasksCompletedIn:Play()
	
end

Enum.EasingStyle.Quad

change this to Enum.EasingStyle.Linear

if that’s not the result you’re looking for then here are all the tweening styles