Need help with Camera cutscene and camera shake

  1. What do you want to achieve?
    A moving camera with a camera shake
  2. What is the issue?
    Camera will not shake when using “EZ Camera shake”.
  3. What solutions have you tried so far?
    Knowing that the issue is because both tweens are modifying the CFrame, it won’t work at the same time, therefore I looked into lerps but that didn’t seem to help either as the lerp was too fast.
    I also looked into the developer forum, but still no help.
-- Code used
while looping do
	for i, v in pairs(scenes:GetChildren()) do
		if looping == false then return end
		cam.CFrame = v["Waypoint1"].CFrame
		currentTween = tween:Create(cam, TweenInfo.new(10), {CFrame = v["Waypoint2"].CFrame}) 
		currentTween:Play()
		wait(8)
	end
end