Why are the chips not spawning

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
image
it nevers prints ā€œeā€
never goes in workspace
wth

1 Like

srry the script was in replicatedstorage so it didnt work

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.