CrazyKelly 3 Posted July 10, 2020 Share Posted July 10, 2020 For the life of me I can not figure out how to stop the cars from spawning on each other. policecar = await SpawnVehicle(VehicleHash.Sheriff, Location); is what i'm using but if i add a new vector i get an error or does not spawn. It would be awesome if i can get info on whats going on here. Link to post Share on other sites
TheCipher01 126 Posted July 10, 2020 Share Posted July 10, 2020 What I do, and this might not be right or there might be an easier/better way to do it and if so someone can feel free to correct me, is this: car1 = await SpawnVehicle(VehicleHash.Buffalo, Location); car2 = await SpawnVehicle(VehicleHash.Dominator, Location +2f)' TheCipher01 Community Team | Administrative Support Link to post Share on other sites
CrazyKelly 3 Posted July 10, 2020 Author Share Posted July 10, 2020 3 hours ago, TheCipher01 said: What I do, and this might not be right or there might be an easier/better way to do it and if so someone can feel free to correct me, is this: car1 = await SpawnVehicle(VehicleHash.Buffalo, Location); car2 = await SpawnVehicle(VehicleHash.Dominator, Location +2f)' That did not work for me. I gone up and down with that heading number and the cars did not move for me. Link to post Share on other sites
Dominic1337 29 Posted July 10, 2020 Share Posted July 10, 2020 (edited) suspectCar1 = await SpawnVehicle(model1, Location); suspectCar2 = await SpawnVehicle(model2, new Vector3(Location.X + 9f, Location.Y, Location.Z)); edit the 9 to something smaller if needed, i did this for an older callout of mine and have had no problems. Edited July 10, 2020 by Dominic1337 1 Link to post Share on other sites
CrazyKelly 3 Posted July 10, 2020 Author Share Posted July 10, 2020 5 minutes ago, Dominic1337 said: suspectCar1 = await SpawnVehicle(model1, Location); suspectCar2 = await SpawnVehicle(model2, new Vector3(Location.X + 9f, Location.Y, Location.Z)); edit the 9 to something smaller if needed, i did this for an older callout of mine and have had no problems. that worked!! thanks bro! I'm new to all this lol 2 Link to post Share on other sites
TheCipher01 126 Posted July 10, 2020 Share Posted July 10, 2020 This content has been locked by the Community Team. If you feel this was a mistake, please report this reply with a valid reason.Solved 1 TheCipher01 Community Team | Administrative Support Link to post Share on other sites
Recommended Posts