I would like to find a way to get the Position 20 studs in a direction of my choice. In this case (0,0,0), the starting Position will be the Green parts Position.
local GreenPart = script.Parent
local RedPart = Instance.new("Part")
RedPart.Parent = game.Workspace
RedPart.Color = Color3.new(1, 0, 0) --Makes part red
RedPart.Position = Vector3.new() -- where I need to find 20 studs in the direction (0,0,0) which is an Orientation.
RedPart.Anchored = true