What is the difference between these 2 below?: Explain it for me thanks
for i,v in pairs(game.Players:GetPlayers()) do end for _, v in pairs(game.Players:GetPlayers()) do end
There is no difference, you may name the index and value variables whatever you wish.