So the question is kind of self explanatory. I thought my script should work, but it doesn't. Here it is:
01 | game.Players.PlayerAdded:connect( function (player) |
02 | local folder = Instance.new( "Folder" ,player) |
03 | folder.Name = "leaderstats" |
04 | local currency 1 = Instance.new( "IntValue" ,folder) |
05 | currency 1. Name = "Kills" |
06 | player.CharacterAdded:connect( function (character) |
07 | character:WaitForChild( "Humanoid" ).Died:connect( function () |
08 | local tag = character.Humanoid:FindFirstChild( "creator" ) |
09 | if tag ~ = nil then |
10 | if tag.Value ~ = nil then |
11 | -- Here tag.Value is the player who killed us, so find their leaderstats |
12 | local killersLeaderstats = tag.Value:FindFirstChild( "leaderstats" ) |
13 | if killersLeaderstats then |
14 | -- Award the Kills to the player that killed us |
15 | killersLeaderstats.Kills.Value = killersLeaderstats.Kills.Value + 1 |
Any idea what the problem is. Hope you can help thanks!
Creator ObjectValue
s are an ancient and badly designed solution for knockout leaderboards. Instead, modify your weapons. When the weapon does damage to a player, check if the player's new health is <= 0
. If so, the player who attacked with the weapon killed the dead player, and you can award them one kill.
Additionally, RBXScriptSignal:connect()
is deprecated, you should prefer RBXScriptSignal:Connect()
.