So I was working on some virus simulation that simulates how viruses spread to cells, when I came across a warning in the output that was quite strange.
I am not able to make bug report topics, as I am a member, but I still wanted to report this bug, so I’ll just make a scripting support topic, here is the script.
Server script inside of a part:
local target = workspace.Cell
local clonedVirus
script.Parent.Position = target.Position
for i = 1,5 do
clonedVirus = script.Parent:Clone()
clonedVirus.Parent = workspace
end
target:Destroy()
Here is the game where you can experience the bug: