Advertisement
Clyclop

Untitled

Sep 5th, 2016
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. while true do wait()
  2. local p = Instance.new("Part") --Don't Change this
  3. p.Parent = game.Workspace
  4. p.Position = Vector3.new ((math.random(-500, 500)),200,(math.random(-500,500))) --DONT CHANGE
  5. p.Size = Vector3.new( 50, 50, 50 )--The size
  6. p.BrickColor = BrickColor:Random() --color code in desc
  7. p.Shape = 1 -- 0 = Ball; 1= Brick; 2=Cylinder
  8. p.Material="Neon"
  9. p.Locked = true --Is the brick locked? (Means Can you delete it?Like in those building games)
  10. p.Anchored = false --Is the brick anchored?
  11. p.CanCollide = true-- Does it go trought the floor? true = No IT doesn't; false= IT falls trought your floors.
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement