need to get specific Player :(

I am making a system wich should get Players tracked Value and build a ranked system with it. It then displays the player rank and sofar it allmost completly works but it wont get the rank (tracked value) of the player playing and instead gets every ones and swithis between with it shows. Here is the relevant part of the script would be happy over some healp :slight_smile:
OnBegin():void =

    loop: 
        for. Player : (GetPlayspace().GetPlayers())
        do:
            TargetValue7 := Tracker8.GetValue(Player)

A potential solution is to create a custom_player map to store all players and reference them.

See this in-depth tutorial from Wahlbeck:

i will try that thanks