ClonePed
Docslocal retval = ClonePed(ped, isNetwork, bScriptHostPed, copyHeadBlendFlag)Description
Creates a copy of the passed ped, optionally setting it as local and/or shallow-copying the head blend data.
Parameters
| Name | Type | Description |
|---|---|---|
ped | Ped | The input ped. |
isNetwork | BOOL | Whether or not the ped should be registered as a network object. |
bScriptHostPed | BOOL | Script host flag. |
copyHeadBlendFlag | BOOL | If true, head blend data is referenced, not copied. |
Quick Snippet: Get Ped Handleped→ Ped
ped→ PedUse this to get the player ped handle for this native.
-- Get the player's ped handle (client-side)
local ped = PlayerPedId()
print("Ped handle: " .. ped)
-- For a specific player's ped (server-side):
-- local targetPed = GetPlayerPed(source)Ped Models

mp_m_freemode_01
player_zero
ig_agatha
s_m_y_cop_01
s_m_m_gaffer_01
g_m_m_armboss_01
a_c_boar
a_m_m_bevhills_01Returns
PedReturns a ped (pedestrian) handle.
Examples
Official
-- makes a locally visible duplicate of the local player for presentation
local playerDummy = ClonePed(PlayerPedId(), false, false, true)
SetEntityCoords(playerDummy, pos.x, pos.y, pos.z)