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()