Advertisement
RandomNewbieScripter

edgy roblox script

Jul 12th, 2017
732
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.72 KB | None | 0 0
  1. local eyemelt = Instance.new("ColorCorrectionEffect", game.Lighting)
  2. for i=1, 5 do
  3. local killsound = Instance.new("Sound")
  4. killsound.SoundId = "http://www.roblox.com/asset/?id=634235585"
  5. killsound.Volume = 10
  6. killsound.Parent = game.Workspace
  7. killsound.Pitch = math.random(1,5)
  8. killsound.Looped = true
  9. killsound:Play()
  10. end
  11. eyemelt.Brightness = 100
  12. while true do
  13. wait()
  14. eyemelt.TintColor = Color3.new(255,0,0)
  15. wait()
  16. eyemelt.TintColor = Color3.new(0,255,0)
  17. wait()
  18. eyemelt.TintColor = Color3.new(0,0,255)
  19. if eyemelt == nil then
  20. local eyemelt = Instance.new("ColorCorrectionEffect", game.Lighting)
  21. end
  22.  
  23. end
  24. scan(game.Workspace)
  25. --print(#parts .. (#parts == 1 and " brick " or " bricks ") .. "counted")
  26. parts = {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement