local zombienpc = game.ReplicatedStorage:WaitForChild("Regular Zombie") local spawner = game.Workspace.Spawners:WaitForChild("Zombie Spawner") while true do local clone = zombienpc:clone() clone.Torso.CFrame = CFrame.new(spawner.Position) clone.Parent = game.workspace wait(3) end
The zombie seems to spawn in the Workplace but it does not spawn in the correct position I desire( which is spawner.Position )
Change clone.Torso.CFrame into clone.HumanoidRootPart.CFrame. If your zombie doesn't have this part just make 1 for it and make it invisible. Torso is deprecated so expected problems: http://wiki.roblox.com/index.php?title=API:Class/Humanoid/Torso