Mouse enter/leave not working

I want the tip bar to grow larger if your mouse is in it but if you fling your mouse the script won’t detect MouseLeave and will have the tip stay large.

tip.MouseEnter:Connect(function()
	tip:TweenSize(
		UDim2.new(0.326, 0,0.078, 0),
		"Out",
		"Sine",
		.25,
		false
	)
end)

tip.MouseLeave:Connect(function()
	tip:TweenSize(
		UDim2.new(0.306, 0,0.058, 0),
		"Out",
		"Sine",
		.25,
		false
	)
end)

I think it is a roblox studio bug

Nevermind I fixed it by changing the tween’s override parameter