How would I add 2 CFrame values?
game.workspace.Part1.CFrame = CFrame.new(game.workspace.Part2.Position + -1,0,-1)
this doesnt work, how would I do this?
EDIT: I misunderstood your question the first time. Let me try again.
part1.CFrame = part2.CFrame + Vector3.new(-1, 0, -1)
This should change part1's CFrame to part2 as well as add Vector3.new(-1, 0, -1).