How to correctly tween these parts forward?

I’m trying to make these parts tween forwards with the motion of them being extended forwards over a course of time, but when I play the tween, the tween goes backwards instead of going forward, is there a way to fix it? Here’s a screen capture to show what i’m talking about.

https://gyazo.com/ea8c0b549e33e12b37a01a20d1c24192

And here’s the code I’m using to tween it.


 local goal = {}
 goal.Size = part.Size + Vector3.new(0,0,20)
 local info = TweenInfo.new(1)
 local tween = TweenService:Create(part,info,goal)
 tween:Play()

Nevermind, I Tweened the part’s CFrame backwards so it cancels it and it gives the ilussion of tweening it forward.

1 Like