When attaching a part to the character using AlignPosition with a set Velocity (5) and MaxForce (999999) it instantly goes to the character attachment instead of incrementally moving
Reproduction Steps:
Insert the following code into a LocalScript inside of StarterCharacterScripts
local character = script.Parent
local rootPartAttachment = Instance.new("Attachment")
rootPartAttachment.Position = Vector3.new(0, 0, 5)
rootPartAttachment.Parent = character.PrimaryPart
local part = Instance.new("Part")
part.CanCollide = false
part.Size = Vector3.one
part.Parent = character
local partAttachment = Instance.new("Attachment")
partAttachment.Parent = part
local alignPosition = Instance.new("AlignPosition")
alignPosition.Attachment0 = partAttachment
alignPosition.Attachment1 = rootPartAttachment
alignPosition.MaxForce = 999999
alignPosition.MaxVelocity = 5
alignPosition.Parent = part