So, im making this minigame type of game, and i need all the maps to be different. I tried using a loop to find a new random value, but it makes the game laggy and does not seem very efficient. I found something called Random.new() on the devforum, but have no idea how to use it. here's what i tried so far.
1 | local maps = game.ReplicatedStorage.Maps:GetChildren() |
2 | local map 1 = Random.new( 1 ,#maps) |
3 | local map 2 = Random.new( 1 ,#maps) |
4 | local map 3 = Random.new( 1 ,#maps) |
5 | script.Map 1. Value = map 1. Name |
6 | script.Map 2. Value = map 2. Name |
7 | script.Map 3. Value = map 3. Name |
Hey, try this and see if it works fine :)
1 | local maps = game.ReplicatedStorage.Maps:GetChildren() |
2 |
3 | for i = 1 , 3 , 1 do |
4 | script [ "Map" ..i ] .Value = math.random( 1 , #maps) |
5 | end |
Additionally, if you want the maps that have been chosen already to not appear again, you will need to use tables.
here's how I'd do it.
1 | local maps = game.ReplicatedStorage.Maps:GetChildren() |
2 |
3 |
4 | for i = 1 , 3 , 1 do |
5 | map = math.random( 1 ,#maps) |
6 | script [ "Map" ..i ] .Value = map |
7 | table.remove(maps, map) |
8 | end |
This will remove the map that has already been chosen so the next one that gets selected will not be the same.
That my friend is not how the Random
class works. Let me explain.
The Random
class allows you to create a new random object and you can also specify an optional seed. Such that: rand Random.new([string | float Seed])
using this newly created random object you have the choice of 2 functions one is: int rand:NextInteger(int Min, int Max)
which returns a random integer between min and max. The other function you have is: float rand:NextNumber([float Min = 0, float Max = 1])
this returns a random float between min and max which will be 0 to 1 if not specified. The random object also has another function rand rand:Clone()
which returns a new random object with the same seed and internal iteration.
So here is how you would use it:
1 | local rand = Random.new() |
2 |
3 | local randomInteger = rand:NextInteger( 0 , 10 ) |
4 |
5 | print (randomInteger) -- Output: 1, 2, ... 10 |
And I know this isn't a request site, but for your case you would do this:
01 | local maps = game.ReplicatedStorage.Maps:GetChildren() |
02 | local rand = Random.new() |
03 |
04 | -- You also need to index the "maps" table in order to get the objects, otherwise you would just get a number between 1 and the number of maps |
05 | local map 1 = maps [ rand:NextInteger( 1 , #maps) ] |
06 | local map 2 = maps [ rand:NextInteger( 1 , #maps) ] |
07 | local map 3 = maps [ rand:NextInteger( 1 , #maps) ] |
08 | script.Map 1. Value = map 1. Name |
09 | script.Map 2. Value = map 2. Name |
10 | script.Map 3. Value = map 3. Name |
The above code can be simplified to:
01 | local maps = game.ReplicatedStorage.Maps:GetChildren() |
02 | local rand = Random.new() |
03 |
04 | for i = 1 , 3 do |
05 | local map = maps [ rand:NextInteger( 1 , #maps) ] |
06 | local value = script:FindFirstChild( "Map" ..i) |
07 | if value then |
08 | value.Value = map.Name |
09 | end |
10 | end |
I hope this helps!
Can't you set a variable to a random integer.
1 | local map = math.random( 1 , 10 ) |
2 | If map = = 1 then |
3 | Elseif map = = 2 |
ECT.