As the title says, I want to tween VectorVelocity to give an acceleration but I’m no sure exactly what my goal should be declared as.
local ratte_velocity = script.Parent.PRIMARY.Attachment.LinearVelocity.VectorVelocity
local test = Vector3.new(-3, 0, 0)
local accelerate = TS:Create(ratte_velocity, TweenInfo.new(5), {VectorVelocity = test})
It looks like you are tweening the VectorVelocity’s VectorVelocity.
Fixed:
local ratte_velocity = script.Parent.PRIMARY.Attachment.LinearVelocity
local test = Vector3.new(-3, 0, 0)
local accelerate = TS:Create(ratte_velocity, TweenInfo.new(5), {VectorVelocity = test})