CameraSubject not working?
I've created a spectating GUI, and when pressed you view one of the living players(one of the players in-game.) This script works perfectly, except for when a player joins the server and the game is in progress. When they press the button, their CameraSubject is no longer focused on their humanoid, but it's focused on where it used to be. It does not start 'spectating' a different player as intended.
If the round ends and they end up back in the lobby(after dying,) the script works absolutely flawlessly.
It's worth noting that it never throws out any errors of any kind.
Here's what the code looks like, I tried to put enough information in there for you to get the just:
01 | local plr = game.Players.LocalPlayer |
03 | repeat wait() until plr:FindFirstChild( "Alive" ) |
04 | repeat wait() until plr.Character |
06 | local camera = game.Workspace.CurrentCamera |
07 | script.Parent.MouseButton 1 Click:connect( function () |
08 | if plr.PlayerGui.Spectating.Frame.Visible = = false then |
09 | if plr.Alive.Value = = false and game.Workspace.InRound.Value = = true then |
10 | plr.PlayerGui.Spectating.Frame.Visible = true |
11 | if game.Workspace.InRound.Value = = true then |
12 | if debounce = = false then |
14 | local plrs = game.Players:GetChildren() |
18 | for _,i in pairs (plrs) do |
19 | if i.Alive.Value = = true then |
20 | table.insert(plays, 1 , i.Name) |
23 | local nums = game.Players.LocalPlayer.PlayerGui.Spectating.Frame:FindFirstChild( "Numb" ) |
24 | local spec = game.Players:FindFirstChild(plays [ nums.Value ] ) |
25 | nums.Value = nums.Value + 1 |
26 | if nums.Value > #plays then nums.Value = 1 end |
27 | camera.CameraSubject = spec.Character.Humanoid |
28 | local who = plr.PlayerGui.Spectating.Frame:FindFirstChild( "Who" ) |
29 | local job = plr.PlayerGui.Spectating.Frame:FindFirstChild( "Job" ) |
30 | local pic = plr.PlayerGui.Spectating.Frame:FindFirstChild( "Pic" ) |
31 | who.Text = "" ..spec.Name.. "" |
33 | if spec.IsMafia.Value = = true then |
35 | else job.Text = "Innocent" |
41 | else plr.PlayerGui.Spectating.Frame.Visible = false |
42 | camera.CameraSubject = plr.Character.Humanoid |