Im trying to make a client sided part when a map is added to workspace, but it seems to break sometimes and seems to not be completly client sided. Here’s my script:
local addPart = function(v)
if v.Name == "Client" then
local c = v.Parent:Clone()
c.Parent = v.Parent.Parent
v.Parent:Destroy()
end
end
workspace.MapFolder.ChildAdded:Connect(function(child)
task.wait(0.3)
for _,d in pairs(child:GetDescendants()) do
addPart(d)
end
end)
Here’s a video of my freinds testing, and the spinners a buging and aren’t acting client sided.

