Advertisement
Guest User

NE Riders

a guest
Jun 20th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.16 KB | None | 0 0
  1.  
  2. if data.current.value == 'cloakroom1' then
  3. menu.close()
  4. TriggerEvent('skinchanger:getSkin', function(skin)
  5.  
  6. if skin.sex == 0 then
  7.  
  8. local clothesSkin = { -- Man Prospect
  9. ['tshirt_1'] = 76, ['tshirt_2'] = 3,
  10. ['torso_1'] = 157, ['torso_2'] = 1,
  11. ['arms'] = 21,
  12. ['pants_1'] = 82, ['pants_2'] = 4,
  13. ['shoes_1'] = 24, ['shoes_2'] = 0,
  14. }
  15. TriggerEvent('skinchanger:loadClothes', skin, clothesSkin)
  16.  
  17. else
  18.  
  19. local clothesSkin = { -- Kvinna Prospect
  20. ['tshirt_1'] = 145, ['tshirt_2'] = 0,
  21. ['torso_1'] = 160, ['torso_2'] = 0,
  22. ['arms'] = 5,
  23. ['pants_1'] = 44, ['pants_2'] = 0,
  24. ['shoes_1'] = 7, ['shoes_2'] = 0,
  25. }
  26. TriggerEvent('skinchanger:loadClothes', skin, clothesSkin)
  27.  
  28. end
  29.  
  30. end)
  31. end
  32.  
  33. if data.current.value == 'cloakroom2' then
  34. menu.close()
  35. TriggerEvent('skinchanger:getSkin', function(skin)
  36.  
  37. if skin.sex == 0 then
  38.  
  39. local clothesSkin = { -- Man Member
  40. ['tshirt_1'] = 45, ['tshirt_2'] = 0,
  41. ['torso_1'] = 173, ['torso_2'] = 1,
  42. ['arms'] = 21,
  43. ['pants_1'] = 102, ['pants_2'] = 0,
  44. ['shoes_1'] = 54, ['shoes_2'] = 0,
  45. }
  46. TriggerEvent('skinchanger:loadClothes', skin, clothesSkin)
  47.  
  48. else
  49.  
  50. local clothesSkin = { -- Kvinna Member
  51. ['tshirt_1'] = 13, ['tshirt_2'] = 12,
  52. ['torso_1'] = 175, ['torso_2'] = 1,
  53. ['arms'] = 12,
  54. ['pants_1'] = 43, ['pants_2'] = 0,
  55. ['shoes_1'] = 7, ['shoes_2'] = 0,
  56. }
  57. TriggerEvent('skinchanger:loadClothes', skin, clothesSkin)
  58.  
  59. end
  60.  
  61. end)
  62. end
  63.  
  64. if data.current.value == 'cloakroom3' then
  65. menu.close()
  66. TriggerEvent('skinchanger:getSkin', function(skin)
  67.  
  68. if skin.sex == 0 then
  69.  
  70. local clothesSkin = { -- Man President
  71. ['tshirt_1'] = 15, ['tshirt_2'] = 0,
  72. ['torso_1'] = 157, ['torso_2'] = 0,
  73. ['arms'] = 29,
  74. ['pants_1'] = 102, ['pants_2'] = 6,
  75. ['shoes_1'] = 54, ['shoes_2'] = 0,
  76. }
  77. TriggerEvent('skinchanger:loadClothes', skin, clothesSkin)
  78.  
  79. else
  80.  
  81. local clothesSkin = { -- Kvinna President
  82. ['tshirt_1'] = 13, ['tshirt_2'] = 14,
  83. ['torso_1'] = 154, ['torso_2'] = 0,
  84. ['arms'] = 12,
  85. ['pants_1'] = 87, ['pants_2'] = 8,
  86. ['shoes_1'] = 7, ['shoes_2'] = 0,
  87. }
  88. TriggerEvent('skinchanger:loadClothes', skin, clothesSkin)
  89.  
  90. end
  91.  
  92. end)
  93. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement