Autofill Typechecker Plugin

This simple plugin makes it so common variable names are auto typechecked by lua making it easier to program.

Just type local and then the name of the class and if its valid it will autofill
image

It uses a set list of classes so if you want to customize just use insert service and add / remove from the module script.

8 Likes


Is there any reason this is showing up?

I dont think this was supposed to show up.

LET ME DOWNLOAD IT PLEASE :folded_hands: :folded_hands: :folded_hands: :folded_hands: :folded_hands: :folded_hands:

ill do anything JUST LET US DOWNLOAD IT :folded_hands:

1 Like

well i didnt realize i had to set it public oops try now

i didnt even know you could do
local a: string = "apples"
ive always done
local a = "apples" :: string

local var: string = "test" means we are telling the IDE that the variable should contain a string and local var = "test" :: string means we are casting the type, telling the IDE that the variable IS a string.