Answered by
5 years ago Edited 5 years ago
What are you trying to achieve with this script? And a quick search shows the correct usage of spawn(), "Spawn is used to run a function in a separate thread without yielding the current one. It will run simultaneously with the rest of the tasks, but won’t delay/affect the main thread." If you are trying to 'spawn' a zombie into the game you would clone it to the workspace(which you have done), and then set it's position to wherever you want it to appear.
EDIT: there would be at least two ways to make it 'spawn' you would either specify the position it should be at, like this
1 | Zombie = game.ServerStorage.Zombie |
3 | cz.Parent = game.Workspace |
4 | cz.UpperTorso.Position = Vector 3. new( 0 , 0 , 0 ) |
Or, you could set a block in the workspace that is invisible and has can collide off, and you would do something like this
1 | Zombie = game.ServerStorage.Zombie |
3 | cz.Parent = game.Workspace |
4 | cz.UpperTorso.Position = workspace.czspawn.Position |
If you have any other problems or questions just let me know