Heres my code. I just want to know if anything wrong is happening.
game.Players[name].leaderstats.Wins.Value = game.Players[name].leaderstats.Value + 1
Any help?
You forgot "Wins.Value" on the second part
game.Players[name].leaderstats.Wins.Value = game.Players[name].leaderstats.Wins.Value + 1
Does this answer your question?