Jump to content

[HELP] " Minimized the game " Script pls


Recommended Posts

onClientMinimize 

The Lua tags only work for functions, not events.

You will need to use onClientMinimize to detect minimization. And you will need to use onClientRestore to detect when a client restores their screen.

The following outputs in the chat box what time you minimized the screen.

addEventHandler("onClientMinimize", root, 
    function () 
        local t = getRealTime() 
        outputChatBox("You minimized your screen at "..t.hour..":"..t.minute) 
    end 
) 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...