(I don't know if this has anything to do with scripting, if it doesn't I'll delete it right away) for example I'd like to know ho to make someone rank up and stuff, can someone help?
To make a leaderboard, you have to create a value inside of a Player named 'leaderstats'. Then, create different values inside of the leaderstats value, and they will appear on the leaderboard. Do this with the PlayerAdded
event.
game.Players.PlayerAdded:connect(function(plr) --When a player joins local stats = Instance.new("IntValue",plr) --Create the value stats.Name = "leaderstats" --Name it leaderstats local points = Instance.new("IntValue",stats) --Create a value in leaderstats points.Name = "Points" --Name it points points.Value = 0 --Make the value equal 0 end) --end