of     1   

RealPersia
#141860511Monday, July 28, 2014 7:26 PM GMT

Or at least not an NBC. I want to have a script that will only apply to those members that are BC, TBC, or OBC. ~ !دست از سرم بردار ~ مانند یک گانگستر واقعی ~
CounterCrysis
#141861199Monday, July 28, 2014 7:33 PM GMT

game.Players.PlayerAdded:connect(function(p)     if p.MembershipType == Enum.MembershipType.BuildersClub then         print("User has regular Builder's Club!")     end end) -- http://wiki.roblox.com/index.php?title=MembershipType_(Property)
RealPersia
#141861680Monday, July 28, 2014 7:38 PM GMT

So, game.Players.PlayerAdded:connect(function(p) if p.MembershipType ~= Enum.MembershipType.None then print("This means that p has either BC, TBC, or OBC?") end end) ~ !دست از سرم بردار ~ مانند یک گانگستر واقعی ~
CounterCrysis
#141864523Monday, July 28, 2014 8:05 PM GMT

Correct. For some reason when people give links to a wiki page, if there is a parenthesis at the the end of the link it removes it. In any case, the link above as well as this link will probably need you to put a ) at the end. http://wiki.roblox.com/index.php?title=MembershipType_(Enum)
CounterCrysis
#141864678Monday, July 28, 2014 8:07 PM GMT

Oh never mind, I forgot that normal people cant just click the link. I'm using a plugin for Chrome specifically for the forums.
RealPersia
#141872400Monday, July 28, 2014 9:00 PM GMT

The Forum Enhancer one? I have it on I see what you're talking about ~ !دست از سرم بردار ~ مانند یک گانگستر واقعی ~
warspyking
#141873313Monday, July 28, 2014 9:09 PM GMT

Off topic but what language do chrome plugins use?
CounterCrysis
#141894456Tuesday, July 29, 2014 12:27 AM GMT

@whatsmyface Yes that one, it's pretty neat. @warspyking HTML and JavaScript and the main ones you'd need to know.

    of     1