local library = loadstring(game:HttpGet("https://pastebin.com/raw/eKwyeQa0", true))() local tab1 = library:CreateTab("Main", false, Color3.new(255, 255, 255)) local button = library:MakeToggle( tab1, "CollectCoin", false, function(button) while wait() do if button.Text == "ON" then local HP = game.Players.LocalPlayer.Character.HumanoidRootPart function GetCoin(Coin) firetouchinterest(HP, Coin, 0) end for i, v in pairs(game:GetService("Workspace").CoinsFolder:GetChildren()) do if v:IsA("MeshPart") then GetCoin(v) end end else break end end end ) local Code = library:MakeButton( tab1, "ReedemCodes", function(button) local function ReedemCodes(Code) local args = { [1] = Code } game:GetService("ReplicatedStorage").Interactions.Server.RedeemCode:InvokeServer(unpack(args)) end for i, v in pairs(game:GetService("Workspace").CodesLB.GlobalLB.LB.List:GetDescendants()) do if v:IsA("TextLabel") then ReedemCodes(v.Text) end end end ) local Esp = library:MakeToggle( tab1, "Esp", false, function(Esp) while wait() do if Esp.Text == "ON" then local function Sherif(Plr) local espBox = Instance.new("BoxHandleAdornment", Plr) espBox.Adornee = Plr espBox.AlwaysOnTop = true espBox.ZIndex = 10 espBox.Size = Plr.Size espBox.Color3 = Color3.fromRGB(0, 12, 255) end local function Murder(plr) local espBox = Instance.new("BoxHandleAdornment", plr) espBox.Adornee = plr espBox.AlwaysOnTop = true espBox.ZIndex = 10 espBox.Size = plr.Size espBox.Color3 = Color3.fromRGB(255, 0, 4) end local function covermurder(mrder) for i, v in pairs(mrder:GetChildren()) do if v:IsA("BasePart") then Murder(v) end end end local function coverSherif(sherif) for i, v in pairs(sherif:GetChildren()) do if v:IsA("BasePart") and not v:FindFirstChild("BoxHandleAdornment") then Sherif(v) end end end function p1() for i, v in pairs(game.Players:GetPlayers()) do if v.Name ~= game.Players.LocalPlayer.Name then if v.Backpack:FindFirstChild("Knife") or v.Character:FindFirstChild("Knife") then covermurder(v.Character) end end end end function p2() for i, v in pairs(game.Players:GetPlayers()) do if v.Name ~= game.Players.LocalPlayer.Name then if v.Backpack:FindFirstChild("Revolver") or v.Character:FindFirstChild("Revolver") then coverSherif(v.Character) end end end end p1() p2() else break; end end end) local Owner = library:MakeLabel(tab1, "Credits:efeeee#8151")