of     1   

pointsz
#138769850Monday, June 30, 2014 7:47 PM GMT

plr = game.Players.LocalPlayer object = script.Parent if plr.Name == "OurHonestFather" or plr.Name == "devSurface" or plr.Name == "PresidentGiorgi" then script.Parent.Visible = true end script.Parent.MouseButton1Down:connect(function() plr.Teamcolor = BrickColor.new("Hot Pink") end) why no work
Notunknown99
#138770026Monday, June 30, 2014 7:48 PM GMT

Teamcolor Yeah, output will say that this does not exist because case sensitive. TeamColor
badfitz99
#138770180Monday, June 30, 2014 7:50 PM GMT

plr = game.Players.LocalPlayer object = script.Parent admins = {"devSurface", "", ""} for _, v in pairs(admins) do game.Players.PlayerAdded:connect(function(new) if new.Name == v then script.Parent.Visible = true else script.Parent.Visible = false end) end script.Parent.MouseButton1Down:connect(function() plr.Teamcolor = BrickColor.new("Hot Pink") end) try this. (put in local script)
pointsz
#138771539Monday, June 30, 2014 8:01 PM GMT

god no playeraddded dude its not only for playeradded when he got added.. e.e
pointsz
#138772755Monday, June 30, 2014 8:11 PM GMT

badfitz, i fixed error, it needed another end but still no work
badfitz99
#138776515Monday, June 30, 2014 8:44 PM GMT

plr = game.Players.LocalPlayer object = script.Parent admins = {"devSurface", "", ""} for _, v in pairs(admins) do game.Players.PlayerAdded:connect(function(new) if new.Name == v then script.Parent.Visible = true else script.Parent.Visible = false end end) end script.Parent.MouseButton1Down:connect(function() plr.TeamColor = BrickColor.new("Hot Pink") end)
pointsz
#138777278Monday, June 30, 2014 8:51 PM GMT

k ima test later, gotta sleep
pointsz
#138862914Tuesday, July 01, 2014 3:12 PM GMT

plr = game.Players.LocalPlayer object = script.Parent admins = {"devSurface", "", ""} for _, v in pairs(admins) do game.Players.PlayerAdded:connect(function(new) if new.Name == v then script.Parent.Visible = true else script.Parent.Visible = false end end) end script.Parent.MouseButton1Down:connect(function() plr.TeamColor = BrickColor.new("Hot Pink") end) no work
Bebee2
#138863024Tuesday, July 01, 2014 3:14 PM GMT

-- So close yet so far. plr = game.Players.LocalPlayer object = script.Parent admins = {"devSurface", "", ""} game.Players.PlayerAdded:connect(function(new) for _, v in pairs(admins) do if new.Name == v then script.Parent.Visible = true else script.Parent.Visible = false end end end) script.Parent.MouseButton1Down:connect(function() plr.TeamColor = BrickColor.new("Hot Pink") end)
pointsz
#138865112Tuesday, July 01, 2014 3:42 PM GMT

admins = {"devSurface", "PresidentGiorgi", "DoctorBrandon"} game.Players.PlayerAdded:connect(function(new) for _, v in pairs(admins) do if new.Name == v then script.Parent.Visible = true else script.Parent.Visible = false end end end) script.Parent.MouseButton1Down:connect(function() plr.TeamColor = BrickColor.new("Lime green") end) no work
pointsz
#138865402Tuesday, July 01, 2014 3:45 PM GMT

Maybe it does work when we spawn the first time, but when we spawn first time we die to fix ourserlves so, playeradded is not an way to do it=
pointsz
#138867834Tuesday, July 01, 2014 4:12 PM GMT

bump
systematicaddict
#138869538Tuesday, July 01, 2014 4:30 PM GMT

admins = {"OurHonestFather", "devSurface", "PresidentGiorgi"} game.Players.PlayerAdded:connect(function(p) for i,v in pairs(admins) do if p.Name == v.Name then --do stuffz end end end)

    of     1