Replace destroyElement() with engineRestoreModel()
local state = false
bindKey( 'F3', 'down',
function( )
if state then
engineRestoreModel (3458)
outputChatBox( '#ffcc00[MSG]: #c0c0c0Road texture disabled!', 255,255,255,true )
state = false
else
txd = engineLoadTXD( 'vgncarshade1.txd', 3458 )
engineImportTXD( txd, 3458 )
state = true
outputChatBox( '#ffcc00[MSG]: #c0c0c0Road texture enabled!', 255,255,255,true )
end
end
)