16 lines
355 B
Lua
16 lines
355 B
Lua
--- Desencrypted By PrejuicioX
|
|
|
|
function PerformAnimation(animationType)
|
|
local playerPed = PlayerPedId()
|
|
|
|
ClearPedTasks(playerPed)
|
|
Citizen.Wait(250)
|
|
|
|
local animConfig = Config.outfitChangeAnimation[animationType]
|
|
|
|
PlayAnim(animConfig.dict, animConfig.anim)
|
|
|
|
return animConfig.duration
|
|
end
|
|
|
|
--- Desencrypted By PrejuicioX |