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

Having troubles awarding currency...?

Asked by 11 years ago

I'm making a game and gold is the currency. I want to make NPC's that if you kill you will be awarded a certain amount of gold. I currently don't have the knowledge to do this, all I have is this script:

01amnt = 50000
02function onTouched(part)
03    local h = part.Parent:findFirstChild("Humanoid")
04    if (h~=nil) then
05        local thisplr = game.Players:findFirstChild(h.Parent.Name)
06        if (thisplr~=nil) then
07            local stats = thisplr:findFirstChild("leaderstats")
08            if (stats~=nil) then
09                local score = stats:findFirstChild("Gold")
10                if (score~=nil) then
11                    score.Value = score.Value + amnt
12                end
13            end
14        end
15        script.Parent:remove()
16    end
17end
18 
19script.Parent.Touched:connect(onTouched)

I am a extreme newbie to Lua so I tried taking the easy way out and just making it so if you touch the NPC then it will award you the gold; but that causes many problems. Could anyone help me? Greatly appreciated.

1 answer

Log in to vote
2
Answered by 11 years ago

Put an ObjectValue inside of the NPC model. I named the value "Attacker". Every time that the NPC is attacked change the ObjectValue to the attacker. Then using the Diedevent of the Humanoid. Just award the person inside of the Objectvalue the points.

This would be located in the character model

01local Amount = ???
02 
03local Dead = false
04local Char = script.Parent
05local Attacker = Instance.new("ObjectValue",Char)
06Attacker.Name = "Attacker"
07 
08function WhenTouched(Part)
09    if Part:IsA("Part") and Part.Parent:IsA("Tool") then
10        --This is executed when a sword hits him
11        if not Dead then
12            Attacker.Value = Game.Players:GetPlayerFromCharacter(Part.Parent.Parent)
13        end
14    end
15end
View all 34 lines...
Ad

Answer this question