How to use a function when a value "Changes"?
So, I made a map loading script, and the problem is that the script, is ment to pick one of the 5 maps randomly, it works, the porblem is that it does it too many times, it's only ment to do it once. Well, I know what to do to fix it, I just don't know how... I mean I know I have to use it as a function, not a while wait.. And I know that theres a way to do the function whenever a value changes... I just don't know how! Help?
01 | RoundStart = game.Workspace.RoundStart |
02 | Room 1 = game.ServerStorage.Room 1 |
03 | Room 2 = game.ServerStorage.Room 2 |
04 | Room 3 = game.ServerStorage.Room 3 |
05 | Room 4 = game.ServerStorage.Room 4 |
06 | Room 5 = game.ServerStorage.Room 5 |
10 | if RoundStart.Value = = true then |
11 | RandomRoom = (math.random( 5 )) |
12 | if RandomRoom = = 1 then |
14 | Map 1. Parent = game.Workspace |
16 | if RandomRoom = = 2 then |
18 | Map 1. Parent = game.Workspace |
20 | if RandomRoom = = 3 then |
22 | Map 1. Parent = game.Workspace |
24 | if RandomRoom = = 4 then |
26 | Map 1. Parent = game.Workspace |
28 | if RandomRoom = = 5 then |
30 | Map 1. Parent = game.Workspace |