Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do we Clone all children and position then in a random spawn position in a folder?

Asked by 4 years ago
Edited 4 years ago
01local SpawnedGuns = game.Workspace.Gunspawned
02local gunSpawns = game.Workspace.GunSpawns:GetChildren()
03local gunsToSpawn = game.ServerStorage.Guns:GetChildren()
04 
05local CloneGuns = gunsToSpawn:Clone()
06CloneGuns.Parent = SpawnedGuns
07CloneGun.Position = math.Random("gunSpawns").Position
08 
09 
10 
11--But I don't know whats wrong with this peace of code how do I fix it?

1 answer

Log in to vote
1
Answered by 4 years ago

Your ("gunSpawns") should be

1math.Random[gunSpawns]Position -- Do not include the quotations.
0
@Xx0966xX this is probably the solution to your problem. if it is, please mark this question as "Answered" by this person ^ Avoxea 48 — 4y
Ad

Answer this question