So, I have this code for a fashion outfit (Fashionbloxx):
1 | local Fashionbloxx = { } |
2 | Fashionbloxx.new = function (shirtId,hatId,PantsId) |
3 | local ShirtID = shirtId |
4 | local HatID = hatId |
5 | local PantsID = PantsId |
6 | end |
7 | function Fashionbloxx |
8 | return Fashionbloxx |
and I want have a function for an instance of this object defined above that prompts the player to buy all of the clothes with the IDs as Properties for each item in ROBUX ( Aerodian Dollars is to be added later). How do I Do All of this?