Hello.
I am trying to make a part rotate around a point. The point in this case is the dummy. I am trying to make the part rotate around the dummy in a loop, which I’ll use a server-script for using while true do
. Does anybody know how to?
Hello.
I am trying to make a part rotate around a point. The point in this case is the dummy. I am trying to make the part rotate around the dummy in a loop, which I’ll use a server-script for using while true do
. Does anybody know how to?
Boop
Run it through for loop and use
Local Angle = math.deg(a * math.pi*2 / Totalnumberofpoints )
Local radius = 5
And then X,z = math.cos(Angle)*radius,math.sin(Angle)*radius
Correct me if I’m wrong