How to make wins Currency

Can you guys help me make a working currency let’s say wins Currency in this game: Climb 1,000 Stairs - Roblox So when you get to the top of the stairs you get 1 win and there will be win shop where you can buy trails for wins potions and buy more wins with robux.

Create a leaderstats with an Int value called wins and when the player touches a part at the top of the hill or whatever get the player find the leaderstats and the wins value and add 1 and maybe to them back to the beginning

1 Like

Alr i will try Its just hard to code for me

Would you be able to get the files for me

Serverscriptservice :

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

local leaderstats = Instance.new("Folder") 
leaderstats.Name = "leaderstats"
leaderstats.Parent = player

local Wins = Instance.new("IntValue")
Wins.Name = "Wins"
Wins.Value = 1
Wins.Parent = leaderstats

end)

You research and find out how to add points if a player touches a part. These are the basics which you should learn.