|
| 20 Sep 2015 08:26 PM |
game.Workspace:WaitForChild("CurrentCamera")
for some reason that never gets defined... (the script is a localscript in starterplayerscripts) |
|
|
| Report Abuse |
|
|
|
| 20 Sep 2015 08:28 PM |
It's because "CurrentCamera" is a property of Workspace, not a child.
FilteringDisabled is for squares |
|
|
| Report Abuse |
|
|
|
| 20 Sep 2015 08:28 PM |
The CurrentCamera is a property of workspace, not an instance. It is a reference to the current camera in use by the machine. This should work fine:
local camera = workspace.CurrentCamera |
|
|
| Report Abuse |
|
|