So this script is supposed to make frame2 appear, if you're an admin, yet there's a problem... It wont appear! Not just the admin problem. Does anyone know what the problem is? If yes, please fix this!
PlayerList={"Lem0nzz"} script.Parent.MouseEnter:connect(function (plyr) for i,v in pairs(PlayerList) do if string.name == v then Script.Parent.Frame.Visible = true end end end) script.Parent.MouseLeave:connect(function (plyr) for i,v in pairs (PlayerList) do if string.Name == v then Script.Parent.Frame2.Visible = false end end end)
This is the improved version the frame2 was listed as false instead of true so copy this and it will work
PlayerList={"Lem0nzz"} script.Parent.MouseEnter:connect(function (plyr) for i,v in pairs(PlayerList) do if string.name == v then Script.Parent.Frame.Visible = true end end end) script.Parent.MouseLeave:connect(function (plyr) for i,v in pairs (PlayerList) do if string.Name == v then Script.Parent.Frame2.Visible = true end end end)