Parts Spawning Not working

So I’m trying to code a laundry simulator type game and I have been writing so code for it, I made a spawning code

local DropPart = game.Workspace:FindFirstChild(“DropThingy”)
local function SpawnParts()
local part = Instance.new(“Part”, workspace)
wait(1)
part.Position = Vector3.new(-233.92, 9.51, 278.63)
part.Anchored = false
part.CanTouch = true
part.Name = “DropPart”
end
while true do
wait(1)
SpawnParts()
end

and it works perfectly fine, but I want to add a mesh to the parts now but when i rewrote the code nothing worked, instead of using instance.new i was using clone()

local Eggs = game.Workspace:FindFirstChild(“Egg_Slice_Egg_0”)

local function SpawnParts()
if Eggs then
local part = Eggs:Clone()
part.Position = Vector3.new(-233.92, 9.51, 278.63)
part.Anchored = false
part.CanTouch = true
part.Name = “DropPart”
part.Parent = game.Workspace
end
end

while true do
wait(1)
SpawnParts()
end

2 Likes



pictures of the code, when i try to clone a model i made and make it spawn nothing is spawning

2 Likes

I copied your code, tested it and it works fine for me.

  • Do you have any errors in the output?
  • What type of instance is Eggs?
1 Like

are you getting any errors in the output ?

The Eggs is a MeshPart, and whenever i spawn it it forces the meshpart to be anchored. I tried unanchoring it with code but it doesnt work for some reason and theres no bug

local Eggs = game.Workspace:FindFirstChild(“Egg_Slice_Egg_0”)
local function SpawnPart()
if Eggs then
local part = Eggs:Clone()
wait(1)
part.Parent = game.Workspace
part.Position = Vector3.new(-233.92, 9.51, 278.63)
part.Anchored = false
end
end

while true do
wait(1)
SpawnPart()
end

this is my code rn it it spawns, but is still anchored when i spawn it

Is this in a local script? If not, try running a print statement before and after the part.Anchored line to check whether or not the executor actually runs the code.

I just realized that is a local script, but even when I changed it to a normal script, the meshpart wasnt dropping normally

Is working server side for some weird reason, the scripts is in server script service and is a normal script



it works in server side

2 Likes