Advertisement
Guest User

Untitled

a guest
May 22nd, 2014
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1.  
  2. include('shared.lua')
  3. function ENT:Initialize()
  4. self.Entity:SetModel("models/player/arctic.mdl")
  5. end
  6.  
  7. function ENT:Think()
  8. end
  9.  
  10. function ENT:OnRestore()
  11. end
  12.  
  13.  
  14. function ENT:Use()
  15.  
  16. local JobWindow = vgui.Create( "DFrame" )
  17. JobWindow:SetSize (500, 300)
  18. JobWindow:Center()
  19. JobWindow:SetTitle( "Jobs Menu" )
  20. JobWindow:SetVisible( true )
  21. JobWindow:SetDraggable( true )
  22. JobWindow:ShowCloseButton ( true )
  23. JobWindow:MakePopup()
  24.  
  25.  
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement