|
| 04 Jul 2012 07:55 AM |
I can't figure out why this isn't working,it's in a local script and the script gets cloned into the character of a player,so it's in all the right places.But,there is no output and nothing happens when this script is activated.Why?
local camera = Workspace.CurrentCamera oldsubject = CurrentCamera.CameraSubject wait() camera.CameraSubject = game.Workspace.Cams.1 wait(15) camera.CameraSubject = game.Workspace.Cams.2 wait(5) camera.CameraSubject = game.Workspace.Cams.3 wait(10) camera.CameraSubject = oldsubject |
|
|
| Report Abuse |
|
|
|
| 04 Jul 2012 08:00 AM |
Here, I changed it a little bit.
local camera = Workspace.CurrentCamera oldsubject = camera.CameraSubject oldtype = camera.CameraType wait() camera.CameraType = "Fixed" camera.CameraSubject = game.Workspace.Cams.1 wait(15) camera.CameraSubject = game.Workspace.Cams.2 wait(5) camera.CameraSubject = game.Workspace.Cams.3 wait(10) camera.CameraSubject = oldsubject camera.CameraType = oldtype |
|
|
| Report Abuse |
|
|
| |
|
|
| 04 Jul 2012 08:28 AM |
| I was kind of expecting a reply or something since this is scripting HELPERS if I'm not mistaken. |
|
|
| Report Abuse |
|
|
|
| 04 Jul 2012 08:46 AM |
Why is there a .1?
- Striked |
|
|
| Report Abuse |
|
|
|
| 04 Jul 2012 08:47 AM |
Second of all, wouldn't your second variable be: oldsubject = camera.CameraSubject?
- Striked |
|
|
| Report Abuse |
|
|
|
| 04 Jul 2012 08:48 AM |
Third of all... What is this supposed to do? I know a bit about camera manipulation.
- Striked |
|
|
| Report Abuse |
|
|
|
| 04 Jul 2012 09:17 AM |
| It supposed to take your camera through a series of points. 1,2,and 3 are the name of the parts the camera is supposed to go through,should I name them part1,part2,part3 instead? |
|
|
| Report Abuse |
|
|
Wowgnomes
|
  |
| Joined: 27 Sep 2009 |
| Total Posts: 26255 |
|
| |
|