|
| 26 Jun 2014 03:09 PM |
Anyone have a rain script that looks good and doesn't send a ton of random bricks falling down.
Ned Flanders |
|
|
| Report Abuse |
|
| |
|
| 26 Jun 2014 03:27 PM |
-- All I got
while wait() do for i=1, 10 do local part1 = Instance.new("Part",workspace) part1.Size = Vector3.new(.2,.2,.2) part1.formFactor = "Symmetric" game.Debris:AddItem(part1,3) part1.Position = Vector3.new(math.random(-256,256),math.random(50,150),math.random(-256,256)) part1.BrickColor = BrickColor.new("Blue") part1.Transparency = .5 end end |
|
|
| Report Abuse |
|