Sooo... I am making a LocalScript in StarterGui with the following code:
local ReplicatedStorage = game:GetService("ReplicatedStorage") local Players = game:GetService("Players") local Player = Players.LocalPlayer local Character = Player.Character local Seeker = ReplicatedStorage.SeekerHumanoid Character:FindFirstChildOfClass("Humanoid").Died:Connect(function() workspace.CurrentCamera.CameraSubject = Seeker.Value end)
For some reason, the player's camera's CameraSubject value changes to the humanoid of the seeker, but nothing happens. One reason might be that I have CharacterAutoLoads in Players off. Does anyone know what is happening?