Advertisement
Axprotss

Raining tacos test 2

Aug 17th, 2022 (edited)
498
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.60 KB | Gaming | 0 0
  1. while true do
  2. wait(0.1)
  3. local p = Instance.new('Part')
  4. local d1 = Instance.new("Decal")
  5. local d2 = Instance.new("Decal")
  6. p.Transparency = 1
  7. p.Parent = game.Workspace
  8. p.Position = Vector3.new ((math.random(-100, 100)),100,(math.random(-100,100)))
  9. p.Size = Vector3.new(2, 0.2, 1)
  10. p.BrickColor = BrickColor.new(11)
  11. d1.Parent = game.Workspace.Part
  12. d1.Texture = "rbxassetid://14846949"
  13. d1.Face = Enum.NormalId.Top
  14. d2.Parent = game.Workspace.Part
  15. d2.Texture = "rbxassetid://14846949"
  16. d2.Face = Enum.NormalId.Bottom
  17. p.Reflectance= .1
  18. p.Locked = true
  19. p.Anchored = false
  20. p.CanCollide = true
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement