Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-1

How do you make a map switch?

Asked by 10 years ago

In a fighting game you know how the map changes? That is what I mean.

1 answer

Log in to vote
-1
Answered by
Nickoakz 231 Moderation Voter
10 years ago

You put two or more different maps in game.ServerStorage and delete the map in Workspace and clone() a new map into workspace. Either..

Part by Part

local all=map:Clone()
local al=map:getChildren()
for a=1,#al do
al[a].Parent=Workspace.Map
wait()
end

or Whole

local all=map:Clone()
all.Parent=Workspace.Map
0
Thanks! ThunderCitty 0 — 10y
Ad

Answer this question