Hi Guys, I have a problem with my script as the script keeps on duping maps into the game. I only want one map to be cloned from my maps folder into workspace but it is adding more and more maps into workspace. Here is the code
local AvailableMaps = MapsFolder:GetChildren()
local ChosenMap = AvailableMaps[math.random(1,#AvailableMaps)]
local ClonedMap = ChosenMap:Clone()
ClonedMap.Parent = workspace