Page cover

πŸ‘•Outfits

  • Players can change into a configured outfit that aids in immersion

  • This is not required to use the mining system it is purely visual to aid in immersion

  • If you have custom clothing in your server you will be required to change the item numbers to suit your requirements


Config.Outfits ={ -- change outfit numbers here to match your clothing script if you have addon clothing or want different clothing items from default
    ['male'] = {
        outfitData ={ -- add or remove clothing as required
            ['arms'] = {item = 19, texture = 0},
            ['t-shirt'] = {item = 59, texture = 0},
            ['torso2'] = {item = 345, texture = 4},
            ['pants'] = {item = 36, texture = 0},
            ['shoes'] = {item = 12, texture = 0},
            ['hat'] = {item = 145, texture = 0},
        }
    },
    ['female'] = {
        outfitData ={ -- add or remove clothing as required
            ['arms'] = {item = 20, texture = 0},
            ['t-shirt'] = {item = 36, texture = 0},
            ['torso2'] = {item = 141, texture = 2},
            ['pants'] = {item = 35, texture = 0},
            ['shoes'] = {item = 53, texture = 0},
            ['hat'] = {item = 144, texture = 0},
        }
    },
}

Last updated