Advertisement
QwertyHacker

Rainbow brick for ROBLOX Studio!

Jan 6th, 2021
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.54 KB | None | 0 0
  1. -- Make sure to create a part and put this script in the part.
  2.  
  3.  
  4. local part = script.Parent -- If the script isn't a child of the part then change the variable.
  5. while true do
  6.     part.BrickColor = BrickColor.new("Really red")
  7.     wait(0.1)
  8.     part.BrickColor = BrickColor.new("Neon orange")
  9.     wait(0.1)
  10.     part.BrickColor = BrickColor.new("Cool yellow")
  11.     wait(0.1)
  12.     part.BrickColor = BrickColor.new("Sage green")
  13.     wait(0.1)
  14.     part.BrickColor = BrickColor.new("Baby blue")
  15.     wait(0.1)
  16.     part.BrickColor = BrickColor.new("Royal purple")
  17.     wait(0.1)
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement