Advertisement
Guest User

Rowan Uniform Module

a guest
Mar 25th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.00 KB | None | 0 0
  1. --[[
  2.    
  3.     Uniform Settings Module
  4.    
  5.     Use this template to set uniform preferences for members of a house.
  6.     Members can apply the uniform using the :uniform [GroupId / GroupName] command.
  7.    
  8.     Created by RBX_Lua - 2/6/2019
  9.    
  10. --]]
  11.  
  12. --[[
  13.    
  14.     SYNTAX WARNING:
  15.    
  16.     Remember that ALL LINES and {brackets} have to end with a comma (,) - malformed modules will not be
  17.     fixed by the staff. It might be a good idea to verify in a Roblox Studio ModuleScript
  18.     that all of the syntax is correct. Any mistakes will be underlined automatically.
  19.    
  20.     When a member of your group runs the command, the script will equip them with the outfit that matches their rank.
  21.     THEY WILL BE EQUIPPED WITH THE HIGHEST RANK UNIFORM THAT IS NOT HIGHER THAN THEIR OWN RANK. This means that you
  22.     do not need to make a separate entry for each rank.
  23.    
  24. --]]
  25.  
  26. return {
  27.    
  28.     groupId = "4811165", -- Group ID from the group the uniform is for
  29.    
  30.     groupName = "Rowan", -- House name for the command, make it as simple as possible; such as "Stark" instead of "House Stark"
  31.    
  32.     outfits = {
  33.        
  34.         {
  35.             rank = 1, -- Man-at-Arms
  36.            
  37.             shirtId = "2986028394",-- AssetID (NUMBERS ONLY) of the shirt you want equipped
  38.            
  39.             pantsId = "2986032680", -- AssetID (NUMBERS ONLY) of the pants you want equipped
  40.            
  41.             hats = {28677760} -- AssetID of each hat you want equipped, separated by commas
  42.            
  43.         },
  44.        
  45.         {
  46.             rank = 15, -- Squire
  47.            
  48.             shirtId = "2986036290",-- AssetID (NUMBERS ONLY) of the shirt you want equipped
  49.            
  50.             pantsId = "2986035632", -- AssetID (NUMBERS ONLY) of the pants you want equipped
  51.            
  52.             hats = {} -- AssetID of each hat you want equipped, separated by commas
  53.            
  54.         },
  55.        
  56.         {
  57.             rank = 20, -- Knight
  58.            
  59.             shirtId = "2986028901",-- AssetID (NUMBERS ONLY) of the shirt you want equipped
  60.            
  61.             pantsId = "2986033340", -- AssetID (NUMBERS ONLY) of the pants you want equipped
  62.            
  63.             hats = {13386385, 319642927} -- AssetID of each hat you want equipped, separated by commas
  64.            
  65.         },
  66.        
  67.         {
  68.             rank = 30, -- Household Guard
  69.            
  70.             shirtId = "2986031123",-- AssetID (NUMBERS ONLY) of the shirt you want equipped
  71.            
  72.             pantsId = "2987112210", -- AssetID (NUMBERS ONLY) of the pants you want equipped
  73.            
  74.             hats = {67239894, 13386385, 215748322} -- AssetID of each hat you want equipped, separated by commas
  75.            
  76.         },
  77.  
  78.         {
  79.             rank = 50, -- Captain
  80.            
  81.             shirtId = "2986028901",-- AssetID (NUMBERS ONLY) of the shirt you want equipped
  82.            
  83.             pantsId = "2986033340", -- AssetID (NUMBERS ONLY) of the pants you want equipped
  84.            
  85.             hats = {13386385, 319642927} -- AssetID of each hat you want equipped, separated by commas
  86.            
  87.         },
  88.  
  89.         {
  90.             rank = 80, -- Council+
  91.            
  92.             shirtId = "2986031733",-- AssetID (NUMBERS ONLY) of the shirt you want equipped
  93.            
  94.             pantsId = "2986899615", -- AssetID (NUMBERS ONLY) of the pants you want equipped
  95.            
  96.             hats = {67239894, 13386385, 215748322} -- AssetID of each hat you want equipped, separated by commas
  97.            
  98.         },
  99.        
  100.     }
  101.    
  102. } -- A comma is not necessary on this line.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement