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

How do I pick a random player?

Asked by 6 years ago

I asked this recently and got an answer, but now I don't think it works as it should. What I want it to do is select a random player and sets a value inside 'Settings' to true. This is what I got but whenever I test it, it only picks the first person to join the server repeatedly

1plrs = game.Players
2        p = plrs:GetChildren()
3        for i = 1,#p do
4        b = math.random(1,i)
5        p[b].Settings.Tagger.Value = true
6end
2
`Plr = Plrs[random(1, #Plrs)]`? TheeDeathCaster 2368 — 6y

1 answer

Log in to vote
4
Answered by
yHasteeD 1819 Moderation Voter
6 years ago
Edited 6 years ago

You need to use the math.random and use plrs:GetPlayers() not plrs:GetChildren()

and for math.random use math.random(1,#p) and use local VARIABLE = ...

dont need to use for loop.

here is a examples of math.random:

01-- 1 - Get random item from table.
02local Table = {"Apple","Orange"} -- Items table.
03local selected_value = math.random(1,#Table) -- Get random number with 1 to length of table.
04local value = Table[selected_value] -- Get selected value
05print("I got the value: " .. tostring(value)) -- Print the value.
06 
07-- 2 - Get random item from model, part...
08local model = workspace.Model:GetChildren() -- For get length of model, part... you need to use :GetChildren(). for get of players use :GetPlayers()
09local random_value = math.random(1,#model) -- Get random number with 1 to length of model objects.
10local item = model[random_value] -- Get the value
11print("I got the item: " .. tostring(item.Name)) -- Print the value

Here is fixed script:

1local plrs = game:GetService("Players")
2local p = plrs:GetPlayers()
3local selected_value = math.random(1,#p)
4p[selected_value].Settings.Tagger.Value = true

Wiki pages:

math.random

GetPlayers()

GetChildren()

Hope it helped :)

Errors? tell-me on comments.

Ad

Answer this question