of     1   

LuaDesign
#169857255Monday, August 03, 2015 11:38 PM GMT

I need this to work so when the player has the value it is excepting. It will take it for exchange for another value. But I can't get this to work in general. Script: function Sell(hit) local Sell = Instance.new("IntValue") local Quick = hit.Parent:FindFirstChild("Ore") local Quick2 = hit.Parent:FindFirstChild("Cash") hit.Parent:FindFirstChild("Ore").Sell.Value = Quick.Sell.Value - 1 hit.Parent:FindFirstChild("Cash").Sell.Value = Quick2.Sell.Value + 100 end script.Parent.Touched:connect(Sell) It is based on a leaderboard not with a gui.
zekey101
#169857586Monday, August 03, 2015 11:41 PM GMT

function Sell(hit) local Sell = Instance.new("IntValue") local Quick = hit.Parent:FindFirstChild("Ore") local Quick2 = hit.Parent:FindFirstChild("Cash") Quick.Sell.Value = Quick.Sell.Value - 1 Quick2.Sell.Value = Quick2.Sell.Value + 100 end try that First Page Stealer: http://www.roblox.com/games/259962333/Click-Trailer-Fixed
LuaDesign
#169858882Monday, August 03, 2015 11:53 PM GMT

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.

    of     1