11 lines
600 B
Text
11 lines
600 B
Text
|
gloves = loader.loadTexture("phase_10/maps/CBStationStripes2.jpg")
|
||
|
base.localAvatar.findAllMatches('**/hands').setTexture(gloves, 1)
|
||
|
shirt = base.localAvatar.findAllMatches('**/torso-top')
|
||
|
shirttex= loader.loadTexture("phase_10/maps/CBStationStripes2.jpg")
|
||
|
shirt.setTexture(shirttex, 1)
|
||
|
short = base.localAvatar.findAllMatches('**/torso-bot')
|
||
|
shorttex= loader.loadTexture("phase_10/maps/CBStationStripes2.jpg")
|
||
|
short.setTexture(shorttex, 1)
|
||
|
sleeves = base.localAvatar.findAllMatches('**/sleeves')
|
||
|
sleevestex= loader.loadTexture("phase_10/maps/CBStationStripes2.jpg")
|
||
|
sleeves.setTexture(sleevestex, 1)
|