local numberoftime = 36 local numberoftime2 = 100 local frame = script.Parent.Parent.AlanWalkerFaded script.Parent.MouseButton1Click:Connect(function() frame.Visible = true script.Parent.Parent.TextLabel.Visible = false script.Parent.Visible = false wait(9) frame.Round1.Visible = true wait(1) frame.Round1.Visible = false frame.Button1.Visible = true wait(.6) for i = 1, numberoftime do frame:WaitForChild("Button"..i).Visible = false frame:WaitForChild("Button"..i+1).Visible = true wait(.6) end frame.Button37.Visible = false frame.Round2.Visible = true wait(1) frame.Round2.Visible = false for i = 1, numberoftime2 do frame:WaitForChild("Button"..i).Visible = false frame:WaitForChild("Button"..i+1).Visible = true wait(.6) end wait() end)
so i have a second for i loop but i want it to start at button 37 how can i solve this issue?