How to make a spinning wheel?

Hi, how would I make a spinning wheel in UIs that just goes around the GUI, by the way, I don’t care about selecting a random one right now, my main problem is just to move the selector thing. I have no idea on how I move the selector thing, help please

Like the wheel of fortune? My imagination tells me that you can use a hinge to just attach the selector thingy, then you have to weld cilinders to the wheel, then the result will came with gravity, if is possible.

Umm. No, I am talking about the Gui one.

A GuiObject has a property called “Rotation”. Documentation and examples can be found here.
Using this property you can rotate GuiObject’s.

1 Like

for i=0, 20, 1 do
script.Parent.Rotation = script.Parent.Rotation + 1
wait()
end

1 Like