**Problem:** Score doesn't increase when eliminate a real player or bot in FFA game mode.
**Fix:**
In bl_PlayerHealtManager.cs > AddKill(...) > change this line:
```csharp
if (elimatedTeam != Team.All && elimatedTeam != bl_PhotonNetwork.LocalPlayer.GetPlayerTeam())
With:
```csharp
if...