Hello I have this Server Information/Player Information Guide. Everything is working perfectly except when it says if you're OBC. TBC, BC or. NBC it just says "?"
Plr = game:GetService("Players").LocalPlayer
if Plr.MembershipType == "OutrageousBuildersClub" then
script.Parent.Text = "Outrageous"
elseif Plr.MembershipType == "TurboBuildersClub" then
script.Parent.Text = "Turbo"
elseif Plr.MembershipType == "BuildersClub" then
script.Parent.Text = "Yes"
else
script.Parent.Text = "No"
end
That's the current script can someone help me? |