local points = 0 local pointValue = math.random(10, 20) pointsGUI = points while true do wait(1200) points = points + pointValue end
That's what I have, I want a different amount of points to be held for each player that joins the game. They are rewarded "pointValue" every 20 minutes. How do I make the pointValue individual for each player? How do I display that players points in a GUI?