So I am making a mini game and I can't get this script to work
Errors at Line 12
01 | local Map = "WaterRun" ; |
02 | local Time = script.Parent.Time; |
03 |
04 | local function Intermission(player) |
05 | for t = 30 , 1 , - 1 do |
06 | Time.Text = t; |
07 | wait( 1 ); |
08 | end |
09 |
10 | for i,v in pairs (game.Players:GetChildren()) do |
11 | if (Map = = "WaterRun" ) then |
12 | v:GetPlayerFromCharacter(player); |
13 | player.Parent.HumanoidRootPart.CFrame = CFrame.new(- 207.5 , 15.5 , 151.5 ); |
14 | end |
15 | end |
16 | end |
17 | script.Parent.StartRound.MouseButton 1 Click:Connect(Intermission); |
https://developer.roblox.com/articles/For-Loops (don't know why you need this, but if it answers your title, there it is) as for your description, this should help you:
01 | local Map = "WaterRun" ; |
02 | local Time = script.Parent.Time; |
03 |
04 | local function Intermission(player) |
05 | for t = 30 , 1 , - 1 do |
06 | Time.Text = t; |
07 | wait( 1 ); |
08 | end |
09 |
10 | for i,v in pairs (game.Players:GetChildren()) do |
11 | if (Map = = "WaterRun" ) then --this is always going to be true, why have this if statement if it will always run? |
12 | v.Character.HumanoidRootPart.CFrame = CFrame.new(- 207.5 , 15.5 , 151.5 ); |
13 | elseif (Map = = "Future maps" then --just added this for you so you know what to do for future maps |
14 | end |
15 | end |
16 | end |
17 | script.Parent.StartRound.MouseButton 1 Click:Connect(Intermission); |
So I don't understand why your question was about counting down, but the error at line 12 should be fixed by using v, the player and getting the humanoid root part of that player.
The For Loop syntax is for init, max/min value, increment
. Instead of creating a new variable and decrementing from it, you can simply do it inside the for loop.
01 | local Map = "WaterRun" ; |
02 | local Time = script.Parent.Time; |
03 | local Pos = CFrame.new(- 207.5 , 15.5 , 151.5 ); |
04 |
05 | local function Intermission() |
06 | for t = 30 , 1 , - 1 do |
07 | Time.Text = t; |
08 | wait( 1 ); |
09 | end |
10 |
11 | for _, plr in pairs (game.Players:GetPlayers()) do |
12 | if (Map = = "WaterRun" ) then |
13 | plr.Character.HumanoidRootPart.CFrame = Pos; |
14 | end |
15 | end |
16 | end |
17 | script.Parent.StartRound.MouseButton 1 Click:Connect(Intermission); |
Once you started adding in more maps, you will notice that conditional statements are very frustrating to use. To counter that, saving it in a table saves you great deal of time.
01 | local Maps = { |
02 | [ "WaterMap" ] = CFrame.new( 100 , 100 , 100 ); |
03 | [ "AnotherMap" ] = CFrame.new( 200 , 200 , 200 ); |
04 | } |
05 | local Time = script.Parent.Time; |
06 |
07 | local function string_ChooseMap () |
08 | local x = { } ; |
09 | for a , _ in pairs (Maps) do |
10 | table.insert(x, a); |
11 | end |
12 |
13 | local random = x [ math.random(#x) ] ; |
14 |
15 | return random; |