Hi, I’m trying to figure out how I could make an AlignPosition “follow behind” as in like chasing something. I’m trying to make some flying part chase me but wherever I run, it just instantly goes to the attachments position and stays there.
Do I have to use something else for it to work or can the Instance be edited for it to work?
AlignPosition has a MaxVelocity property, a MaxForce property, a MaxAxisForce property and a ForceLimitMode property. MaxVelocity can be used to set the maximim speed (it’s a number, not a vector despite its name).
If ForceLimit mode is Magnitude, you can use MaxForce to set the maximum acceleration magnitude. If ForceLimitMode is PerAxis, MaxAxesForce can be used to set the maximum acceleration vector. The force is calculated as force = acceleration * part mass.