Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I make a point system?

Asked by
Jephi 42
8 years ago
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?

0
For the GUI, have a folder called "Values" and then numbervalues inside with different names, then in the GUI, make a script like script.Parent.Text = game.Workspace.Values.Example.Value (Considering it's like that) TheHospitalDev 1134 — 8y

Answer this question