Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. local menu = DermaMenu()
  2.  
  3. local btnWithIcon1 = menu:AddOption( "Return" )
  4. btnWithIcon1.SetIcon( "icon16/arrow_undo.png" )
  5. ChatPrint( "ulx return" )
  6.  
  7.  
  8.  
  9. local btnWithIcon2 = menu:AddOption( "AddMoney(SuperAdmin Only)" )
  10. btnWithIcon2:SetIcon( "icon16/coins_add.png" )
  11. RunConsoleCommand( "rp_setmoney player.GetName() 100000 " )
  12.  
  13.  
  14.  
  15. local btnWithIcon3 = menu:AddOption( "Noclip" )
  16. btnWithIcon3:SetIcon( "icon16/.png" )
  17. ChatPrint("!ulx noclip")
  18.  
  19.  
  20.  
  21. local btnWithIcon4 = menu:AddOption( "Godmode" )
  22. btnWithIcon4:SetIcon( "icon16/heart.png" )
  23. ChatPrint("!ulx god")
  24.  
  25.  
  26.  
  27. local btnWithIcon5 = menu:AddOption( "KeinNamexD" )
  28. btnWithIcon5:SetIcon( "icon16/bug.png" )
  29.  
  30. Menu:AddSpacer()
  31.  
  32. local SubMenu = menu:AddSubMenu( "NOT DONE" )
  33. SubMenu:AddOption( "Not Done Sorry" ):SetIcon( "icon16/group.png" )
  34.  
  35. menu:Open()
  36.  
  37. concommand.Add("AdminTest", Menu)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement