Advertisement
Clyclop

Untitled

Sep 5th, 2016
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. -- Raining Giant Cubes (Spam Version)
  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. p.Parent = game.Workspace
  11. p.Position = Vector3.new ((math.random(-500, 500)),200,(math.random(-500,500)))
  12. p.Size = Vector3.new( 50, 50, 50 )--The size
  13. p.BrickColor = BrickColor:Random()
  14. p.Shape = 1 -- 0 = Ball; 1= Brck; 2=Cylinder
  15. p.Material = "Neon"
  16. p.Locked = true
  17. p.Anchored = false
  18. p.CanCollide = true
  19. wait()
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement