I have this script
1 | game:GetService( 'Players' ).PlayerAdded:connect( function (player) |
2 | if player:FindFirstChild( "Points" ) ~ = nil then |
3 | if player.Points.Value > 0 and player.Points.Value < = 40 then |
4 | player.leaderstats.Rank.Value = "Private" |
5 | elseif player.Points.Value > 40 and player.Points.Value < = 100 then |
6 | player.leaderstats.Rank.Value = "General" |
7 | end |
8 | end |
9 | end ) |
but it only works when the player enters the game for the first time, so how would I make it work everytime the player respawns?
You would need to use the function built into the player, .CharacterAdded, here is an example:
01 | game:GetService( 'Players' ).PlayerAdded:connect( function (player) |
02 | player.CharacterAdded:connect( function () --Added function |
03 | if player:FindFirstChild( "Points" ) ~ = nil then |
04 | if player.Points.Value > 0 and player.Points.Value < = 40 then |
05 | player.leaderstats.Rank.Value = "Private" |
06 | elseif player.Points.Value > 40 and player.Points.Value < = 100 then |
07 | player.leaderstats.Rank.Value = "General" |
08 | end ) --Added end |
09 | end |
10 | end |
11 | end ) |
This should work, if it does, or helps you, could you accept the answer? It gives us both rep!