Need some help with cframe

I’m trying to figure out how I can get the middle projectile in this picture to be slightly behind the other 2
C__Users_Admin_OneDrive_Desktop_Bullet Hell.rbxl - Roblox Studio 2_12_2021 9_37_20 PM (2)

This is the code I currently have for this

		local Angles = {
			{0, -11, 0},
			{0, 0, 0},
			{0, 11, 0},
		}


		for _,v in pairs(Angles) do

			local Projectile = CreateProjectile(EnemyModel)

			Projectile.CFrame = CFrame.new(Projectile.Position,Target.Position)

			Projectile:SetNetworkOwner(nil)

			Projectile.BodyVelocity.Velocity = (Projectile.CFrame * CFrame.Angles(math.rad(v[1]),math.rad(v[2]),math.rad(v[3]))).lookVector * 30

		end		

I’m not great at using cframe so it’s probably something obvious I’m missing so sorry lol.

Are you trying to curve using cframe? If so here is a good topic made by roblox: https://developer.roblox.com/en-us/articles/Bezier-curves