Why Is The Code Underlined Red When I Use A + Instead Of = ?
function Next()
script.Parent.Parent.Destination.Value + 1
end
script.Parent.ClickDetector.MouseClick:Connect(Next)
Why Is The Code Underlined Red When I Use A + Instead Of = ?
function Next()
script.Parent.Parent.Destination.Value + 1
end
script.Parent.ClickDetector.MouseClick:Connect(Next)
function Next()
script.Parent.Parent.Destination.Value = script.Parent.Parent.Destination.Value + 1
end
script.Parent.ClickDetector.MouseClick:Connect(Next)
Try that instead.
Compound operators are your friend 
function Next()
script.Parent.Parent.Destination.Value += 1
end
script.Parent.ClickDetector.MouseClick:Connect(Next)
Forgot about that! Thanks! 
I’ll be sure to use them next time!