How to make smoother tweeninfo tweens

Example of tweensizes

local Frame = script.Parent
Frame:TweenSize(blah blah blah) < comes out as smooth

Example of tweeninfo

local l = TweenInfo.new(blah blah blah)
game:GetService("TweenService"):Create(script.Parent, l, {Size = blah}):Play() 
comes out as low frames

For some odd reason, tweensizes comes out smoother then tween info, its like tweensizes goes at the rate of 60 fps whilst tweeninfo goes at the rate of 15 fps.

What can I do to get smoother tweeninfos?

2 Likes

try using the tween info property TweenInfo.new(1, Enum.EasingStyle.Linear,)

2 Likes

So you’re saying I don’t use the enum.easingdirection at all?

2 Likes

You don’t need to no but you can if you want.

2 Likes

Can you attach a video? I just tried to make a comparison but it just seems that both have no meaningful differences


(Style: Sine, Direction: Out, Time: 1)
Works fine even if I try other styles/directions

2 Likes

I do this with textsizes, one is smoother the other isn’t

1 Like

What do you mean? You can’t use TweenSize on the text size.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.