I'm trying to manipulate the value of x, while also showing the graphic. My code is listed below:
R0 = {{Cos[2 Pi/3], -Sin[2 Pi/3]}, {Sin[2 Pi/3], Cos[2 Pi/3]}}; V1[x_] := {{Cos[x]}, {Sin[x]}}; R1 = R0.V1; R2 = R0.R1; X1 = V1[[1]][[1]]; Y1 = V1[[2]][[1]]; X2 = R1[[1]][[1]]; Y2 = R1[[2]][[1]]; X3 = R2[[1]][[1]]; Y3 = R2[[2]][[1]]; C1 = {Opacity[.2], Yellow, Disk[{0, 0}, 10, {0, 2 Pi/3}]}; C2 = {Opacity[.2], Orange, Disk[{0, 0}, 10, {2 Pi/3, 2*2 Pi/3}]}; C3 = {Opacity[.2], Blue, Disk[{0, 0}, 10, {2*2 Pi/3, 2 Pi}]}; T1 = Graphics[Translate[C1, {10*X1, 10*Y1}]]; T2 = Graphics[Translate[C2, {10*X2, 10*Y2}]]; T3 = Graphics[Translate[C3, {10*X3, 10*Y3}]]; Manipulate[Show[T1, T2, T3, PlotRange -> All, Axes -> True], {x, 0, 2 Pi}] In short, I intend to generate a graphic that shows how the pieces move as the angle for x_ changes. I can do this manually for any chosen value in place of x_ by choosing x_ and then deleting the extra manipulate function at the end.

Manipulate[ Show[Evaluate[T1 /. x -> y], Evaluate[T2 /. x -> y], Evaluate[T3 /. x -> y], PlotRange -> All, Axes -> True], {y, 0, 2 Pi}]so that you force it to calculate a translated image before showing it. If this is unclear then I will post an answer $\endgroup$