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

For loop not doing anything, not even prints. What did I do wrong?

Asked by 6 years ago

Hello,

This for loop is not working, it doesn't even print anything.

Why isn't it working? If it's not the correct method then what do I need to do? FireAllClients and use a local script?

01local plrs = game.Players:GetPlayers() -- Also tried :GetChildren()
02 
03for i,v in pairs(plrs) do
04    local Spawn = game.Workspace[currentMap.Name].Spawn
05    print(currentMap.Name)
06    v.Character.Torso.CFrame = CFrame.new(Spawn.Position)
07    Spawn:Destroy()
08    v.Character.Humanoid.Walkspeed = 0
09    wait()
10    print(v.Name)
11end

I also tried the

1for i = 1,#plrs do
2    local Spawn = game.Workspace[currentMap.Name].Spawn
3    print(currentMap.Name)
4    plrs[i].Character.Torso.CFrame = CFrame.new(Spawn.Position)
5    Spawn:Destroy()
6    plrs[i].Character.Humanoid.Walkspeed = 0
7    wait()
8    print(v.Name)
9end
0
Does it return an error? I'm going to review your code. HaloUlti 63 — 6y
0
Nothing on output AvionicScript 65 — 6y
0
Is it at the start of the script? If it is, there will be no players when the script first runs. mattscy 3725 — 6y
0
No it has 3 waits of 5 seconds each before it reaches the loop. AvionicScript 65 — 6y
0
I feel like you are not suppporting both R15 and R6 rigs. Use HumanoidRootPart instead of Torso since Torso is only at R6. Bilinearly 58 — 6y

1 answer

Log in to vote
0
Answered by
CPF2 406 Moderation Voter
6 years ago
Edited 6 years ago

I'm not really quite sure why it doesn't work, but I'll provide a script that I think will work.

01for i,v in pairs(game:GetService('Players'):GetChildren()) do
02 
03    local Spawn = game.Workspace:FindFirstChild(currentMap.Name):FindFirstChild('Spawn')
04    local Character = v.Character or v.CharacterAdded:Wait()
05 
06    print(currentMap.Name)
07 
08    Character:FindFirstChild('HumanoidRootPart').CFrame = CFrame.new(Spawn.Position)
09 
10    Spawn:Destroy()
11 
12    Character:FindFirstChildOfClass('Humanoid').Walkspeed = 0
13 
14    wait()
15    print(v.Name)
16 
17end
Ad

Answer this question