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
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.