Floors module

This commit is contained in:
2024-02-14 21:34:45 -05:00
parent c454a5cc4e
commit 0dfaaa4946
8 changed files with 175 additions and 64 deletions

View File

@@ -5,7 +5,7 @@ local exports: {[string]: BasePart} = {}
local AllTags = CS:GetAllTags()
for i = 1, #AllTags do
local TagName = AllTags[i]
if TagName ~= "RopeMasterObject" then
if TagName ~= "RopeMasterObject" and TagName ~= "ServerGuard_Physics" then
local Tagged = CS:GetTagged(TagName)
exports[TagName] = #Tagged>1 and Tagged or Tagged[1]
end