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
1 | plrs = 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 |
6 | end |
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. |
02 | local Table = { "Apple" , "Orange" } -- Items table. |
03 | local selected_value = math.random( 1 ,#Table) -- Get random number with 1 to length of table. |
04 | local value = Table [ selected_value ] -- Get selected value |
05 | print ( "I got the value: " .. tostring (value)) -- Print the value. |
06 |
07 | -- 2 - Get random item from model, part... |
08 | local model = workspace.Model:GetChildren() -- For get length of model, part... you need to use :GetChildren(). for get of players use :GetPlayers() |
09 | local random_value = math.random( 1 ,#model) -- Get random number with 1 to length of model objects. |
10 | local item = model [ random_value ] -- Get the value |
11 | print ( "I got the item: " .. tostring (item.Name)) -- Print the value |
Here is fixed script:
1 | local plrs = game:GetService( "Players" ) |
2 | local p = plrs:GetPlayers() |
3 | local selected_value = math.random( 1 ,#p) |
4 | p [ selected_value ] .Settings.Tagger.Value = true |
Wiki pages:
Hope it helped :)
Errors? tell-me on comments.