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?
01 | local plrs = game.Players:GetPlayers() -- Also tried :GetChildren() |
02 |
03 | for 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) |
11 | end |
I also tried the
1 | for 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) |
9 | end |
I'm not really quite sure why it doesn't work, but I'll provide a script that I think will work.
01 | for 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 |
17 | end |