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

How to make a value go up to 9 then start back at 1 in a MouseClick?

Asked by 5 years ago
Edited 5 years ago
01local number = 1
02local clickDetector = script.Parent
03clickDetector.MouseClick:Connect(function()
04local wChildren = game:GetService("Workspace"):GetChildren()
05 
06 
07    for i,c in pairs(wChildren) do
08        if string.sub(c.Name, 1, 2) == "FM" then
09    c.Parent = game.Lighting
10local fm = 'FM'..number
11 
12            if game:GetService("Lighting"):FindFirstChild(fm) then
13local fm1 =    game:GetService("Lighting"):FindFirstChild(fm)
14fm1.Parent = game:GetService("Workspace")
15print(fm)
View all 24 lines...

the problem is that it won't continue with the if loop, it just stops in the else statement, but I want it to go with the loop this is the entire output FM1 FM2 FM3 FM4 FM5 FM6 FM7 FM8 FM9 FM1

why doesnt it go back to FM1 and then loop the output again?

0
You need to check for when "number" equals 9, then set it back to 1. FishslayerX 8 — 5y
0
No. There is 9 folders in my Lighting and I already do that by checking if there is a 10th folder or not, but there isn't, so it is supposed to start the 1-9 loop again from 9. Dan_PanMan 227 — 5y
0
what are you trying to do? TheluaBanana 946 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

As far as I can tell, there is nothing wrong with your script apart from line 18 where you said local number = 1. Presumably you would go from 1 - 9 and subsequently be stuck there? Im gonna include an example for cycling through a list anyways(place in a part btw):

01local part = script.Parent
02local n = 0
03 
04local clickD = Instance.new("ClickDetector", part)
05 
06local list = {"fm1","fm2","fm3","fm4","fm5","fm6","fm7","fm8","fm9"} -- hyperrealistic replica of sounds
07 
08clickD.MouseClick:Connect(function()
09    if n < 9 then
10        n = n + 1
11    else
12        n = 1
13    end
14 
15    print(list[n])
16end)
0
Lines 8-16 gave me the wanted output, really thank you for that! Dan_PanMan 227 — 5y
Ad

Answer this question