01 | local SpawnedGuns = game.Workspace.Gunspawned |
02 | local gunSpawns = game.Workspace.GunSpawns:GetChildren() |
03 | local gunsToSpawn = game.ServerStorage.Guns:GetChildren() |
04 |
05 | local CloneGuns = gunsToSpawn:Clone() |
06 | CloneGuns.Parent = SpawnedGuns |
07 | CloneGun.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? |
Your ("gunSpawns") should be
1 | math.Random [ gunSpawns ] Position -- Do not include the quotations. |