Doesnt suggest for auto complete when writing variables or comments or strings
Supports command bar
README:
the first time you install this plugin it will pop up a screen like this, after pressing “Allow” please close the place that you’re currently in and then open it again
Download for free:
Credits:
Baileyeatspizza – learned a few tricks by reading his plugin’s source code EditDistance.lua – used this to make better auto complete suggestions
Service Autocomplete has an issue where if you press enter after getting a suggestion for a service it puts your cursor at the start of the script, so I made this plugin as a temporary solution and to learn more about ScriptEditorService.
Ive added some features to the plugin that others plugins dont have since the release
Hi, great job on creating your own service autocomplete in such a short time but in the future if you could commit to the github repo that’d help significantly!
also, make sure to turn on auto update for the future since my plugin worked for months until an overnight flag change :-/
If a module is inside StarterPlayer.StarterPlayerScripts it will switch to Players.LocalPlayer.PlayerScripts (only in local scripts and module scripts and scripts with runcontext set to client)
At least this lets you get the modules, I will go use your’s
also I will modify your’s to make it work with my require() function which is this
local ReplicatedStorage = game:GetService("ReplicatedStorage")
require(ReplicatedStorage:WaitForChild("xAPI"))()
return function(name: string)
local modules = getmodules()
for _, v in modules do
if v.Name == name then
return require(v)
else
error("Got an invalid module")
end
end
end