Unable to replicate, only using updated roblox controls beta feature.
No services that I can find can be cloned, I used this janky script running through ScriptRunner to automate it for me:
for i,v in ipairs(game:GetChildren()) do
task.spawn(function()
print("Cloning "..v.Name)
local asdf = v:Clone()
asdf.Parent = game.Workspace.Folder
end)
end
Trying to manually clone lighting, teams and soundservice through the command bar also threw the cannot be cloned error
Ok well THAT works for some reason. Absolutely can replicate that.
Edit: Trying to copy Players like this doesn’t seem to work, but it also doesn’t throw an error.
I’m curious how many hidden services can also be copied around like this and if their functionality still works.
Dug into the code for this, and looks like we’ve allowed cloning for these 3 services in particular to support old places that rely on this behavior. Going to mark this as “Won’t Fix” so we don’t break them, but thanks for reporting it!