Help me with this script
So I was making a script where copies specific things in the workspace but I wanted it in one table but it keeps giving an error attempt to get the length of a number value
By the way, it's in a local script.
local s = { workspace.test, workspace.test2 } for i = 1,#s do i:Clone().Parent = ViewportFrame i:Clone().Parent = ViewportFrame2 print("copied to map") end