Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. local killstreak_panel = vgui.Create("DFrame","killstreak_panel")
  2. killstreak_panel:ShowCloseButton(false)
  3. killstreak_panel:SetTitle("")
  4. killstreak_panel:SetSize(100,200)
  5. killstreak_panel:SetPos(-100,200)
  6. killstreak_panel:MakePopup()
  7. killstreak_panel:MoveTo(0,200,2,1,-1)
  8.  
  9. local function CreatePanelTimer()
  10. timer.Create("KillStreakPanelTimer",1,1,function() KillStreakPanelMove()
  11. killstreak_panel:MoveTo(-200,0,2,1,-1)
  12. killstreak_panel:Close(true)
  13. end)
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement