Advertisement
Guest User

Brick automatic/spam spawner // ROBLOX

a guest
Jul 10th, 2018
2,854
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.69 KB | None | 0 0
  1. --Author @Alex_Stockwell#4821 on discord. // Yes you can change/add variables onto this, such as part.NonCollide = true/false \\
  2.  
  3. while true do
  4.  
  5. part = Instance.new("Part")
  6. part.Anchored = true
  7. part.BrickColor = Brickcolor.new("New Yeller") --Change "New Yeller" to any brick color in ROBLOX Studio color picker.
  8. part.Position = Vector3.new(0,5,0) --It will spawn 5 studs above you're Baseplate in the very middle.
  9.  
  10. part.Parent = game.Workspace --You can change the Parent of this. Say if you have a folder called "Spam Bricks" edit this to game."[Spam Bricks"]
  11.  
  12. wait(0.5) --Change the number in the brackets to change how fast they spawn **if you delete it, it will crash ROBLOX Studio.**
  13.  
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement