|
| 28 Aug 2013 10:30 AM |
I stopped scripting for 3 months, and I feel like I've lost all my knowledge of it. So I made this script to see if I was still able to do basic things, such as the following.
Why doesn't this work?
Noob = game.Workspace.Part function HeTouchedIt() Noob.BrickColor.BrickColor.new = "Really blue" wait(3) Noob.BrickColor.BrickColor.new = "Medium stone grey" end game.Workspace.Part.Touched:connect(HeTouchedIt) |
|
|
| Report Abuse |
|
|
Mikesly
|
  |
| Joined: 07 Sep 2007 |
| Total Posts: 4593 |
|
|
| 28 Aug 2013 10:31 AM |
Noob.BrickColor = BrickColor.new("Really blue") wait(3) Noob.BrickColor = BrickColor.new("Medium stone grey") |
|
|
| Report Abuse |
|
|
|
| 28 Aug 2013 10:33 AM |
OH!!!!!! I knew that, like, 3 months ago, but then I got bored and didn't script. lol |
|
|
| Report Abuse |
|
|
| |
|