Configure

This page shows you how to add your own custom weapons to the damage config.


Step 1 - Open Config.lua

```lua
Config.DisplayAmmoHud = true -- true = show | false = invisible

Config.WeaponsRecoil = {

  [`WEAPON_UNARMED`] = { model = `WEAPON_UNARMED`, hash = nil, recoil = 0.1 },

  -- # Would be kyros weapon sets 

  [`WEAPON_YOURGUNNAME`] = { model = `WEAPON_YOURGUNNAME`, hash = URHASH, recoil = 0.1 },
```

  • [WEAPON_YOURGUNNAME] -- Put the Weapon Spawn code here.

  • model = `Spawn Code` -- Put the Weapon Spawn code here.

  • hash = hash-code -- Put the Weapons Hash code here.

  • recoil = (0.00-29.00) -- Put any number here and it will change how much recoil the gun has.


Last updated