Gun Game
Instructions on how to download and install the basics of Gun Game
Installation #
```lua
Config.SteamWebAPIKey = "YOUR WEB API KEY"
``````lua
-- Weapon given at the beginning of the game.
Config.StartingWeapon = `weapon_combatpistol`
-- Weapon to be taken per identified kill.
Config.KillRankings = {
-- kill = weapon
[5] = {weapon = `weapon_smg`},
[10] = {weapon = `weapon_carbinerifle`},
[15] = {weapon = `weapon_pumpshotgun`},
[20] = {weapon = `weapon_combatshotgun`},
[25] = {weapon = `weapon_gusenberg`},
}
```Last updated