[ERROR] lua/autorun/client/deadsound.lua:5: attempt to index local 'panelostrzegawczy' (a nil value)
1. unknown - lua/autorun/client/deadsound.lua:5
No idea what is wrong ? tried local panel and without local.
https://files.facepunch.com/forum/upload/151637/972cbfec-c458-47fb-acd6-007a17371ebf/nafp.PNG
You should look at the difference between DFrame and DPanel
I know diffrence but i cant use DPanel with DLabel ? If not, why ?
The DFrame control is the foundation for any Derma menu.
Seems i have to hange my Panel to Frame or make Frame and attach Panel. Thanks.
Your code is running too soon - DPanel hasn't been loaded yet. Place your code in an InitPostEntity hook.
hook.Add("InitPostEntity", "MyPanel", function()
-- Your code here.
end)
Sorry, you need to Log In to post a reply to this thread.