SebTDZ

Untitled

Jul 22nd, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.25 KB | None | 0 0
  1. Amount = 20
  2. DA = 360 / Amount
  3. for i=1,Amount do
  4.     local p = Instance.new('Part', Workspace)
  5.     p.Size = Vector3.new(1, 1, 1)
  6.     p.Anchored = true
  7.     p.CFrame = CFrame.new(0, 25, 0) * CFrame.Angles(0, math.rad(DA * i), 0) * CFrame.new(Amount,0,0)
  8.     wait()
  9. end
Add Comment
Please, Sign In to add comment