but I’ve got this cache thing ready for decreasing lag
local Cache = workspace:WaitForChild("PartCache")
local CachePosition = Vector3.new(0,10000000000000000000000000000000000000000000,0)
function GetPart()
if Cache:FindFirstChild("Part") then
return Cache["Part"]
else
for _ = 1,10 do
Lighting["Part"]:Clone().Parent = Cache
end
return Cache["Part"]
end
end
function CachePart(Part)
Part.Parent = Cache
Part.Position = CachePosition
end