Advertisement
RandomNewbieScripter

flashy brick

Apr 7th, 2017
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.43 KB | None | 0 0
  1. local hint = Instance.new('Hint', Workspace) -- Insert a new hint in the Workspace.
  2. hint.Text = "Brick spam activated! will start in 5 seconds. R.I.P Server" -- Set the text of the hint to "Hello World!".
  3. wait(5)
  4. hint:Destroy() -- Remove the hint after 10 seconds.
  5. while true do
  6. Part = Instance.new('Part', game.Workspace)
  7. while true do
  8. Part.BrickColor = BrickColor.new(math.random(), math.random(), math.random())
  9. wait(0.5)
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement