So right now I have a model which is a pet, and inside the pet model more model for like ears and what not. How do i move them all together when using tween service?
function petAnimation()
local Hatchedpet = getRandomPet()
if not Hatchedpet then return end
Hatchedpet.PrimaryPart.CFrame = PetSpawn.CFrame
local targetPosition = dropPet.Position
local moveTweenInfo = TweenInfo.new(2, Enum.EasingStyle.Linear, Enum.EasingDirection.Out)
local moveGoal = {Position = targetPosition}
local moveTween = TweenService:Create(Hatchedpet.PrimaryPart, moveTweenInfo, moveGoal)
moveTween:Play()
moveTween.Completed:Wait()
end```