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

Help With A Map Loading Script?

Asked by
Scootakip 299 Moderation Voter
9 years ago
01gm = game.Workspace.GMstat.Intermission
02 
03while true do
04ToMapOne = CFrame.new(-2, 20.5, -50)
05ToMapTwo = CFrame.new(-27, 69.5, 18)
06ToSpawn = CFrame.new(277.5, 1.5, -206.5)
07mapc = game.Workspace.MapNum.Value
08wait(29)
09gm.Name = "Game In Progress"
10for i, player in ipairs(game.Players:GetChildren()) do
11   if player.Character and player.Character:FindFirstChild("Torso") then
12    mapc.Value = (math.random(2))
13    wait(1)
14    if mapc.Value == 1 then
15      print(mapc.Value)
View all 50 lines...

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?

0
Why do you use ipairs? It's ugly af.... deputychicken 226 — 9y
0
What's the alternative? Scootakip 299 — 9y

Answer this question