I want to delete the map on the client side when they are in the main menu, and then add it back in, as if it was always there, the issue is that sending the model through a RemoteEvent to the client only yields the model and none of its descendants.
--Server Side
for Index, Map in pairs(Services.Workspace:GetChildren()) do
if Map:HasTag("Map") then
print(Map:GetChildren())
LoadMapRemote:FireClient(Player, Map)
end
end
end)
--prints a table of all the children of the map
--Client Side
RemotesFolder.LoadMapRemote.OnClientEvent:Connect(function(Map)
print(Map:GetChildren())
end)
--prints '{}', an empty table