Hello : D
I have a script that should teleport all players to another section of the map after 100 seconds has passed however it only teleports one player?
–
wait(100)
for _,v in pairs(game:GetService(“Players”):GetPlayers()) do
if v.Character then
if v.Character:FindFirstChild(“HumanoidRootPart”) then
v.Character:FindFirstChild(“HumanoidRootPart”).CFrame = CFrame.new(76.25, -87.868, 91.151)
break
end
end – missing this end in the original fix
end
Can anyone help me with this?