# tgiann-clothing

{% stepper %}
{% step %}

### Go to tgiann-clothing

Find file client/editable.lua
{% endstep %}

{% step %}

### Find Function

Find function firstCharacterCreated

Before:

```lua
function firstCharacterCreated()
    if config.framework == "esx" then
        Wait(2000)
        RenderScriptCams(false, false, 1, true, true)
        DoScreenFadeIn(0)
    end
    SetFocusEntity(PlayerPedId())
    TriggerEvent("tgiann-main:afk-control", true)
    TriggerEvent('tgiann-main:checkProfileSettings')
end
```

After:

```lua
function firstCharacterCreated()
    if config.framework == "esx" then
        Wait(2000)
        RenderScriptCams(false, false, 1, true, true)
        DoScreenFadeIn(0)
    end
    SetFocusEntity(PlayerPedId())
    TriggerEvent("tgiann-main:afk-control", true)
    TriggerEvent('tgiann-main:checkProfileSettings')

    TriggerEvent('op-multicharacter:charCreationComplete')
end
```

{% endstep %}
{% endstepper %}
