Should I use if bool value == or a table to use in my module?

So I’m making a module that would get specific clothing to the player but it depends on the bool value inside the player. So if the value is equal to fancy then it gets a folder inside of the module and get the fancy clothing. Basically

If Char:FindFirstChild(“Type”).Value == fancy then
—Run code
End

Or could I use a table? I’ve never used tables so I don’t know much about them.

1 Like

Unless, your going to be running more than one value… it’s almost Unnecessary to use a table. It’s up to you. :smiley:

2 Likes