Auto-complete inserting "end" where it should insert ")"

When you type the following:

stuff:connect(

And then hit enter, it will produce:

stuff:connect(

)

Which is correct, but if you try to write this:

stuff:test():connect(

And hit enter, it instead becomes:

stuff:test():connect(

end

I initially encountered this issue with this example: (after enter the "end" appears instead of ")") ``` game:GetService("UserInputService").InputBegan:connect(

end

1 Like

Nvm, already reported here:

Didn’t have the right search terms qq

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.