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

Why won't this script teleport the player to all other players?

Asked by 5 years ago

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)

01local lp = game.Players.LocalPlayer
02 
03wait(3)
04 
05for _,v in pairs(game.Players:GetChildren()) do
06    if game:GetService("Players")[v.Name] and game:GetService("Players")[v.Name].Character then
07        while true do
08            local randomplayer = math.random(1,#v)
09            lp.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
10            wait(1)
11        end
12    end
13end

What did I do wrong?

1 answer

Log in to vote
1
Answered by 5 years ago
Edited 5 years ago

Try this, tell me the outcome.

01local lp = game.Players.LocalPlayer
02 
03wait(3)
04 
05while true do
06    for _,v in pairs(game.Players:GetChildren()) do
07        local randomplayer = math.random(1, #v)
08        lp.Character.HumanoidRootPart.CFrame = randomplayer.Character.HumanoidRootPart.CFrame + Vector3.new(2, 0, 0)
09        wait(1)
10    end
11end
0
You probably want to use remote events. ChasingNachos 133 — 5y
0
I just edited it to make it work a little better. ChasingNachos 133 — 5y
0
Works good, thanks my man! MustangHeart 67 — 5y
0
Of course! Always happy to help! ChasingNachos 133 — 5y
Ad

Answer this question