How to tween VectorVelocity

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})
2 Likes

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})
2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.