|
| 08 Feb 2012 04:36 PM |
I was trying to make an alternate way to the FindFirstChild method, when I found something I thought would work. Eagerly, I tested it, but it didn't work. I couldn't Identify what was wrong. for i =1, 100 .5 do wait(10) game.workspace.stjoebears.torso.Transparency = 1 |
|
|
| Report Abuse |
|
|
| |
|
mage11561
|
  |
| Joined: 03 Sep 2008 |
| Total Posts: 13217 |
|
| |
|
|
| 08 Feb 2012 04:39 PM |
Oh, so it should look like this? for i =1, 100, .5 do wait(10) game.workspace.stjoebears.torso.Transparency = 1 end |
|
|
| Report Abuse |
|
|
grimm343
|
  |
| Joined: 18 Sep 2008 |
| Total Posts: 2796 |
|
|
| 08 Feb 2012 04:39 PM |
So.. 198 times (one each 10 seconds), it will increase variable 'i' by '0.5', and make your Torso transparent..? You forgot a comma and an 'end'. |
|
|
| Report Abuse |
|
|
grimm343
|
  |
| Joined: 18 Sep 2008 |
| Total Posts: 2796 |
|
| |
|
| |
|
|
| 08 Feb 2012 04:45 PM |
for i=current, maximum, intervals do? |
|
|
| Report Abuse |
|
|
| |
|