# IScore

> A game score.

## Definition

* **Type:** Interface
* **Namespace:** [UnityEngine.SocialPlatforms](/engine/6000.7/script-reference/unityengine/socialplatforms.md)
* **Assembly:** UnityEngine.GameCenterModule

> **Warning:**
>
> **Deprecated.** IScore is deprecated and will be removed in a future release.

```csharp
public interface IScore
```

## Remarks

It can be received from a ILeaderboard instance or using the [Social.LoadScores](/engine/6000.7/script-reference/unityengine/social/loadscores.md) call which uses the default leaderboard filters.

## Properties

| Property                                                                                               | Description                                                           |
| ------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------- |
| [date](/engine/6000.7/script-reference/unityengine/socialplatforms/iscore/date.md)                     | The date the score was achieved.                                      |
| [formattedValue](/engine/6000.7/script-reference/unityengine/socialplatforms/iscore/formattedvalue.md) | The correctly formatted value of the score, like X points or X kills. |
| [leaderboardID](/engine/6000.7/script-reference/unityengine/socialplatforms/iscore/leaderboardid.md)   | The ID of the leaderboard this score belongs to.                      |
| [rank](/engine/6000.7/script-reference/unityengine/socialplatforms/iscore/rank.md)                     | The rank or position of the score in the leaderboard.                 |
| [userID](/engine/6000.7/script-reference/unityengine/socialplatforms/iscore/userid.md)                 | The user who owns this score.                                         |
| [value](/engine/6000.7/script-reference/unityengine/socialplatforms/iscore/value.md)                   | The score value achieved.                                             |

## Methods

| Method                                                                                           | Description                 |
| ------------------------------------------------------------------------------------------------ | --------------------------- |
| [ReportScore](/engine/6000.7/script-reference/unityengine/socialplatforms/iscore/reportscore.md) | Report this score instance. |
