What kind of method would check if a player has BC, and if so, what type of BC?
Every in-game player has a property called MembershipType
. There are four possible membership types, which are Enum.MembershipType.None
, Enum.MembershipType.BuildersClub
, Enum.MembershipType.TurboBuildersClub
, and Enum.MembershipType.OutrageousBuildersClub
.
Here is an example of that used in a script.
game.Players.PlayerAdded:connect(function(player) if player.MembershipType == Enum.MembershipType.None then print("A person with NBC entered!") end end)
This would not be a place to ask that :) maybe you could check it on the ROBLOX wiki?
Go on their account and look next to their name. It should display a BC logo, and depending no what type of BC they have, will vary which logo that will appear. Yellow is Regular BC, Orange is TBC, and Black is OBC, and if they have OBC, then when you go to ther account, they will have a black format instead of the usual blue. To check if YOUR BC worked, navigate yourself to the account button, and then click it. At the top, it should say the amount of time left for your BC. If that doesn't show, then you do not have BC at all. Hope this helped. :)