Why won't this script teleport the player to all other players?
I'm trying to make my script teleport the user to all players via a while true do
loop, but unfortunately it does nothing except output attempt to get length of local 'v' (a userdata value)
01 | local lp = game.Players.LocalPlayer |
05 | for _,v in pairs (game.Players:GetChildren()) do |
06 | if game:GetService( "Players" ) [ v.Name ] and game:GetService( "Players" ) [ v.Name ] .Character then |
08 | local randomplayer = math.random( 1 ,#v) |
09 | lp.Character.HumanoidRootPart.CFrame = game:GetService( "Players" ) [ v.Name ] .Character.HumanoidRootPart.CFrame |
What did I do wrong?