Critical Legends Script | FREE BLACK MARKET TRACK – USE DEX TO FIND BLACK MARKET FOLDER

Created by Brickmane#0447

Features:

 -- Made by Brickmane
local blackMarket = game.Workspace.Stalls["Black Market"]
print("No errors!") -- trying to check if there is errors

blackMarket.ChildAdded:Connect(function()
    game:GetService("StarterGui"):SetCore("SendNotification", {
Title = "Black Market Dealer Spawned!";
Text = "Use dex and tp to it before it despawns!!";
Duration = 300; -- despawn time of the black market dealer is 5 mins 
})
end)

blackMarket.ChildRemoved:Connect(function()
    print("Too late to buy rare things..")
    game:GetService("StarterGui"):SetCore("SendNotification", {
Title = "Black Market Dealer Despawned!";
Text = "Aww man, you missed your chance!";
Duration = 10; 
})
end)