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

Sold items value doesn't add to leaderstat?

Asked by 1 year ago

I want to sell an Item by proximity promt, but I am having trouble every time I try to sell, it doesn't value to the leaderstat.

Script:

local interact = script.Parent

interact.Triggered:Connect(function(player)
    for i, tools in pairs(interact.Tools:GetChildren()) do
        if player.Character:FindFirstChild(tools.Name) then
            print(tools.Name)
            player.leaderstats.Money.Value += tools.Price.Value
            player.Character:FindFirstChild(tools.Name):Destroy()
        end
    end
end)

1 answer

Log in to vote
1
Answered by 1 year ago
Edited 1 year ago

The issue maybe caused because price isn't a parent to tools Hope this helps!!

0
Not sure why you deleted your last answer then continue to post the exact same answer... Like I said on your previous answer, he already has "tools" declared on line 4. xInfinityBear 1777 — 1y
0
Weird part was my answer for some reason was deleted I did not see your comment theking66hayday 841 — 1y
Ad

Answer this question