Help With A Map Loading Script?
01 | gm = game.Workspace.GMstat.Intermission |
04 | ToMapOne = CFrame.new(- 2 , 20.5 , - 50 ) |
05 | ToMapTwo = CFrame.new(- 27 , 69.5 , 18 ) |
06 | ToSpawn = CFrame.new( 277.5 , 1.5 , - 206.5 ) |
07 | mapc = game.Workspace.MapNum.Value |
09 | gm.Name = "Game In Progress" |
10 | for i, player in ipairs (game.Players:GetChildren()) do |
11 | if player.Character and player.Character:FindFirstChild( "Torso" ) then |
12 | mapc.Value = (math.random( 2 )) |
14 | if mapc.Value = = 1 then |
16 | player.Character.Torso.CFrame = ToMapOne + Vector 3. new( 0 , i * 5 , 0 ) |
17 | player.TeamColor = game.Teams [ "Playing" ] .TeamColor |
18 | for i, m 1 in ipairs (game.Workspace.MapOne:GetChildren()) do |
23 | if mapc.Value = = 2 then |
25 | player.Character.Torso.CFrame = ToMapTwo + Vector 3. new( 0 , i * 5 , 0 ) |
26 | player.TeamColor = game.Teams [ "Playing" ] .TeamColor |
27 | for i, m 2 in ipairs (game.Workspace.MapTwo:GetChildren()) do |
35 | gm.Name = "Intermission" |
36 | for i, m 1 in ipairs (game.Workspace.MapOne:GetChildren()) do |
40 | for i, m 2 in ipairs (game.Workspace.MapTwo:GetChildren()) do |
44 | for i, player in ipairs (game.Players:GetChildren()) do |
45 | if player.Character and player.Character:FindFirstChild( "Torso" ) then |
46 | player.TeamColor = game.Teams [ "Lobby" ] .TeamColor |
47 | player.Character.Torso.CFrame = ToSpawn + Vector 3. new( 0 , i * 5 , 0 ) |
This script works fine for the most part, but the only problem is that when there are multiple people in the game all the script seems to generate a different number in mapc for each player, resulting in multiple numbers calling for multiple maps to be loaded. How can I fix it so that the script only chooses one number?