That's the error I'm getting with my tween here's the tweening code (LeftVan is a model)
local Tween = game:GetService("TweenService") local Drive = TweenInfo.new(5,Enum.EasingStyle.Quart,Enum.EasingDirection.In,1,false) local Point = Vector3.new(-136.302, 543.42, -138.172) local Tweened = Tween:Create(LeftVan,Drive,Point)
The third argument third parameter of TweenService:Create() is a dictionary of properties to tween.
To fix this, you would replace Point inside the Create method with a dictionary like this.
local Tweened = Tween:Create(LeftVan,Drive,{Position = Point})