OnClientGUIMove

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This event is triggered each time the user moves a GUI element.

Parameters

No parameters.

Source

The source of this event is the GUI element which was moved.

Example

This example would output to the chatbox what the player moved.

addEventHandler("onClientGUIMove",guiRoot,function()
	outputChatBox("You have moved :"..getElementType(source))
end)

See Also

Input

GUI


Client event functions