I have looked at peaspod's leaderboard tutorial but I messed up or something because it don't work every time. So, how do I make a leaderboard?
This isn't a request site, but you can read more on leaderboards on the wiki: http://wiki.roblox.com/index.php?title=Leaderboards
This is not a request site. Please refer to the Wiki for help. They have a whole leaderboard tutorial.
Basically you insert a model called leaderstats into players when they join:
game.Players.PlayerAdded:connect(function(player) --We create a function that will execute when PlayerAdded fires. local leaderstats = Instance.new("Model", player) --We insert an Model into the the new player (player) leaderstats.Name = "leaderstats" end) --closes function
Then you would have a script insert a IntValue into leaderstats
Locked by BlueTaslem
This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.
Why was this question closed?