Autocomplete Data gets cut off

The autocomplete data that appears when you write out code gets cut off. This was noticed specifically with RaycastParams:

image

Instances to ignore or whitelist while

And in the source, the text is:

Instances to ignore or whitelist while doing a raycast

(source)

And the code to get to this is:

local params = RaycastParams.new()
params.F

This also occurs for other autocomplete data values as well:

image

Whether to use the filters fields of the RaycastParams as a blacklist or as a

The issue seems to be the size of the text cutting off earlier than expected, since every other ‘smaller’ autocomplete data works just fine:

image

10 Likes