of     1   

toflyc
#141241581Wednesday, July 23, 2014 4:27 AM GMT

local players = script.Parent.Parent.Parent local points = ""..players.Points.Value .. item.Text = plr[i].Name .. points So, say if I win a game and I get points after winning a game, this is on a custom player list BTW, It doesn't show that I got the points until I reset, does anyone knows how to make it update without me having to reset?
FertileTurtle
#141241759Wednesday, July 23, 2014 4:28 AM GMT

local players = script.Parent.Parent.Parent local points = ""..players.Points .. points.Changed:connect(function() item.Text = plr[i].Name .. points.Value end)
toflyc
#141241887Wednesday, July 23, 2014 4:30 AM GMT

Thank you, I will see if that works.
toflyc
#141242165Wednesday, July 23, 2014 4:33 AM GMT

It didn't work because Changed is a nil value.
toflyc
#141242243Wednesday, July 23, 2014 4:34 AM GMT

Bump, can anyone else help?
toflyc
#141242555Wednesday, July 23, 2014 4:37 AM GMT

B2
FertileTurtle
#141242672Wednesday, July 23, 2014 4:38 AM GMT

local players = script.Parent.Parent.Parent local points = players.Points .. points.Changed:connect(function() item.Text = plr[i].Name .. points.Value end)
toflyc
#141242947Wednesday, July 23, 2014 4:41 AM GMT

I don't understand why you have "Changed" in there..
toflyc
#141243141Wednesday, July 23, 2014 4:43 AM GMT

B3
FertileTurtle
#141243207Wednesday, July 23, 2014 4:44 AM GMT

I have the changed in there to check whenever the value changes, when it changes, you can update the text.
toflyc
#141243305Wednesday, July 23, 2014 4:45 AM GMT

It isn't working for me.
toflyc
#141243643Wednesday, July 23, 2014 4:48 AM GMT

b4, someone help please
toflyc
#141244347Wednesday, July 23, 2014 4:56 AM GMT

b5, i rq if no one answers this time

    of     1