Adrenilane
(Adrenilane)
August 27, 2025, 11:52pm
1
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
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
Synvasive
(Cryptic_Syntax)
August 28, 2025, 1:25am
2
Is there any reason this is showing up?
I dont think this was supposed to show up.
ill do anything JUST LET US DOWNLOAD IT
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.