of     1   

Crack498
#137156750Monday, June 16, 2014 12:16 PM GMT

I have a IntValue called "Points". But when I die, it disappears. What can I do?
xXxkarlxXx
#137156851Monday, June 16, 2014 12:20 PM GMT

It depends on where you put the IntValue. Where do you put it?
XxChopSlaperxX
#137156989Monday, June 16, 2014 12:24 PM GMT

Put it inside the player, not the backpack/statergui
Crack498
#137158034Monday, June 16, 2014 12:54 PM GMT

game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(character) ins = Instance.new("IntValue", player.Character) ins.Value = 0 ins.Name = "Points" end) end)
smiley599
#137158395Monday, June 16, 2014 1:03 PM GMT

game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(character) ins = Instance.new("IntValue", player) ins.Value = 0 ins.Name = "Points" end) end) There you go.
Crack498
#137159099Monday, June 16, 2014 1:22 PM GMT

Thanks smiley599 :D ~Closed~
Crack498
#137159135Monday, June 16, 2014 1:23 PM GMT

~Closed now :P ~

    of     1