Can't tween model

Hi!
I’m trying to tween a model but for some reason only the model’s primarypart gets tweened even though it’s welded.
Code:

game:GetService("TweenService"):Create(workspace.Model.PrimaryPart, TweenInfo.new(500, Enum.EasingStyle.Quad), {Position = Vector3.new(100, 100, 100)}):Play()

Without anchoring the primarypart:
https://streamable.com/zzunau
with anchoring:
https://streamable.com/42qynj
Thanks!

Are the other parts un-anchored?

1 Like

Try using welds instead of weld constraints?

1 Like

Yes, in the first example everything is unanchored, in the second everything is unanchored except the primarypart.

Are you tweening Position or CFrame?

Position.

Try tweening CFrame then. I heard that Position doesnt work with welds, let me know if that’s true.

1 Like

Oh, tweening the CFrame while the primarypart is unanchored doesn’t work but when anchoring it it works fine. Weird. Thank you!