Hi Ryo,
E
is a built-in symbol representing the mathematical constant e. It cannot be assigned a value
E := 2*s + p + Ug + w;
Here is one way to do this
e = 2*s + p + Ug + w; (* Use e, not E *)
plots = Table[
Plot[S[y], {y, -10, 5},
PlotRange -> All,
AxesLabel -> Automatic,
PlotLabel -> "Γ" <> " = " <> ToString@Γ,
PlotLabels -> "Γ" <> " = " <> ToString@Γ,
GridLines -> {{-2.75, -2.55, -2.41, -1.61}, {0}},
GridLinesStyle -> Red],
{Γ, {0.001, .1, 1., 2, 4, 6, 8, 10, 20}}];
Single plot
Show[plots, PlotRange -> All, PlotLabel -> None]

Multiple plots
plots // Partition[#, UpTo@3] & // Grid[#, Frame -> All] &

You can change the specific values for Γ by changing this list
{0.001, .1, 1., 2, 4, 6, 8, 10, 20}