Elien wrote about an error "Missing inductance value".? There were several other errors too.
Elien, the reason is simple, but might not be obvious.? You used parameters named L1 and L2, but you never defined them.? You are probably thinking, "But wait, I did define them."? Well, not exactly.? You had these two lines:
. param L1 = 159.2?
. param L2 = 159.2?
which LOOK as if they have the dot-commands ".param".? But they did not.? There is a space between the dot (period) and the word "param", so they were seen by LTspice as non-commands.
Edit both lines to get rid of that extra space, and all will be well.
Andy