I have a folder " Spawners" in the workspace with multiple parts called "1", "2".., but it does not work with the script below. It said "Workspace.Spawners.Script:6: attempt to index number with 'Value'.
01 | local Spawners = script.Parent:GetChildren() |
02 | local Zombie = game.ReplicatedStorage [ "Zombie" ] |
03 | while true do |
04 | local SpawnChosen = math.random( 1 ,#Spawners) |
05 | for i, v in pairs (Spawners) do |
06 | if v.Name = = SpawnChosen.Value then |
07 | local Clone = Zombie:Clone() |
08 | Zombie.UpperTorso.CFrame = v.CFrame |
09 | end |
10 | end |
11 | wait( 1 ) |
12 | end |
EDIT: try this, it works for me, for this to work you have to group the spawners together and put the zombie model inside ServerStorage :
01 | local Spawners = game.Workspace.Spawners:GetChildren() --Change '.Spawners.' to whatever your model with your spawners inside is called |
02 | local Zombie = game.ServerStorage.Zombie |
03 | while true do |
04 | local SpawnChosen = math.random( 1 ,#Spawners) |
05 | for i, v in pairs (Spawners) do |
06 | print (i) |
07 | if tostring (v) = = tostring (SpawnChosen) then |
08 | local Clone = Zombie:Clone() |
09 | Clone.Parent = game.Workspace |
10 | Clone.HumanoidRootPart.CFrame = v.CFrame |
11 | end |
12 | end |
13 | wait( 1 ) |
14 | end |
The problem was that 'v' and 'SpawnChosen' were different variables and so you cant compare them so i just inverted both of them to strings before comparing .
Also you need to move the Clone not the zombie and I believe its better to do instead of UpperTorso.CFrame = v.CFrame , HumanoidRootPart.CFrame.... in case you have a zombie that is R15 since HumanoidRootPart works for both r15 and r6 characters while uppertorso only works for r6
1 | while true do |
2 | local Spawners = script.Parent:GetChildren() |
3 | local Zombie = game.ReplicatedStorage.Zombie:Clone() --Clones The Zombie |
4 | local SpawnChosen = math.random( 1 ,#Spawners) |
5 | Zombie.Parent = workspace --Spawns It In |
6 | Zombie:moveTo(SpawnChosen.Position) --Moves It To The Chosen Spawner |
7 | wait( 1 ) |
8 | end |