of     1   

wakapro77
#36224704Saturday, October 30, 2010 2:46 PM GMT

i tryed to change the position but it broke. the position i want is (231,5.28,-61) Can someone help me? heres the script: wait(10) -- this will start after 10 sec. while true do local h = Instance.new ("Message") h.Parent = game.Workspace h.Text = "Game Starting!" wait(5) h.Parent = game.Lighting p = game.Players:GetChildren() for i = 1, #p do p[i].Character.Torso.CFrame = CFrame.new(Vector3.new(math.random(295,305), 1.6,-348)) end wait(120) local pla = game.Players:children() for x = 1, #pla do pla[x].Character.Humanoid.Health = 0 end h.Parent = game.Workspace h.Text = "Game End" wait(5) h:Remove() local m = Instance.new ("Hint") m.Parent = game.Workspace m.Text = "Next game starting in 30 seconds" wait(1) m.Text = "Next game starting in 29 seconds" wait(1) m.Text = "Next game starting in 28 seconds" wait(1) m.Text = "Next game starting in 27 seconds" wait(1) m.Text = "Next game starting in 26 seconds" wait(1) m.Text = "Next game starting in 25 seconds" wait(1) m.Text = "Next game starting in 24 seconds" wait(1) m.Text = "Next game starting in 23 seconds" wait(1) m.Text = "Next game starting in 22 seconds" wait(1) m.Text = "Next game starting in 21 seconds" wait(1) m.Text = "Next game starting in 20 seconds" wait(1) m.Text = "Next game starting in 19 seconds" wait(1) m.Text = "Next game starting in 18 seconds" wait(1) m.Text = "Next game starting in 17 seconds" wait(1) m.Text = "Next game starting in 16 seconds" wait(1) m.Text = "Next game starting in 15 seconds" wait(1) m.Text = "Next game starting in 14 seconds" wait(1) m.Text = "Next game starting in 13 seconds" wait(1) m.Text = "Next game starting in 12 seconds" wait(1) m.Text = "Next game starting in 11 seconds" wait(1) m.Text = "Next game starting in 10 seconds" wait(1) m.Text = "Next game starting in 9 seconds" wait(1) m.Text = "Next game starting in 8 seconds" wait(1) m.Text = "Next game starting in 7 seconds" wait(1) m.Text = "Next game starting in 6 seconds" wait(1) m.Text = "Next game starting in 5 seconds" wait(1) m.Text = "Next game starting in 4 seconds" wait(1) m.Text = "Next game starting in 3 seconds" wait(1) m.Text = "Next game starting in 2 seconds" wait(1) m.Text = "Next game starting in 1 seconds" wait(1) m.Text = "Next game starting in 0 seconds" wait(1) m:Remove() end
CrniOrao
#36224793Saturday, October 30, 2010 2:47 PM GMT

for i, v in pairs(game.Players:GetChildren()) do if v.Character then v.Character:MoveTo(Vector3.new(231,5.28,-61)) elseif v.Character == nil then repeat wait() until v.Character v.Character:MoveTo(Vector3.new(231,5.28,-61)) end end
wakapro77
#36225090Saturday, October 30, 2010 2:54 PM GMT

thats not on the script
wakapro77
#36225233Saturday, October 30, 2010 2:56 PM GMT

bump
bloob827
#36225319Saturday, October 30, 2010 2:58 PM GMT

He means you need to add it in.
wakapro77
#36227980Saturday, October 30, 2010 3:46 PM GMT

where?

    of     1