I have a x2 cash button which should add an upgrader that doubles the earned cash. But while I touch it, it says "This item is not currently for sale. Your account has not been charged" Can you please help me?
The script that I have for the Doubling upgrader:
script.Parent.Upgrade.Touched:connect(function(hit) if hit:FindFirstChild("Cash") then hit.Cash.Value = hit.Cash.Value * 2 hit.Reflectance = hit.Reflectance + 0.1 end end)