so im trying to make a game where u can lvl up if someone can help me msg me pls
This is not a leveling up system but you can edit it to make it one. This is just the basics.
In ServerScriptService make a script and put this code;
game.Players.PlayerAdded:connect(function(plr) -- when the player joins the game local leaderstats=Instance.new("Configuration") --make folder of leaderstats leaderstats.Name="leaderstats" --define the name leaderstats.Parent=plr -- sets the leaderstats in the player local stat=Instance.new("NumberValue") --makes the stat value stat.Name="Score" -- the name of the stat stat.Parent=leaderstats --sets it so you can see the score on the leaderboard end)
Closed as Too Broad by User#5423, DanzLua, and shayner32
This question has been closed because it is too broad and is generally unanswerable. Please ask a more specific question.
Why was this question closed?