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
02 | local clickDetector = script.Parent |
03 | clickDetector.MouseClick:Connect( function () |
04 | local wChildren = game:GetService( "Workspace" ):GetChildren() |
07 | for i,c in pairs (wChildren) do |
08 | if string.sub(c.Name, 1 , 2 ) = = "FM" then |
09 | c.Parent = game.Lighting |
10 | local fm = 'FM' ..number |
12 | if game:GetService( "Lighting" ):FindFirstChild(fm) then |
13 | local fm 1 = game:GetService( "Lighting" ):FindFirstChild(fm) |
14 | fm 1. Parent = game:GetService( "Workspace" ) |
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?