local lays = script.Parent:WaitForChild('lays')
local doritos = script.Parent:WaitForChild('doritos')
local pringles = script.Parent:WaitForChild('pringles')
local chips4noobs = script.Parent:WaitForChild('chips4noobs')
local locations = workspace:WaitForChild('Map').luckboosterspawns
local spawnlist = {}
for key, value in pairs(locations) do
table.insert(spawnlist, key)
end
for i,v in pairs(script.Parent:GetChildren()) do
if v:IsA('BasePart') then
print('e')
local randomspawn = locations[spawnlist[math.random(spawnlist)]]
v.Position = randomspawn.Position
v.Parent = workspace
end
end
in the folder there are parts
it nevers prints āeā
never goes in workspace
wth