×
There are countless ways of spawning peds. Here are some variations for the ped model.
Example of an addon mod called Kira
MyPed = World.CreatePed("Kira", PP.Position + PP.ForwardVector * 3f, PP.Heading + 90);
Here are 4 equivalent examples for the vanilla Vagos female
MyPed = World.CreatePed(new Model(1520708641), PP.Position + PP.ForwardVector * 3f, PP.Heading + 90);
MyPed = World.CreatePed(new Model(0x5AA42C21), PP.Position + PP.ForwardVector * 3f, PP.Heading + 90);
MyPed = World.CreatePed("g_f_y_vagos_01", PP.Position + PP.ForwardVector * 3f, PP.Heading + 90);
MyPed = World.CreatePed(PedHash.Vagos01GFY, PP.Position + PP.ForwardVector * 3f, PP.Heading + 90);
Two examples of Franklin vanilla player
MyPed = World.CreatePed("player_one", PP.Position + PP.ForwardVector * 3f, PP.Heading + 90);
MyPed = World.CreatePed(PedHash.Franklin, PP.Position + PP.ForwardVector * 3f, PP.Heading + 90);