Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
2

How would i make this work everytime the player respawns?

Asked by 9 years ago

I have this script

1game:GetService('Players').PlayerAdded:connect(function(player)
2if player:FindFirstChild("Points") ~= nil then
3if player.Points.Value > 0 and player.Points.Value <= 40 then
4player.leaderstats.Rank.Value = "Private"
5elseif player.Points.Value > 40 and player.Points.Value <= 100 then
6player.leaderstats.Rank.Value = "General"
7end
8end
9end)

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?

1 answer

Log in to vote
3
Answered by
xuefei123 214 Moderation Voter
9 years ago

You would need to use the function built into the player, .CharacterAdded, here is an example:

01game:GetService('Players').PlayerAdded:connect(function(player)
02player.CharacterAdded:connect(function()--Added function
03if player:FindFirstChild("Points") ~= nil then
04if player.Points.Value > 0 and player.Points.Value <= 40 then
05player.leaderstats.Rank.Value = "Private"
06elseif player.Points.Value > 40 and player.Points.Value <= 100 then
07player.leaderstats.Rank.Value = "General"
08end)--Added end
09end
10end
11end)

This should work, if it does, or helps you, could you accept the answer? It gives us both rep!

Ad

Answer this question