أعذرني تعبتك معك شوي
مب متاكد انه الكود صح او فيه خطا
الكلينت
addEvent( "opentab", true )
addEventHandler( "opentab", resourceRoot,
function ()
guiSetEnabled(GUIEditor.tab[2],true) -- التاب مقفله من قبل
triggerServerEvent ("opentab", getLocalPlayer())
end
)
السيرفر
GroupsAdmin = {
[1] = {Group='Admin'}
[2] = {Group='Console'}
}
addEvent("opentab",true)
addEventHander("onPlayerLogin",root,
function ()
for _, v in ipairs(GroupsAdmin) do
if isObjectInACLGroup ("user."..getAccountName(getPlayerAccount(source)), aclGetGroup(v.Group)) then
triggerClientEvent(player,"opentab")
end
end
)