You can write your topic however you want, but you need to answer these questions:
-
What do you want to achieve? Keep it simple and clear!
Make a Circle Around a Point With Small Individual parts -
What is the issue? Include screenshots / videos if possible!
i dont know how to make it work -
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
Ive tried just adding to it but it doesent circle around
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
local Amt = 0
repeat
local Clone = game.Workspace.StormStats.BoarderParts.ClonePart:Clone()
Clone.Parent = game.Workspace.StormStats.BoarderParts.ClonePart.Parent
Clone.Name = "BoarderPart"
Clone.Position = Vector3.new(Orgin[1], game.Workspace.StormStats.BoarderParts.ClonePart.Position.Y, Orgin[2]) + Vector3.new(Radius * Amt,0,Radius * Amt)
Clone.CFrame = CFrame.lookAt(Clone.Position, Vector3.new(Orgin[1], Clone.Position.Y, Orgin[2]))
wait(1)
Amt += 5
until false
Just a note this is not the full script but its all you realy need
What the Listed script does is it spawns a part and just places it behind the other one
I need the possition to be right next to the other in a circle around the radius i feel all i would need to do is find a equation but i dont know what that equation would be
Thanks For Any Help!!