Whenever I place my own enemies (Saved to Roblox) from my models in the toolbox into my world and I or someone kills them they respawn in the same exact place how can I change the place where they respawn? (This isn't with just one of my enemies but with all of them)
Set the PrimaryPart of your NPCs! This gives you the option to use the :MoveTo() and the :SetPrimaryPartCFrame methods.
To set your NPC's PrimaryPart...
Open up the command bar.
Input this (adjust it to your desire).
-- Server Script YourNPC = workspace.YourNPC YourNPC:MoveTo(Vector3.new(0, 0, 0))
If you have a part that you want your NPC to spawn to...
YourNPC = workspace.YourNPC SpawnPoint = workspace.SpawnPoint YourNPC:MoveTo(SpawnPoint.Position)