Sorry for the very late late reply, I was off for a while.
So it is unanchored ofcourse, and i want if i use it for example on Part1 to move it to Part2, I have tried this but it didnt seem to work:
local force = script.Parent.Position - script.Parent.Parent.End.Position
local oldX = force.X
local oldY = force.Y
local oldZ = force.Z
force = Vector3.new(oldX*script.Parent.Mass,oldY*script.Parent.Mass,oldZ*script.Parent.Mass)
local Attach = Instance.new("Attachment",script.Parent)
local VF = Instance.new("VectorForce")
VF.Force = force
VF.Attachment0 = Attach
VF.Parent = script.Parent
What am I doing wrong here? (Sorry, I’m new to LinearVelocity)