RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make it so its replaced fast so players dont fall thru the map"
-- roblox script local map = game.Workspace:FindFirstChild("Map") while true do task.wait(10) if map then local newMap = game.ServerStorage.MapResets.Normal.Map:Clone() newMap.Parent = game.Workspace map:Destroy() end end