In the script it is supposed to position the players camera to a Part named "CameraPart" and make the cameras type scriptable. This does not seem to work. Any help?
1 | local cam = workspace:WaitForChild( "Camera" ) |
2 | local camp = workspace:WaitForChild( "CameraPart" ) |
3 | cam.CameraType = "Scriptable" |
4 | cam.CameraSubject = workspace.CameraPart |
So basically what you'll need to do is set the camera coordinate frame to the parts cframe as following:
1 | local cam = workspace:WaitForChild( "Camera" ) |
2 |
3 | local camp = workspace:WaitForChild( "CameraPart" ) |
4 |
5 | cam.CameraType = "Scriptable" |
6 |
7 | cam.CameraSubject = workspace.CameraPart |
8 | cam.CoordinateFrame = camp.CFrame |
LocalScript
1 | local cam = workspace.CurrentCamera |
2 | local camp = workspace:WaitForChild( "CameraPart" ) |
3 |
4 | cam.CameraType = Enum.CameraType.Scriptable |
5 | cam.CameraSubject = camp |
6 | cam.CFrame = camp.CFrame |
7 | cam.FieldOfView = 70 -- This is optional |
For a local player, you need to use the "CurrentCamera", which you cannot use :WaitForChild()
on (without creating an infinite yield)
Next, to prevent glitches, use the Enum of the CameraType rather than the string (even though it will work most times)
Finally, the camera's CFrame needs to match the part's CFrame so they are not too far away from each other, otherwise, the camera stays in place but changes its orientation only to match the CameraSubject