fxAddTyreBurst | Multi Theft Auto: Wiki Skip to content

fxAddTyreBurst

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

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


Creates a tyre burst particle effect (a small white smoke puff).

Syntax

fxAddTyreBurst ( )

Code Examples

client

This example will create a Tyre Burst Effect next to you when typing/tyreburstin the Chatbox.

addCommandHandler("tyreburst", function()
local x, y, z = getElementPosition(localPlayer)
local gz = getGroundPosition(x, y, z)
fxAddTyreBurst(x, y, gz, 0, 0, 0)
end)