Tostring not working

I’m trying to set the text of a text label to the next stop. I have a folder called “stops” that has string values with the value of the stop name and names of 1, 2, 3, etc. There is an int value completedStops that holds the number of stations that you have stopped at. For example, if completedStops = 1, then the text label’s text will be set to the value of stops:FindFirstChild(“2”)

script.Parent.Main.NextStation.NextStop.Text = stops:FindFirstChild(tostring(completedStops.Value + 1))

Found the issue. Forgot to put .Value at the end!