oh, forgot about that
in the future you should update it to work with selected objects aswell
It’s not really a big issue but if there’s a singular line break (instead of 2+) in between two lines like so
--!strict
(single gap here)
-- test docs
importing something will only add a gap between the import and the directive
--!strict
local ReplicatedStorage = game:GetService("ReplicatedStorage")
-- test docs
also, if a modulescript is imported before a service, it puts the service first which is good, but it doesn’t line break it
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local ModuleScript = require(script.ModuleScript)
ModuleScript
ReplicatedStorage