Download QGIS for your platform

Binary packages (installers) are available from this page.

The current version is QGIS 3.38.0 'Grenoble' and was released on 21.06.2024.

The long-term repositories currently offer QGIS 3.34.8 'Prizren'.

QGIS is available on Windows, macOS, Linux, Android and iOS.

-- Function to remove money from a player's balance local function removeMoney(player, amount) if playerData[player.UserId] then if playerData[player.UserId] >= amount then playerData[player.UserId] = playerData[player.UserId] - amount print(player.Name .. " now has " .. tostring(playerData[player.UserId]) .. " dollars.") else print(player.Name .. " does not have enough money for that transaction.") end else print("Player data not initialized.") end end