MoonAnimator how do i apply CFrame animation to Models (Cars)

So i’ve been animating this scene for a while now,
its an Animation made in moonlight which changes the CFrame of 4 vehicles.

Though, now i have no idea how to apply this animation in the Game, i tried exporting all the keyframe sequences, making them animations and wrote this script to apply to one of the models

local Story = game.Workspace:FindFirstChild("Story")
local NPCcars = Story:FindFirstChild("NPCcars")
local PlayerCar = Story:FindFirstChild("Player"):FindFirstChild("Car")


	local Anim1 = Instance.new("Animation", NPCcars.Brad.Car)
	Anim1.AnimationId = "rbxassetid://6971891890"
	local AnimBrad = NPCcars.Brad.Car:FindFirstChild("Animation")
	local Anim1Track = NPCcars.Brad.Car:FindFirstChild("Humanoid"):LoadAnimation(Anim1)
	Anim1Track:Play()

here a screenshot showing the window with Moonlight animation and the cars in the background (without running the game, just in workspace)

Help would be apreciated because i need this animation for a Sequence on my Game.

just to tell yall, i tried it on an AnimationController then i also tried on humanoid, ofcourse neither worked.