Help with camera following custom character

Hello! I’m working at an FFA and I got at the part where I make custom characters for each team. Everything working, but the camera won’t follow the custom character(The camera gets blocked at the spawn)

How I’m setting the custom character:

			local Armor = game.ServerStorage.InternalUse.Armors[Type]:Clone()
			Armor.Parent = workspace
			Armor:SetPrimaryPartCFrame(char:GetPrimaryPartCFrame())
			Player:LoadCharacter()
			
			Armor.Name = Player.Name
			Player.Character = Armor
1 Like

Make sure to only set the character’s parent after you set player.Character = char

--right
player.Character = char
char.Parent = workspace

--wrong
char.Parent = workspace
player.Character = char
1 Like