i want to delete the cloned map at the end of the script
if RS.Map1Votes.Value > RS.Map2Votes.Value and RS.Map1Votes.Value > RS.Map3Votes.Value then
chosenMaps.map1:Clone()
chosenMaps.map1:Clone().Parent = workspace
RS.Map1Votes.Value = 0
RS.Map2Votes.Value = 0
RS.Map3Votes.Value = 0
elseif RS.Map2Votes.Value > RS.Map1Votes.Value and RS.Map2Votes.Value > RS.Map3Votes.Value then
chosenMaps.map2:Clone()
chosenMaps.map2:Clone().Parent = workspace
RS.Map1Votes.Value = 0
RS.Map2Votes.Value = 0
RS.Map3Votes.Value = 0
elseif RS.Map3Votes.Value > RS.Map1Votes.Value and RS.Map3Votes.Value > RS.Map2Votes.Value then
chosenMaps.map3:Clone()
chosenMaps.map3:Clone().Parent = workspace
RS.Map1Votes.Value = 0
RS.Map2Votes.Value = 0
RS.Map3Votes.Value = 0
end