Advertisement
Axprotss

Raining tacos

Aug 15th, 2022 (edited)
913
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.49 KB | Gaming | 0 0
  1. while true do
  2. wait(0.1)
  3. local RAIN_MESH_ID 'rbxassetid://14846869'
  4. local RAIN_TEXTER_ID = 'rbxassetid://14846834'
  5. local p = Instance.new("MeshPart")
  6. p.Parent = game.Workspace
  7. p.Position = Vector3.new ((math.random(-100, 100)),100,(math.random(-100,100)))
  8. p.Size = Vector3.new(0.283, 0.638, 1.223)
  9. p.BrickColor = BrickColor.new(11)
  10. p.MeshId = RAIN_MESH_ID
  11. p.TextureID = RAIN_TEXTER_ID
  12. p.Transparency= .2
  13. p.Reflectance= .1
  14. p.Locked = true
  15. p.Anchored = false
  16. p.CanCollide = true
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement