Advertisement
MandB

Light

Sep 17th, 2021
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. local PointLight = script.Parent.PointLight
  2.  
  3. while true do
  4. script.Parent.Material = "Metal"
  5. PointLight.Enabled = false
  6. wait(math.random(0.25,1))
  7. script.Parent.Material = "Neon"
  8. PointLight.Enabled = true
  9. wait(math.random(0.25,1))
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement