of     1   

TheOrangeNebula
#183796782Wednesday, February 17, 2016 2:15 AM GMT

How do you make a gui rotate into a circle?
spinywind
#183801944Wednesday, February 17, 2016 3:27 AM GMT

while true do script.Parent.Rotaion = script.Parent.Rotaion + 3 wait(.1) end
feqi
#183802306Wednesday, February 17, 2016 3:33 AM GMT

local size=20 local centerx, centery = 150,150 while true do for i = -math.pi,math.pi,(math.pi/12) do script.Parent.Position = UDim2.new(0,centerx+(math.cos(i)*size), 0,centery+(math.sin(i)*size)) wait() end end
Darkenus
#183802390Wednesday, February 17, 2016 3:34 AM GMT

like spiny showed, there is a property in Guis called 'Rotation' http://wiki.roblox.com/index.php?title=API:Class/GuiObject/Rotation thus all you have to do is make a loop where you turn the gui, by increasing its rotation.
feqi
#183802433Wednesday, February 17, 2016 3:35 AM GMT

oh lel I thought he meant drawing a circle
Darkenus
#183802562Wednesday, February 17, 2016 3:38 AM GMT

sir that is some very complicated math dere are you in like calculus or something
feqi
#183802622Wednesday, February 17, 2016 3:39 AM GMT

no im not in high school yet
cofunction
#183802649Wednesday, February 17, 2016 3:39 AM GMT

I'm in preschool.
Qorm
#183804666Wednesday, February 17, 2016 4:10 AM GMT

for i=1,(math.pi*(math.sin(90)+math.pi/2)) do local x=Instance.new("ImageLabel",script.Parent) local 4thdimension=(math.cos(((sqrt(5) + 1) / (2 - 1)))^math.pi/(i*1/4)) x.Rotation = UDim2.new(4thdimension+2,4thdimension+4,4thdimension+6) x.Position=UDim2.new(4thdimension/2-2,4thdimension/2-4,4thdimension/2-6) end my personal equation, it will make a sunflower
128Gigabytes
#183804933Wednesday, February 17, 2016 4:14 AM GMT

It doesn't make a flower ;(
Qorm
#183836703Wednesday, February 17, 2016 8:39 PM GMT

yea

    of     1