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:
Hard to explain, easier to show:
If I press Enter at the end of this line
a:b():c(
it becomes
a:b():c(
end
This happens any time the is a left-parenthesis after a method call.
For example, this does it too:
a:b()(
As does
a:b()textHere[]*&^(
Didn’t have the right search terms qq
system
(system)
Closed
October 25, 2022, 8:28pm
#3
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.