of     1   

Obscurely
#183816714Wednesday, February 17, 2016 11:44 AM GMT

Firstly, I can't script to save my life, so explain to me like I was 5. I have the following script, inside a block which will be the button for three lights that will be random colours; function onClicked(playerWhoClicked) script.Parent.Parent.light1 = BrickColor.Random() script.Parent.Parent.light2 = BrickColor.Random() script.Parent.Parent.light3 = BrickColor.Random() end script.Parent.ClickDetector.MouseClick:connect(onClicked) However, this doesn't change the colour of any of the lights. Someone help? :/
Egzekiel
#183816755Wednesday, February 17, 2016 11:47 AM GMT

Lights use Color3, not BrickColor.
Obscurely
#183816770Wednesday, February 17, 2016 11:48 AM GMT

'lights' as in bricks that are coloured not actual pointlights etc
cheesecake123456
#183817022Wednesday, February 17, 2016 12:02 PM GMT

light.BrickColor = BrickColor.Random()

    of     1