I'm trying to pick a map but it keeps picking the same map (I have 1 model that contains 2 maps in replicated storage)
1 | local RS = game:GetService( 'ReplicatedStorage' ) --Same thing as saying (game.Lighting) |
2 | local Maps = RS.Maps:GetChildren() |
3 | local PickMap = math.random( 1 ,#Maps) |
4 | local SelectedMap = Maps [ PickMap ] :Clone() |
5 |
6 | print (SelectedMap.Name) |
7 | SelectedMap.Parent = workspace |
This most likely isn't a bug but is caused by you not changing the seed of the random generator, at the beginning of your script write, math.randomseed(os.time)
. That makes it so that it uses a different seed each time it generates.