|
| 26 Jul 2014 12:23 PM |
OnPlayerEntered() wait(1) game.Lighting.FogEnd = 200 print("Happy go larry") game.Lighting.FogStart = 1 print("Happy go harry") game.Lighting.TimeOfDay = 03 print("Happy go marry") game.Lighting.FogColor = 225, 255, 255 game.Players.CameraMode = LockedFirstPerson
Nothing works. Please use your SH magwick. Thanks! [:TDP:] Add 1.9k to my post count |
|
|
| Report Abuse |
|
|
|
| 26 Jul 2014 12:29 PM |
game.Players.PlayersAdded:connect(function() wait(1) game.Lighting.FogEnd = 200 print("Happy go larry") game.Lighting.FogStart = 1 print("Happy go harry") game.Lighting.TimeOfDay = 03 print("Happy go marry") game.Lighting.FogColor = 225, 255, 255 game.Players.CameraMode = LockedFirstPerson end)
Try that? |
|
|
| Report Abuse |
|
|
|
| 26 Jul 2014 12:33 PM |
No, doesn't work. [:TDP:] Add 1.9k to my post count |
|
|
| Report Abuse |
|
|
Kodran
|
  |
| Joined: 15 Aug 2013 |
| Total Posts: 5330 |
|
|
| 26 Jul 2014 12:36 PM |
game.Players.PlayerAdded:connect(function(p) wait(1) game.Lighting.FogEnd = 200 print("Happy go larry") game.Lighting.FogStart = 1 print("Happy go harry") game.Lighting.TimeOfDay = 03 print("Happy go marry") game.Lighting.FogColor = Color3.new(225, 255, 255) p.CameraMode = "LockedFirstPerson" end) |
|
|
| Report Abuse |
|
|
|
| 26 Jul 2014 12:45 PM |
Mkay. The first person still doesn't work, but it the rest of it does. Also, and soon as I do go First person, the fog glitches and it all goes white! |
|
|
| Report Abuse |
|
|
|
| 26 Jul 2014 12:46 PM |
game.Players.PlayerAdded:connect(function(p) wait(1) game.Lighting.FogEnd = 200 print("Happy go larry") game.Lighting.FogStart = 1 print("Happy go harry") game.Lighting.TimeOfDay = 03 print("Happy go marry") game.Lighting.FogColor = Color3.new(225, 255, 255) p.CameraMode = Enum.CameraMode.LockFirstPerson end)
~The herp lerped a derp~ |
|
|
| Report Abuse |
|
|
Kodran
|
  |
| Joined: 15 Aug 2013 |
| Total Posts: 5330 |
|
|
| 26 Jul 2014 12:48 PM |
| It goes white because you set the fog to white... |
|
|
| Report Abuse |
|
|
| |
|