Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Raining Giant Cubes
- -- Made By Clyclop12345
- -- This will lag and this was made for script builder
- -- If you die it'll stop
- while true do
- local p = Instance.new("Part")
- local selectionBox = Instance.new("SelectionBox",p)
- selectionBox.Adornee = p
- selectionBox.Color = BrickColor.new("Really black")
- p.Parent = game.Workspace
- p.Position = Vector3.new ((math.random(-500, 500)),200,(math.random(-500,500)))
- p.Size = Vector3.new( 50, 50, 50 )--The size
- p.BrickColor = BrickColor:Random()
- p.Shape = 1
- p.Material = "Neon"
- p.Locked = true
- p.Anchored = false
- p.Transparency = 1
- p.CanCollide = true
- wait()
- end
Add Comment
Please, Sign In to add comment