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

How to use a function when a value "Changes"?

Asked by
lucas4114 607 Moderation Voter
10 years ago

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?

01RoundStart = game.Workspace.RoundStart
02Room1 = game.ServerStorage.Room1
03Room2 = game.ServerStorage.Room2
04Room3 = game.ServerStorage.Room3
05Room4 = game.ServerStorage.Room4
06Room5 = game.ServerStorage.Room5
07 
08while wait() do
09    wait(1)
10    if RoundStart.Value == true then
11        RandomRoom = (math.random(5))
12        if RandomRoom == 1 then
13            Map1 = Room1:Clone()
14            Map1.Parent = game.Workspace
15        end
View all 35 lines...
0
Um what? If you only want it to happen once then don't put it in a loop. Or if you want put it in a function so you can call it multiple times. NotsoPenguin 705 — 10y
0
Yeah, I know the point is, I want to put it in a function, I just don't know what... Event?.. To use to use that function when the bool value "RoundStart" Changes.. lucas4114 607 — 10y
0
I think you SHOULD make all of your Map1 =... be a local Map1 alphawolvess 1784 — 10y

1 answer

Log in to vote
3
Answered by 10 years ago

The reason it isn't picking random number is because you didn't give it a range, which it requires. So do:

1RandomRoom = math.random(1,5) or math.random(5)

also I noticed your script says:

1while wait() do
2    wait(1)

which isn't necessary, you can just do

1while wait() do
2--or
3while wait(1) do
4--the difference is "1" is every second, and () is much faster

NOW TO ANSWER THE MAIN PART OF YOUR QUESTION To connect when a value changes use

1game.Workspace.RoundStart.Changed:connect(function()
2    --do whatever
3end)
0
EDITING RIGHT NOW BSIncorporated 640 — 10y
2
You're incorrect in regards to his attempt of picking a random number - math.random(5) would work exactly the same if he did math.random(1,5) - If the random number he wanted wasn't between 1 and 5, but rather 5 and 10, he would need to dictate "a range". DataStore 530 — 10y
0
Yeah, the random thing DID work for me my way too... lucas4114 607 — 10y
Ad

Answer this question