I have the 2 halfs of the studio logo and I want them to spin when they popup on the screen how would I do that? (like a loading spinner.)
As thesit123 said, put both of them in a frame and add this script:
while wait(.01) do script.Parent.Frame.Rotation = script.Parent.Frame.Rotation + 10 end
Make sure the frame is the same size as both of the images together.
The easiest way is to just use one image of the studio logo, so use this if you want too
while wait(.01) do script.Parent.ImageLabel.Rotation = script.Parent.ImageLabel.Rotation + 10 end