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

How To Make A System Where If You Kill Someone The IntValue Goes Up By One?

Asked by 7 years ago

So the question is kind of self explanatory. I thought my script should work, but it doesn't. Here it is:

01game.Players.PlayerAdded:connect(function(player)
02    local folder = Instance.new("Folder",player)
03    folder.Name = "leaderstats"
04    local currency1 = Instance.new("IntValue",folder)
05    currency1.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
View all 21 lines...

Any idea what the problem is. Hope you can help thanks!

1 answer

Log in to vote
0
Answered by
Avigant 2374 Moderation Voter Community Moderator
7 years ago

Creator ObjectValues 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().

Ad

Answer this question