• How to don't open this frame to superadmins, just to other players
    2 replies, posted
My code: if (CLIENT) then     timer.Create("Advisement2", 10, 0, function() -- 10 seconds     local frame = vgui.Create( "DFrame" )     frame:SetTitle( "Advisement" )     frame:SetSize(220, 240)     frame:ShowCloseButton( false )     local html = vgui.Create( "HTML", frame )     html:Dock( FILL )     ads = { "https://ad.a-ads.com/870184?size=200x200", "https://ad.a-ads.com/870181?size=200x200", "https://ad.a-ads.com/870182?size=200x200"}     html:OpenURL( table.Random( ads ) )     timer.Simple( 6, function() frame:Close() end )     end)     end
i don't know how delete
There's no way to delete things yet. You could edit your question back into your original post, it's probably fine.
Sorry, you need to Log In to post a reply to this thread.