How to move spawned ClonePed() ?!

Does anyone know how to move the ClonePed() on the screen to place it in the middle or on the far left for example…??

    Citizen.Wait(100)
    SetFrontendActive(true)
    ReplaceHudColourWithRgba(117, 0, 0, 0, 0)
    ActivateFrontendMenu(GetHashKey("FE_MENU_VERSION_EMPTY_NO_BACKGROUND"), true, -1)

    Citizen.Wait(100)

    N_0x98215325a695e78a(false)

    PlayerPedPreview = ClonePed(PlayerPedId(), heading, true, false)

    local x,y,z = table.unpack(GetEntityCoords(PlayerPedPreview))

    SetEntityCoords(PlayerPedPreview, x, y, z - 500)

    FreezeEntityPosition(PlayerPedPreview, true)

    SetEntityVisible(PlayerPedPreview, false, false)

    NetworkSetEntityInvisibleToNetwork(PlayerPedPreview, false)

    Wait(200)

    SetPedAsNoLongerNeeded(PlayerPedPreview)

    GivePedToPauseMenu(PlayerPedPreview, 2)

    SetPauseMenuPedLighting(true)

    SetPauseMenuPedSleepState(true)