of     1   

ArchitectAerbin
#182539719Thursday, January 28, 2016 3:17 AM GMT

function Click(mouse) GroupId = 2678274 min = 1 max = 255 p:GetRankInGroup(GroupId) >= min and p:GetRankInGroup(GroupId) <= max then wait(0.1) end script.Parent.Parent.Parent.plist.Visible=true else script.Parent.Parent.Parent:Destroy() end script.Parent.MouseButton1Down:connect(Click) What should I do I cannot figure out what to do next -Need Some Help
ArchitectAerbin
#182540574Thursday, January 28, 2016 3:31 AM GMT

function Click(mouse) local GroupId = 2678274 local min = 1 local max = 255 local p = script.Parent.Parent.Parent.Parent.Parent.Name if p:GetRankInGroup(GroupId) >= min and p:GetRankInGroup(GroupId) <= max then wait(0.1) script.Parent.Parent.Parent.plist.Visible=true else script.Parent.Parent.Parent:Destroy() end end script.Parent.MouseButton1Down:connect(Click) Updated
spinywind
#182541463Thursday, January 28, 2016 3:50 AM GMT

where is this located and in a server script or local?
cofunction
#182541517Thursday, January 28, 2016 3:51 AM GMT


    of     1