Jump to content

TonyJunakPRO

Members
  • Posts

    31
  • Joined

  • Last visited

Everything posted by TonyJunakPRO

  1. ScreenLocked = guiCreateWindow(22,175,141,267,"SmartEX C45",false) guiSetAlpha(ScreenLocked,1) guiWindowSetMovable(ScreenLocked,false) guiWindowSetSizable(ScreenLocked,false) ImageLocked = guiCreateStaticImage(9,30,123,228,"images/mtalogo.png",false,ScreenLocked) guiSetAlpha(ImageLocked,1) ScreenLocked_UnlockButton = guiCreateButton(16,234,107,15,"Click to unlock",false,ScreenLocked) guiSetAlpha(ScreenLocked_UnlockButton,1) guiSetVisible(ScreenLocked, false) bindKey ("f1", "down", showHide) bindKey ("y", "down", showHide) function showHide() if guiGetVisible(ScreenLocked, true) guiSetVisible(ScreenLocked, false) else guiSetVisible(ScreenLocked, true) end end addEventHandler ( "onClientGUIClick", ScreenLocked_UnlockButton, funScreenLocked_UnlockButton, false ) function funScreenLocked_UnlockButton() guiSetVisible(ScreenLocked, false) end
  2. how to disable catbox T and Y buttons?
  3. No, chatbox is not a resource. You can disable it with client or server-side functions. is it possible to modify chatbox for my server
  4. what is name of chatbox resource?
×
×
  • Create New...