--BROUGHT TO YOU BY RobloxScripter.com!--
local ESP = loadstring(game:HttpGet("https://kiriot22.com/releases/ESP.lua"))()
local NotificationLibrary = loadstring(game:HttpGet("https://raw.githubusercontent.com/IceMinisterq/Notification-Library/Main/Library.lua"))()
-- Chests --
for i,v in pairs(game:GetDescendants()) do
if string.match(v.Name, " Chest") and v:FindFirstChild("Base") then
ESP:Add(v:FindFirstChild("Base"), {
Name = v.Name,
Color = Color3.fromRGB(255,0,0),
IsEnabled = "Chests"
})
end
end
game.DescendantAdded:Connect(function(v)
if string.match(v.Name, " Chest") and v:FindFirstChild("Base") then
NotificationLibrary:SendNotification("Info", "Chest Added:"..v.Name, 3)
ESP:Add(v:FindFirstChild("Base"), {
Name = v.Name,
Color = Color3.fromRGB(255,0,0),
IsEnabled = "Chests"
})
end
end)
ESP.Players = false
ESP.Chests = true
ESP:Toggle(true)