Ped::createRandomPed
vb.net Dim ped_handle As Integer
With Game.Player.Character
Dim pos As Vector3 = .Position + .ForwardVector * 3
ped_handle = Native.Function.Call(Of Integer)(Hash.CREATE_RANDOM_PED, pos.X, pos.Y, pos.Z)
End With
Creates a Ped at the specified location, returns the Ped Handle. Ped will not act until SET_PED_AS_NO_LONGER_NEEDED is called.
Syntax
```js mp.game.ped.createRandomPed(posX, posY, posZ); ```
Required Arguments
- posX: float
- posY: float
- posZ: float
Return value
- Ped handle or object
Example
```js // todo ```