Advertisement
DrawingJhon

Untitled

Jun 30th, 2020
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --Roblox lua script for a disco light
  2. -- this is my first roblox lua script created by dissandou91000
  3. -- Make sure that "Disco" is a sphere
  4.  
  5. Disco = workspace.Part
  6.  
  7.  
  8. light = Instance.new("PointLight")
  9. light.Parent = Disco
  10.  
  11. while true do
  12.     Disco.BrickColor = BrickColor.random()
  13.     wait(0.3)
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement