Need help on camera

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

1 Like

Did you tried change camera on client-side way when match is over and player’s charatcer is loaded ? (signaling)

2 Likes

just tried that did not work. Thanks anyway

1 Like

turns out all I had to do was add a wait period after setting the camera and then load the character :sweat_smile:

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.