setElementAlpha | Multi Theft Auto: Wiki Skip to content

setElementAlpha

Client-side
Server-side
Shared

Pair: getElementAlpha

Manual Review Required

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.

OOP Syntax Help! I don't understand this!

  • Method:element:setAlpha(...)
  • Variable: .alpha

Syntax

bool setElementAlpha ( element theElement, int alpha )
Required Arguments
  • theElement: The element whose alpha you want to set.
  • alpha: The alpha value to set. Values are 0-255, where 255 is fully opaque and 0 is fully transparent. Note: Objects are fully transparent at 140.

Returns

  • bool: value

Returns true or false if invalid arguments were passed.

Code Examples

shared

This example makes the player invisible.

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

See Also

Element Functions