I'm currently trying to create an EXP bar, but it's not really working out. How would I create one?
This is the script for the leaderboard that I want to use
03 | game.Players.PlayerAdded:connect( function (player) |
04 | local stats = Instance.new( "IntValue" , player) |
05 | stats.Name = "leaderstats" |
07 | local azteige = Instance.new( "IntValue" , stats) |
08 | azteige.Name = "AZTEIGE" |
11 | local exp = Instance.new( "IntValue" , stats) |
12 | exp.Name = "EXPERIENCE" |
15 | local astex = Instance.new( "IntValue" , stats) |
20 | local extralevel = azteige.Value |
21 | local expneed = ((extralevel * 2 ) - 1 ) * 200 |
22 | if azteige.Value < maxlevel then |
23 | if exp.Value > = expneed then |
24 | azteige.Value = azteige.Value + 1 |
25 | exp.Value = exp.Value - expneed |
Here is a link of the GUI that I wanna use for this http://imgur.com/dEnQMbZ