wuppii
|
  |
| Joined: 20 Feb 2010 |
| Total Posts: 1625 |
|
|
| 14 Jan 2012 01:03 PM |
Mind explaining?
wuppii ~= Pie |
|
|
| Report Abuse |
|
|
cool12309
|
  |
| Joined: 21 Sep 2008 |
| Total Posts: 1442 |
|
| |
|
wuppii
|
  |
| Joined: 20 Feb 2010 |
| Total Posts: 1625 |
|
|
| 14 Jan 2012 01:06 PM |
| Just an explaination of what that means.. |
|
|
| Report Abuse |
|
|
|
| 14 Jan 2012 01:07 PM |
I'm guessing this is a output. Your looking for lightning in the DataModel but it's not there maybe? Or it's not a property of DataModel? Try [Path to DataModel}.DataModel:findFirstChild("Lightning") I think |
|
|
| Report Abuse |
|
|
| |
|
wuppii
|
  |
| Joined: 20 Feb 2010 |
| Total Posts: 1625 |
|
|
| 14 Jan 2012 01:08 PM |
My script:
for i = -1, 60 do game.Lightning.FogEnd = 60 wait() game.Lightning.FogEnd = i end
----------------------------------- Output: ->See title<- |
|
|
| Report Abuse |
|
|
wuppii
|
  |
| Joined: 20 Feb 2010 |
| Total Posts: 1625 |
|
|
| 14 Jan 2012 01:09 PM |
| Oh, whoops, thank you for the correction. |
|
|
| Report Abuse |
|
|
wuppii
|
  |
| Joined: 20 Feb 2010 |
| Total Posts: 1625 |
|
|
| 14 Jan 2012 01:11 PM |
| For some reason the fog isn't coming closer. |
|
|
| Report Abuse |
|
|
wuppii
|
  |
| Joined: 20 Feb 2010 |
| Total Posts: 1625 |
|
| |
|
wuppii
|
  |
| Joined: 20 Feb 2010 |
| Total Posts: 1625 |
|
| |
|
| |
|
wuppii
|
  |
| Joined: 20 Feb 2010 |
| Total Posts: 1625 |
|
|
| 14 Jan 2012 02:30 PM |
| I want to make the fog come to me ( like if the wind is blowing it into my face.) |
|
|
| Report Abuse |
|
|
wuppii
|
  |
| Joined: 20 Feb 2010 |
| Total Posts: 1625 |
|
| |
|
wuppii
|
  |
| Joined: 20 Feb 2010 |
| Total Posts: 1625 |
|
| |
|
|
| 14 Jan 2012 03:21 PM |
FogEnd should be 250 FogStart should be 200
print(string.reverse'een ad ot zorra koot i ned') | ẋẌẋẌẋɖɾɒɠȏɴẋẌẋẌẋ |
|
|
| Report Abuse |
|
|
wuppii
|
  |
| Joined: 20 Feb 2010 |
| Total Posts: 1625 |
|
|
| 14 Jan 2012 03:24 PM |
So, something like this:
for i = -1, 60 do game.Lighting.FogEnd = 250 game.Lighting.ForStart = 200 wait() game.Lighting.FogEnd = i game.Lighting.FogStart = i end
??? |
|
|
| Report Abuse |
|
|
|
| 14 Jan 2012 03:25 PM |
sure.
print(string.reverse'een ad ot zorra koot i ned') | ẋẌẋẌẋɖɾɒɠȏɴẋẌẋẌẋ |
|
|
| Report Abuse |
|
|
|
| 14 Jan 2012 03:41 PM |
for i = -1, 60 do wait() game.Lighting.FogEnd = i game.Lighting.FogStart = i end
these would continuously change the FogEnd and FogStart back to 250 and 200 making 'game.Lighting.FogEnd = i' completely useless.
game.Lighting.FogEnd = 250 game.Lighting.ForStart = 200
~I've been to nil and back. |
|
|
| Report Abuse |
|
|
wuppii
|
  |
| Joined: 20 Feb 2010 |
| Total Posts: 1625 |
|
|
| 15 Jan 2012 06:31 AM |
I Changed it to this:
for i = -1, 60 do game.Lighting.FogEnd = 250 game.Lighting.FogStart = 200 end -------------------------------------- Not entirely sure if that is correct, but it does not work as it should.
|
|
|
| Report Abuse |
|
|
1Ra
|
  |
| Joined: 02 May 2010 |
| Total Posts: 2400 |
|
|
| 15 Jan 2012 07:14 AM |
for i = -1, 60 do game.Lighting.FogEnd = i game.Lighting.FogStart = i-50 end
fogstart and end should never be the same. |
|
|
| Report Abuse |
|
|