Newgin
|
  |
| Joined: 14 Jul 2012 |
| Total Posts: 452 |
|
|
| 19 Jul 2014 08:35 AM |
I'm trying to make the leaderboard a gui, but I only know how to make a normal leaderboard.
game.Players.PlayerAdded:connect(function(player) local leaderstats = Instance.new("Model", player) (player) leaderstats.Name = "leaderstats" end)
game.Players.PlayerAdded:connect(function(player) local leaderstats = Instance.new("Model", player) leaderstats.Name = "leaderstats" local money = Instance.new("IntValue", leaderstats) money.Name = "Money" money.Value = 0 end)
So how can I make this a GUI? Sorry I'm trying to learn lua and I'm not that advanced.... |
|
|
| Report Abuse |
|
|
Newgin
|
  |
| Joined: 14 Jul 2012 |
| Total Posts: 452 |
|
|
| 19 Jul 2014 08:38 AM |
| Every time I post something in Scripting helpers NO ONE responds... thanks a lot guys! (Third time posting about this) |
|
|
| Report Abuse |
|
|
Newgin
|
  |
| Joined: 14 Jul 2012 |
| Total Posts: 452 |
|
| |
|
Newgin
|
  |
| Joined: 14 Jul 2012 |
| Total Posts: 452 |
|
| |
|
Newgin
|
  |
| Joined: 14 Jul 2012 |
| Total Posts: 452 |
|
| |
|
|
| 19 Jul 2014 09:03 AM |
rename leaderstats to something else, then the stat's won't appear in the player list
else, you need to make a gui to hold player stats - lol |
|
|
| Report Abuse |
|
|
Newgin
|
  |
| Joined: 14 Jul 2012 |
| Total Posts: 452 |
|
|
| 19 Jul 2014 09:05 AM |
| So I can call it 'MoneyStats' and place it in a Text gui? |
|
|
| Report Abuse |
|
|
|
| 19 Jul 2014 09:08 AM |
I'm not the best with converting CoreGui's to playermade one's, I just know it's not as simple as it could be. I personally recommend taking a look at some of ROBLOX's Base War's games, they do the custom leaderboard system via pressing 'q' which you could adapt from.
No harm in editing ^_^ |
|
|
| Report Abuse |
|
|
Newgin
|
  |
| Joined: 14 Jul 2012 |
| Total Posts: 452 |
|
| |
|