Clyclop

Untitled

Sep 5th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. -- Raining Giant Cubes
  2. -- Made By Clyclop12345
  3. -- This will lag and this was made for script builder
  4. -- If you die it'll stop
  5.  
  6.  
  7.  
  8. while true do
  9. local p = Instance.new("Part")
  10. local selectionBox = Instance.new("SelectionBox",p)
  11. selectionBox.Adornee = p
  12. selectionBox.Color = BrickColor.new("Really black")
  13. p.Parent = game.Workspace
  14. p.Position = Vector3.new ((math.random(-500, 500)),200,(math.random(-500,500)))
  15. p.Size = Vector3.new( 50, 50, 50 )--The size
  16. p.BrickColor = BrickColor:Random()
  17. p.Shape = 1
  18. p.Material = "Neon"
  19. p.Locked = true
  20. p.Anchored = false
  21. p.Transparency = 1
  22. p.CanCollide = true
  23. wait()
  24. end
Add Comment
Please, Sign In to add comment