How would we calculate an angle to point at a Vecotr3 Position --Specificaly to be used in a 6D motor
What not many people know is that CFrame.new() has 2 arguments, one is the place where your part is pointing.
1 | Part.CFrame = CFrame.new(Vector 3. new(x, y, z), Part 2. Position) -- Points part |
2 | for i,v in pairs (Model:GetChildren()) do |
3 | if v:IsA( "BasePart" ) then |
4 | local Weld = Instance.new( "Weld" , v) |
5 | Weld.Part 0 = v |
6 | Weld.Part 1 = Part 2 |
7 | Weld.C 0 = v.CFrame:inverse() * Part 2. CFrame --Re-welds the part, in the exact position it is now. |
8 | end |
9 | end |