I have tried to fix this before I posted it but basically I want to have it to where it focuses on a certain part and be a certain distance away. But it isn't doing a single thing other than outputting "Focus and Coord set!". No errors what so ever. Here is the code:
01 | -- Time for a huge script! |
02 |
03 | -- Wait For Crap -- |
04 | while game.Workspace.CurrentCamera = = nil do wait() end |
05 |
06 | local cam = game.Workspace.CurrentCamera |
07 |
08 | -- Libraries/ModuleScripts -- |
09 | --local camera = require(script.CameraPlus) |
10 | --local Module3D = require(script.Module3D) |
11 |
12 | cam.CameraSubject = nil |
13 |
14 | cam.CameraType = "Scriptable" |
15 |
16 | -- Putting the camera at a certain CFrame coordinate and focus. -- |
17 | cam.CoordinateFrame = game.Workspace:WaitForChild( "ShopCamera" ).CFrame |
18 | cam.Focus = game.Workspace:WaitForChild( "Part" ).CFrame |
19 | print ( "Focus and Coord set!" ) |
Thank you so much for helping! I very much appreciate it!
You're trying to run the script before the client has loaded, put a wait()
on the first line
Also:
Scriptable camera is different from regular camera types, you can only set the coordinate frame with scriptable, but can set the focus within it:
1 | cam.CoordinateFrame = CFrame.new(CoordinateFrame, Focus) -- You can only set CoordinateFrame, but lookvector plays a role. |
So to put it in use for you:
1 | cam.CoordinateFrame = CFrame.new(game.Workspace:WaitForChild( "ShopCamera" ).Position, game.Workspace:WaitForChild( "Part" ).Position) |