of     1   

dallasdallasdallas
#44636929Saturday, March 26, 2011 8:30 PM GMT

May anyone please pm me if you know how to make stoplights?
SoulStealer9875
#44637156Saturday, March 26, 2011 8:35 PM GMT

It's pretty easy really, I'm bored so I will make the script >_> ----------------------- red = script.Parent.RedLight amber = script.Parent.AmberLight green = script.Parent.GreenLight time = 5 ------------------------ red.Transparency = 0.4 amber.Transparency = 0.4 green.Transparency = 0.4 while true do wait() red.Transparency = 0 wait(time) red.Transparency = 0.4 amber.Transparency = 0 wait(2) amber.Transparency = 0.4 green.Transparency = 0 wait(time) end It's very basic, really.
pwnedu46
#44638775Saturday, March 26, 2011 9:00 PM GMT

I remember making one of these a _LONG_ time ago :D
SoulStealer9875
#44639252Saturday, March 26, 2011 9:07 PM GMT

Yeah, I am so bored I even made a model of it and can be found here: http://www.roblox.com/StopLight-item?id=48686521
boynedmaster
#44640106Saturday, March 26, 2011 9:21 PM GMT

For this script to work you need to make a model and inside must be three bricks (one named red one named yellow one named green) and the script is in NOTHING but the model. --Start of script a = script.Parent r = a.Red y = a.Yellow g = a.Green while true do r.Color = "Really Red" y.Color = "Black" g.Color = "Black" wait(6) --Change to time the stoplight is red r.Color = "Black" y.Color = "Black" g.Color = "Green" wait(10) --Change to time the light is green r.Color = "Black" y.Color = "Yellow" g.Color = "Black" wait(3) --Now the yellow light cant take forever can it?
SoulStealer9875
#44640166Saturday, March 26, 2011 9:21 PM GMT

@boyned, Learn to script please.
boynedmaster
#44640241Saturday, March 26, 2011 9:23 PM GMT

Why is it wrong?
SoulStealer9875
#44640340Saturday, March 26, 2011 9:24 PM GMT

@boyned, First off, 'Color' is not a property of part. There is no end statement for the while loop, and BrickColor3.new( expected near the color value.
boynedmaster
#44640457Saturday, March 26, 2011 9:26 PM GMT

Eh Im not good but I know SOME stuff
SoulStealer9875
#44640611Saturday, March 26, 2011 9:28 PM GMT

I see.
flappydavid
#44641143Saturday, March 26, 2011 9:37 PM GMT

LOL I made some a while ago...
dallasdallasdallas
#44645456Saturday, March 26, 2011 10:47 PM GMT

I don't get it, can someone send me a message with details like where to go and that?
SoulStealer9875
#44672190Sunday, March 27, 2011 8:46 AM GMT

@dalla, I already did, I made it a free model. http://www.roblox.com/StopLight-item?id=48686521
tinyscooter
#49845160Monday, July 04, 2011 1:02 AM GMT

roblox never told me how to script!!
tinyscooter
#49845261Monday, July 04, 2011 1:03 AM GMT

can you make me one?
boynedmaster
#49847544Monday, July 04, 2011 1:47 AM GMT

@Tiny Why did you bump this?
tinyscooter
#87571166Tuesday, January 22, 2013 9:25 PM GMT

i shoulda quit roblox a LONG time ago

    of     1