You can write your topic however you want, but you need to answer these questions:
-
I want to be able to access both player’s cameras through the same localscript.
-
What is the issue? Include screenshots / videos if possible!
I have a loop that goes through every player in the game and if it’s within 7 studs magnitude I start running my code. The issue is that I can’t address the second player’s camera.
local camera = workspace.CurrentCamera
wait()
repeat wait()
camera.CameraType = Enum.CameraType.Scriptable
until camera.CameraType == Enum.CameraType.Scriptable
How do I attempt to instance the other player’s camera? For example it changes my camera but not the other person’s camera. How do I get the other player’s camera? lol am dumb.