I’m trying to make a Tycoon and I want it to spawn parts but I’m not sure why it’s not working…It’s works on one dropper but when I put it on a different dropper it doesn’t work???
local block = game.ReplicatedStorage.Blocks.plastic1x1x1
local position = script.Parent.SpawnBlocks.Position
wait(1.1)
while script.Parent.Parent.Parent.Parent == game.Workspace do
wait(.1)
local DupBlock = block:Clone()
DupBlock.Position = position - Vector3.new(0,1,0)
DupBlock.Parent = workspace
end
This is what the error says:
Position is not a valid member of Script "Workspace.Tycoon1.ThingsToBeMade.Dropper2.SpawnBlocks