Why this Camera Monitoring script works in Studio mode but not in Online mode?
Now this may be a little tricky to explain. I've been creating a camera controlling script to my trusted friends with admin powers that shows them a camera gui and they can monitor the place to check if everything is right.
So far, the script works in studio mode (solo), with the camera change and everything, but on online mode, only the effects and the gui show up. I've already tried to WaitForChild the LocalPlayer property of my localscript. Curiously, my annimation-cancelling script also fails.
Here is the most important part of my script:
01 | repeat wait() until game.Players.LocalPlayer |
03 | function wfc(child, parent) return parent:WaitForChild(child) end |
04 | function ffc(child, parent) return parent:FindFirstChild(child) end |
08 | local plr = game.Players.LocalPlayer |
10 | local currentCamera = nil |
11 | local lastCamera = ffc( "Corridor1" , cameraToggles) |
13 | local monitorOn = false |
15 | function changeCamera(node) |
17 | if ffc(node.Name, cameraStore) then |
18 | local cam = ffc(node.Name, cameraStore) |
20 | videoloss:TweenPosition(UDim 2. new( 0 , 0 , 1 , 0 ), 0 , 0 , . 2 , false , delay(. 2 , function () videoloss.Position = UDim 2. new( 0 , 0 ,- 1 , 0 ) end )) |
23 | curCam.CameraType = "Scriptable" |
24 | curCam.CoordinateFrame = cam.CoordinateFrame |
25 | curCam.Focus = cam.Focus |
26 | curCam.FieldOfView = cam.FieldOfView |
28 | currentCamera = node.Name |
34 | if currentCamera ~ = nil then |
36 | curCam.CameraType = "Custom" |
37 | curCam.FieldOfView = 70 |
38 | curCam.CameraSubject = ffc( "Humanoid" , plr.Character) |
44 | function monitorCamera() |
45 | if monitorOn = = false and db = = false then |
50 | monitor.Visible = true |
51 | changeCamera(lastCamera) |
53 | videoloss:TweenPosition(UDim 2. new( 0 , 0 , 1 , 0 ), 0 , 0 , . 2 , false , delay(. 2 , function () videoloss.Position = UDim 2. new( 0 , 0 ,- 1 , 0 ) end )) |
59 | elseif monitorOn = = true and db = = false then |
63 | monitor.Visible = false |
74 | for _, c in pairs (cameraToggles:GetChildren()) do |
75 | if c:IsA( "TextButton" ) then |
76 | c.MouseButton 1 Click:connect( |
90 | cameraBut.MouseEnter:connect(monitorCamera) |
All of the variables are accordingly declared and no errors pop up in the output or Log window.