matt1zz
|
  |
| Joined: 10 May 2012 |
| Total Posts: 13 |
|
|
| 23 Jun 2015 04:07 PM |
"This is not working."
local RedMode - game.Workspace.StartLight.RedModel.PointLight
"This - in the script is not working it is under lined with red."
"Here is the whole script."
local RedMode - game.Workspace.StartLight.RedModel.PointLight local YellowModel - game.Workspace.StartLight.YellowModel.PointLight local GreenModel - game.Workspace.StartLight.GreenModel.PointLight
wait (5)
RedModel.Enabled - Ture
wait (1)
RedModel.Enabled - False
wait (1)
YellowModel.Enabled - Ture
wait (1)
YellowModel.Enabled - False
wait (1)
GreenModel.Enabled - Ture
|
|
|
| Report Abuse |
|
|
gooey333
|
  |
| Joined: 24 Mar 2013 |
| Total Posts: 1208 |
|
| |
|
gunter5
|
  |
| Joined: 15 Mar 2011 |
| Total Posts: 737 |
|
|
| 23 Jun 2015 04:09 PM |
first off its True not ture also you use = not -
local RedMode - game.Workspace.StartLight.RedModel.PointLight local YellowModel - game.Workspace.StartLight.YellowModel.PointLight local GreenModel - game.Workspace.StartLight.GreenModel.PointLight
wait (5)
RedModel.Enabled = True
wait (1)
RedModel.Enabled = False
wait (1)
YellowModel.Enabled = True
wait (1)
YellowModel.Enabled = False
wait (1)
GreenModel.Enabled = True |
|
|
| Report Abuse |
|
|
|
| 23 Jun 2015 04:10 PM |
http://www.roblox.com/Forum/ShowPost.aspx?PostID=165368390
u sicko! |
|
|
| Report Abuse |
|
|
matt1zz
|
  |
| Joined: 10 May 2012 |
| Total Posts: 13 |
|
|
| 23 Jun 2015 04:15 PM |
"Heres my new script it does not work True and False is underlined in blue
local RedModel = game.Workspace.StartLight.RedModel.PointLight local YellowModel = game.Workspace.StartLight.YellowModel.PointLight local GreenModel = game.Workspace.StartLight.GreenModel.PointLight
wait (5)
RedModel.Enabled = True
wait (1)
RedModel.Enabled = False
wait (1)
YellowModel.Enabled = True
wait (1)
YellowModel.Enabled = False
wait (1)
GreenModel.Enabled = True |
|
|
| Report Abuse |
|
|
Leg0brick
|
  |
| Joined: 24 Jul 2012 |
| Total Posts: 651 |
|
|
| 23 Jun 2015 04:17 PM |
no caps
true and false not True and False |
|
|
| Report Abuse |
|
|
matt1zz
|
  |
| Joined: 10 May 2012 |
| Total Posts: 13 |
|
| |
|
matt1zz
|
  |
| Joined: 10 May 2012 |
| Total Posts: 13 |
|
|
| 23 Jun 2015 04:22 PM |
"This still does not work."
local RedModel = game.Workspace.StartLight.RedModel.PointLight local YellowModel = game.Workspace.StartLight.YellowModel.PointLight local GreenModel = game.Workspace.StartLight.GreenModel.PointLight
wait (5)
RedModel.Enabled = true
wait (1)
RedModel.Enabled = false
wait (1)
YellowModel.Enabled = true
wait (1)
YellowModel.Enabled = false
wait (1)
GreenModel.Enabled = true |
|
|
| Report Abuse |
|
|
Leg0brick
|
  |
| Joined: 24 Jul 2012 |
| Total Posts: 651 |
|
| |
|