Advertisement
Doomix

Volcano

May 3rd, 2015
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. for i = -3,3, .1 do
  2. for j = -3,3, .1 do
  3.  
  4. y=math.sin(math.sqrt(i^2+j^2))
  5.  
  6. p = Instance.new("Part")
  7. p.CFrame = CFrame.new(Vector3.new(100*i, 100*y, 100*j))
  8. p.Size = Vector3.new(8,8,8)
  9. p.Anchored = true
  10. p.BottomSurface = "Smooth"
  11. p.TopSurface = "Smooth"
  12. p.Parent = game.Workspace
  13. p.BrickColor = BrickColor.new(217)
  14.  
  15. end end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement