y1p
|
  |
| Joined: 05 May 2013 |
| Total Posts: 350 |
|
|
| 06 Mar 2016 10:24 AM |
Ok this is the line
player.leaderstats:GetChildren()
But I do not want to get the children, I want the value of leaderstats, There is no such thing as GetValue(), so what do I do? |
|
|
| Report Abuse |
|
yung_one
|
  |
| Joined: 26 Feb 2016 |
| Total Posts: 19 |
|
|
| 06 Mar 2016 10:27 AM |
stats = player.leaderstats:GetChildren()
values = {}
for _, i in pairs(stats) do table.insert(values, i.Value) end |
|
|
| Report Abuse |
|