Parthax
|
  |
| Joined: 27 Apr 2011 |
| Total Posts: 6941 |
|
|
| 15 Aug 2012 01:40 PM |
I noticed in the hero factory game that the normal leaderboard isn't there. Now how would I do it?
-ραятнαχ- |
|
|
| Report Abuse |
|
|
Parthax
|
  |
| Joined: 27 Apr 2011 |
| Total Posts: 6941 |
|
| |
|
tubdood33
|
  |
| Joined: 07 Feb 2009 |
| Total Posts: 1125 |
|
|
| 15 Aug 2012 02:26 PM |
Give me your CF and Clockies, then we'll talk. :3 Jk, jk. (If you want to Im open) xD
Read thread below l l l v |
|
|
| Report Abuse |
|
|
|
| 15 Aug 2012 02:28 PM |
Instance anything but an IntValue into a player's leaderstats.
† KMXD † |
|
|
| Report Abuse |
|
|
tubdood33
|
  |
| Joined: 07 Feb 2009 |
| Total Posts: 1125 |
|
|
| 15 Aug 2012 02:29 PM |
Use this command:
plrs = game.Players:GetPlayers()
for i = 1, #plrs do if (plrs[i]:FindFirstChild("leaderstats") ~= nil) then plrs[i].leaderstats:remove() end end |
|
|
| Report Abuse |
|
|
bloxiner
|
  |
| Joined: 16 Feb 2011 |
| Total Posts: 40 |
|
|
| 15 Aug 2012 02:35 PM |
game.Players.PlayerAdded:connect(function(new) a = Instance.new("IntValue", new) a.Name = "leaderstats"
b = Instance.new("BoolValue", a) b.Name= "Remover" end) |
|
|
| Report Abuse |
|
|
|
| 15 Aug 2012 02:44 PM |
game.Players.PlayerAdded:connect(function(player) Instance.new("BoolValue", Instance.new("IntValue", player)) player.Value.Name = "leaderstats" end) |
|
|
| Report Abuse |
|
|