I forgot to mention, search your scripts for any backdoors, “getfenv” or “require”.
If those don’t work, this is going to sound really dumb, but I’d just repeat setting the coreguitype to false under a RunService connection, but that’s when we’re REALLY desparate.
local StarterGui = game:GetService("StarterGui")
local UPDATE_FREQUENCY = 0.25 -- Updates backpack every 0.25 seconds
local start = tick()
game:GetService("RunService").Heartbeat:Connect(function()
if tick() - start > UPDATE_FREQUENCY then
start = tick()
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)
end
end)
No getfenv. I use require for my own module scripts. The only other places with require are in Basic Admin Essentials, CMDR, and Trello. I could try removing those module scripts and see if it works then.