So i’m creating a Points System basically it creates a new element for each player inside this Table
local FFAPoints = {}
for _, P in pairs (Players:GetPlayers()) do
table.insert(FFAPoints,P.Name)
FFAPoints[P.Name] = 0
end
however how would I go about returning the player with the highest amount of points? I’ve tried different methods and nothing seems to be working for me.