setElementAlpha | Multi Theft Auto: Wiki Skip to content

setElementAlpha

Client-side
Server-side
Shared

Pair: getElementAlpha

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function sets the alpha (transparency) value for the specified element. This can be a player, ped, object, vehicle or weapon.

Syntax

setElementAlpha ( )

Code Examples

server

This example makes the player invisible.

function invisible()
setElementAlpha(localPlayer, 0)
end
addCommandHandler ( "invisible", invisible )

See Also

Element Functions