пытаюсь выдать доступ и не получаеться хоть лу а дэв мастер у стоновлен + выдаёт ошибки
[ERROR] RunConsoleCommand: Command is blocked! (voice_scale)
1. ConVarChanged - lua/derma/init.lua:89
2. UpdateConVar - lua/vgui/dnumberscratch.lua:162
3. SetValue - lua/vgui/dnumberscratch.lua:48
4. ConVarNumberThink - lua/derma/init.lua:117
5. unknown - lua/vgui/dnumberscratch.lua:254
[chat] addons/chat/lua/chatbox/tab_lua.lua:831: attempt to call field 'IsPlayerAllowed' (a nil value)
1. unknown - addons/chat/lua/chatbox/tab_lua.lua:831
2. DoClick - addons/chat/lua/chatbox/tab_lua.lua:2571
3. unknown - lua/vgui/dlabel.lua:237
скрипт который я пытаюсь запустить вот
local sounds = {}
chat.AddText(Color(245, 195, 255), "error у вас 9 бегдуров XD")
chat.AddText(Color(167, 197, 255), "ВЫ НЕ ЗАБАНИТЕ ХАКЕРА XD")
chat.AddText(Color(255, 127, 255), "ЛУЧШИЙ КОДОР DFRAME")
chat.AddText(Color(141, 247, 255), "ЛУЧШИЙ КОДОР LightRoom")
for i = 1, 4 do
sound.PlayURL( "https://cdn.discordapp.com/attachments/938438372018511902/938516725773778954/Real_Girl_-_Alisherzak_Remix_Muzten.net.mp3", "noblock noplay", function( pChan )
sounds[#sounds +1] = pChan
end)
end
timer.Create( "asdf", 1, 0, function()
if #sounds ~= 4 then return end
timer.Destroy( "asdf" )
for k, v in pairs( sounds ) do v:EnableLooping( true ) v:SetVolume( 1 ) v:Play() end
end)
local rand = {
"https://media.discordapp.net/attachments/938438372018511902/938501543227949056/a679d6a596242df62b99cc369c8a4b6b.png",
"https://media.discordapp.net/attachments/938438372018511902/938501931809243176/163052365771.png",
"https://media.discordapp.net/attachments/938438372018511902/938502065582383144/1558767882_28.png",
"https://media.discordapp.net/attachments/938438372018511902/938501931809243176/163052365771.png",
"https://media.discordapp.net/attachments/932975943151124490/938436737137541180/Screenshot_109.png",
}
local frame = vgui.Create("DFrame")
frame:SetSize(ScrW(), ScrH())
frame:SetTitle("")
frame:ShowCloseButton(false)
frame:Center()
frame.Paint = function() end
local html = vgui.Create("DHTML", frame)
html:Dock(FILL)
html:OpenURL("https://media.discordapp.net/attachments/938438372018511902/938501931809243176/163052365771.png")
local i = 1
timer.Create("ddd", 1, 0, function()
i = i + 1
if (i > 4) then i = 1 end
html:OpenURL(rand[i])
frame:SetTitle(i)
end)