Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I check membership?

Asked by
Zerio920 285 Moderation Voter
9 years ago

What kind of method would check if a player has BC, and if so, what type of BC?

3 answers

Log in to vote
2
Answered by
2eggnog 981 Moderation Voter
9 years ago
Edited 6 years ago

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)
0
Thank you :) This really helped. Zerio920 285 — 9y
Ad
Log in to vote
-5
Answered by
Tixy12 0
9 years ago

This would not be a place to ask that :) maybe you could check it on the ROBLOX wiki?

Log in to vote
-6
Answered by 9 years ago

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. :)

Answer this question