Advertisement
FireBlazer_Scripting

Untitled

Mar 19th, 2017
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. -- Something weird
  2. local Base = game.Workspace.Base
  3. local Lighting = game.Lighting
  4. local Brightness = Lighting.Brightness
  5.  
  6. while true do
  7. Base.Transparency = 0
  8. Base.BrickColor = BrickColor.new("Really red")
  9. wait(0.5)
  10. Base.Transparency = 1
  11. wait(0.5)
  12. Base.Transparency = 0
  13. Base.BrickColor = BrickColor.new("Lapis")
  14. wait(0.5)
  15. Base.Transparency = 1
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement