Did not work I found the problem it works now. But I tried adding a -if (blahblahblah) then- but it didn't work when it runs instead of not stopping people from selling because there is no ores it adds money anyways. Makes it into the negatives. This is what I tried.
function Points()
for _,Player in pairs(game.Players:GetPlayers()) do
if Player:FindFirstChild("leaderstats") then
if (Player:FindFirstChild("leaderstats").Ore.Value + 1) then
Player.leaderstats.Ore.Value = Player.leaderstats.Ore.Value-1
Player.leaderstats.Cash.Value = Player.leaderstats.Cash.Value+100
end
end
end
end
script.Parent.Touched:connect(Points)
But the function still runs even without Ore so it makes you go -1 and exc. Still adds cash. |