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

How to make leaderboard with IntValues?

Asked by 3 years ago

I'm trying to make a leaderboard by trying to get the IntValue in each player, but I don't know where to start.

If anyone has any advice, I'd surely appreciate it!

2 answers

Log in to vote
2
Answered by 3 years ago
Edited 3 years ago
local function onPlayerJoin(player)
    local leaderstats = Instance.new("Folder")
    leaderstats.Name = "leaderstats"
    leaderstats.Parent = player

    local Coins = Instance.new("IntValue")
    Coins.Name = "Coins"
    Coins.Value = 0
    Coins.Parent = leaderstats
end

game.Players.PlayerAdded:Connect(onPlayerJoin)

I hope this helped answer your question. If you have any problems ask me.

(EDIT) I forgot to mention that you insert a script inside of serverscriptservice and paste that

another edit! since you wanted your code to coins as a screen gui just put this script inside of a text label

local player = game.Players.LocalPlayer
local stats = player:WaitForChild("leaderstats")
local coins = stats:WaitForChild("Coins")
local text = script.Parent

text.Text = "Coins:  "..coins.Value
coins("Value"):Connect(function()
    text.Text = "Coins:  "..coins.Value
end)

if you have any more questions ask me!

0
Thanks! E TheEggsquidzidBoi 38 — 3y
0
Thanks! W TheEggsquidzidBoi 38 — 3y
0
Thanks! Would you know how to put this as a Screen GUI? (Sorry with the previous comments. My computer screwed up.) TheEggsquidzidBoi 38 — 3y
0
I guess mine didn’t matter iivSnooxy 248 — 3y
View all comments (3 more)
0
can you accept my answer @TheEggsquidzidBoi ? Configuator 158 — 3y
0
Oof mine don’t matter :( iivSnooxy 248 — 3y
0
Can u upvote mine iivSnooxy 248 — 3y
Ad
Log in to vote
1
Answered by
iivSnooxy 248 Moderation Voter
3 years ago

Well I can explain throughly so you can understand...

Let’s start with the function() that will run when the player joins the game

game.Players.PlayerAdded:Connect(function(player)

end)

Now let’s reference the Leaderstats , it should look like this (it is a “Folder” by the way)

game.Players.PlayerAdded:Connect(function(player)
   local leaderstats = Instance.new("Folder")
   leaderstats.Name = "leaderstats"
   leaderstats.Parent = player
end)

There. , NOW let’s make some money! Won’t be hard don’t worry! Cash will not be a Folder but it’s a IntValue

game.Players.PlayerAdded:Connect(function(player)
   local leaderstats = Instance.new("Folder")
   leaderstats.Name = "leaderstats"
   leaderstats.Parent = player

   local Cash = Instance.new("IntValue")
   Cash.Name =  "Cash"
   Cash.Value = 0
   Cash.Parent =  "leaderstats"
end)

Also if you want to change the amount of Cash you have then, change the number of the Value

And now you are finally done! If you need any further help please contact me here. Bye!

Answer this question