How to position part 5 studs to the right of another part

I’ve tried experimenting with CFrame.RightVector a couple times but it just doesn’t seem to work. I’ve tried searching it up both on forum, developer, and other websites but there’s none that pops up related to what I’m looking. The only two things that pop up are LookAt or LookVector which I assume doesn’t give the right direction of a part.

So how do I position a part 5 studs to the right of another part using CFrame.RightVector?

workspace.Part.Position = workspace.Part1.Position + workspace.Part1.CFrame.RightVector * 5

or

workspace.Part.CFrame = workspace.Part1.CFrame * CFrame.new(5, 0, 0)

or

workspace.Part.Position = workspace.Part1.CFrame:PointToWorldSpace(Vector3.new(5, 0, 0))