Guest User

ROBLOX Rain Script [OTHER PLAYERS CAN SEE]

a guest
May 27th, 2019
9,614
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. while true do
  2. wait(0.1)
  3. local p = Instance.new("Part")
  4. p.Parent = game.Workspace
  5. p.Position = Vector3.new ((math.random(-100, 100)),100,(math.random(-100,100)))
  6. p.Size = Vector3.new( 2, 3, 1)
  7. p.BrickColor = BrickColor.new(11)
  8. p.Transparency= .2
  9. p.Reflectance= .1
  10. p.Shape = 0
  11. p.Locked = true
  12. p.Anchored = false
  13. p.CanCollide = true
  14. end
Advertisement
Add Comment
Please, Sign In to add comment