ByDefault
|
  |
| Joined: 25 Jul 2014 |
| Total Posts: 3197 |
|
|
| 14 Jun 2015 01:45 PM |
local plr = game.Players.LocalPlayer local stats = plr.Stats wait() for i,v in pairs(stats:GetChildren()) do script.Parent[v.Name].Text = v.Name..": "..v.Value v.Changed:connect(function() script.Parent[v.Name].Text = v.Name..": "..v.Value end) end |
|
|
| Report Abuse |
|
TimeTicks
|
  |
| Joined: 27 Apr 2011 |
| Total Posts: 27115 |
|
|
| 14 Jun 2015 02:11 PM |
| just define the stats separately instead of trying to bunch them together. |
|
|
| Report Abuse |
|