Tween not working

Hi all
i am making a tween for a car but for some reason it is not working!

heres the script

local Car = game.Workspace.Car
local Destination1 = game.Workspace.Car1
local Destination2 = game.Workspace.Car2

local TweenService = game:GetService("TweenService")
local CarTweenInfo = TweenInfo.new(6, 
									Enum.EasingStyle.Linear,
									Enum.EasingDirection.Out,
									0,
									false,
									0)

local CarTween = TweenService:Create(Car, CarTweenInfo, {CFrame = Destination1.CFrame})

You have to call :Play() method on created CarTween variable.

like this?

local CarTween = TweenService:Play(Car, CarTweenInfo, {CFrame = Destination1.CFrame})

Edit:ok not like that

TweenService(Car, CarTweenInfo, {CFrame = Destination1.CFrame}):Play()

no the created tween itself

use your variable for that

local CarTween = TweenService:Create(Car, CarTweenInfo, {CFrame = Destination1.CFrame})

CarTween:Play()