What do I want achieve?
I just want to make a subtration function. Which points go from A - B.
Can you show us what you mean?
So the Blue should go to the Yellow. I want use Parts instead of models

Why is your function not working? and what have you been tried so far?
The Problem is that I dont know how I can make a subtration function. So can you help?
local function Vectorsub(Va, Vb)
local v = Vector3.new()
v.Position = Va.Position.X - Vb.Position.X
v.Position = Va.Position.Y - Vb.Position.Y
v.Position = Va.Position.Z - Vb.Position.Z
return v
end
local Part1 = game.Workspace.Part1
local Part2 = game.Workspace.Part2
Vectorsub(Part1.Position, Part2.Position)