of     1   

joshboy7797
#36408597Tuesday, November 02, 2010 9:06 PM GMT

Ok so I am trying to make a script that is a stop light but this is all I have: while true do light one(then ???) light two(then???) light three(then???) but this is just a part of it. I want it to change colors but I dont know how to. Would it be like: light one=green light two=black light three=black or what?
crazypotato4
#36408679Tuesday, November 02, 2010 9:08 PM GMT

joshboy7797
#36408768Tuesday, November 02, 2010 9:09 PM GMT

ugh you could just 'help' as this is 'scripting helpers'
crazypotato4
#36408846Tuesday, November 02, 2010 9:10 PM GMT

That is 'help'. Learn to script before you come onto this forum.
Spectrumw
#36408879Tuesday, November 02, 2010 9:11 PM GMT

'Helping' you involves a whole new script.
joshboy7797
#36408924Tuesday, November 02, 2010 9:12 PM GMT

I know how to script, if you want proof go to my place, I just never learned how to scirpt colors
joshboy7797
#36408966Tuesday, November 02, 2010 9:12 PM GMT

plus that was just a part of the script
bonboneater
#36408985Tuesday, November 02, 2010 9:12 PM GMT

Orly, this is pretty darn basic.
Zarcius
#36409102Tuesday, November 02, 2010 9:14 PM GMT

Well... You need a stop light. Then you need the three bulbs. So it looks like this workspace ..StopLight --MODEL ....Light1 ....Light2 ....Light3 ....Script and you'd do something like this. while true do --Creates a loop. script.Parent.Light1.Color = BrickColor.new("Green")--Dunno if this is a real color. wait(10)--Sets a wait for the loop. Change the number in parentheses for different times script.Parent.Light1.Color = BrickColor.new("Black") script.Parent.Light2.Color = BrickColor.new("New Yeller") wait(10) script.Parent.Light2.Color = BrickColor.new("Black") script.Parent.Light3.Color = BrickColor.new("Really red") end --Ends the loop.
Zarcius
#36409166Tuesday, November 02, 2010 9:15 PM GMT

Oops. Use this one instead. while true do --Creates a loop. script.Parent.Light1.Color = BrickColor.new("Green")--Dunno if this is a real color. wait(10)--Sets a wait for the loop. Change the number in parentheses for different times script.Parent.Light1.Color = BrickColor.new("Black") script.Parent.Light2.Color = BrickColor.new("New Yeller") wait(10) script.Parent.Light2.Color = BrickColor.new("Black") script.Parent.Light3.Color = BrickColor.new("Really red") wait(10) script.Parent.Light3.Color = BrickColor.new("Black") end
myrco919
#36409227Tuesday, November 02, 2010 9:16 PM GMT

[ Content Deleted ]
joshboy7797
#36409630Tuesday, November 02, 2010 9:21 PM GMT

thanks guys, i new the script except didnt know how to change the colors
bonboneater
#36410487Tuesday, November 02, 2010 9:33 PM GMT

@Mycro Three actually. :D
crazypotato4
#36410614Tuesday, November 02, 2010 9:34 PM GMT

*uses bomb to light the fuse of BBE's bomb* bai :D *BBE's bomb asplodes in his hand* ... *if he had hands*

    of     1