Whole Model not moving with the PrimaryPart.CFrame

Hello! This might be a really dumb topic for me since it’s a really simple one but I have a model with 2 other models (KeyHolder) in it and a primarypart which is a Union. And when I try to use TweenService on the PrimaryPart, the other models inside it don’t move. Even when I parent the models into the PrimaryPart it still doesn’t move accordingly, it just stuck at that one place. Hierachy and script included. I will be very thankful if you can help me!

Script
local TweenService = game:GetService("TweenService")

local info = TweenInfo.new(
	1,
	Enum.EasingStyle.Quad,
	Enum.EasingDirection.Out,
	-1,
	true,
	0
)

local tween = TweenService:Create(script.Parent.PrimaryPart, info, {CFrame = script.Parent.Target.CFrame})
tween:Play()
Hierachy

image

1 Like

Try setting the primary part of the other models to the union as well (if it lets you)

Nope, it won’t let me do it.

charcharchar

Ok nevermind, I switched some things in the hierachy and now it works. Thank you :slight_smile:

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