In the race clan server amg 1.1 is an example: it is a wheel that turns and my point is also simulate a gif image
I have this script but do not know much about lua and nose is missing this is the case
This script should play 32 images taken from a gif, please tell me if they know thanks! : D: D
local index = 1
addEventHandler("onClientRender" , root ,
function ( )
dxDrawImage ( screenWidth/2 - 50, 0, 642, 204, , "imageName"..index..".png" )
index = index + 1
if index >= MaxFrame then
index = 1
end
end )