Tweening / Lerping PrimaryPartCFrame?

Attempting to Tween an entire model using SetPrimaryCFrame, evidently it doesn’t work with the simple TweenGoal being :SetPrimaryCFrame etc. etc.

Does anyone have any clue on how I would succeed in doing this? Thank you.

There are already several topics answering this.

3 Likes

You shouldn’t be using SetPrimaryPartCFrame() in this situation. It recalculates offsets each time, which despite being a built-in function, makes it quite inefficient to use repetitively (especially on bigger models).

Also, because it recalculates offsets each time, the offsets will eventually become offset. This means that your model will break apart over time.

You should consider using WeldConstraints and BodyMovers instead, or use one of the other solutions listed by ya boi DandyStan.

3 Likes