Hello, I’m currently trying to set my cameraMode back to classic, but when I load the player it wont reset it.
I have put the camera mode line before and after the
player:LoadCharacter()
heres the part of the script
for i, player in pairs(Players:GetPlayers()) do
if player.Backpack:FindFirstChild("SniperRifle") then
player.Backpack:FindFirstChild("SniperRifle"):Destroy()
end
-- player.CameraMode used to be up here. still didn't work
player.Team = nil
player:LoadCharacter()
-- Now reset camera and FOV
player.CameraMode = Enum.CameraMode.Classic
ReplicatedStorage.ChangeFOV:FireClient(player)
end
any help appreciated