[NOT SOLVED] Why my camera system works in Studio but not in Online mode?
Okay, last days I've been experimenting with camera manipulation and so, I've successfully developed a GUI in where when you press the TextButton with a name, the LocalScript will search in ReplicatedStorage for a folder named Cameras, in which, it should have a Camera with the same name of the TextButton. And then, the script should change the CameraType to "Scripted" and clone the CoordinateFrame, Focus and FieldOfView from the original camera to the CurrentCamera.
After that, the player can close the gui and so, it will return to the normal camera.
My big problem is: It works on Studio Solo, but not in Online mode!
I've already tried everything, since waiting until a plr.Character is not equal to nil, to disabling the entire FilteringEnabled system!
I will not post the entire script here, instead, I will make a short resume.
01 | repeat wait() until game.Players.LocalPlayer.Character |
04 | local plr = game.Players.LocalPlayer |
05 | local curcam = game.Workspace.CurrentCamera |
07 | local button = script.Parent:FindFirstChild( "Toggle" ) |
08 | local cameras = game.ReplicatedStorage:FindFirstChild( "Cameras" ) |
09 | local gui = script.Parent:FindFirstChild( "MonitorScheme" ) |
10 | local choices = gui:FindFirstChild( "Choices" ) |
12 | local currentCamera = nil |
13 | local lastCamera = choices.MainCorridor |
15 | function changeCamera(node) |
16 | if lastCamera = = node then return end |
17 | if node and cameras:FindFirstChild(node.Name) then |
20 | ccam = cameras:FindFirstChild(node.Name) |
21 | curcam.CameraType = "Scriptable" |
22 | curcam.CoordinateFrame = ccam.CoordinateFrame |
23 | curcam.Focus = ccam.Focus |
31 | changeCamera(lastCamera) |
37 | curcam.CameraType = "Custom" |
38 | curcam.CameraSubject = plr.Character:FindFirstChild( "Humanoid" ) |
39 | curcam.FieldOfView = 70 |
44 | for _, c in pairs (choices:GetChildren()) do |
45 | if c:IsA( "TextButton" ) then |
46 | c.MouseButton 1 Down:connect(c) |
Please don't mind any syntax errors. As I said before, this is a resume and is not meant to work. It's just to showcase the script. But, this example and the original script won't work, only the gui will show up, the cameras won't change but the variables do. No errors printed in the output.