YBA Item Notifier
YBA Item Notifier
local Settings = {
ItemData = {
},
Tracers = false,
Circles = true,
Distance = true,
Notify = true
Text = a;
Duration = "5";
Callback = NotificationBindable;
})
end
else
end
end
end
if id == AssetId then
return true
end
end
return false
end
end
if Settings.Notify then
notify(itemData.ItemName)
end
Wrapper:AddObject(
Item,
itemData.ItemName,
itemData.Color,
Settings.Distance,
Settings.Tracers,
Settings.Circles
end
if Object:IsA("MeshPart") then
if IsItem(Object) then
Esp(Object)
end
end
end
Map.DescendantAdded:Connect(function(Descendant)
if Descendant:IsA("MeshPart") then
if IsItem(Descendant) then
Esp(Descendant)
end
end
end)