Making a death effect similar to Combat Warriors

I want to make a death effect similar to Combat Warriors, video shown below

Specifically I don’t know how to do the camera movement, I know one way is you can set the Camera’s CFrame to the part, but I don’t know how to move the part like that

A way to move the part your zooming your camera could be sth like this:

local part = workspace.Part:Clone()

OnDeath()
   local pos = plr.Character.HumanoidRootPart.Position
   part.CFrame = CFrame.new(pos.X - 5, pos.Y, pos.Z + 5)
end

Sth like this, you have to test out the right amounts to add to the CFrame of pos