local hk=false;for _,v in pairs(getgc(true))do if typeof(v)=="table"then local fn=rawget(v,"observeTag")if typeof(fn)=="function"and not hk then hk=true;hookfunction(fn,newcclosure(function(_,_)return{Disconnect=function()end,disconnect=function()end}end))end end end;local p=game:GetService("Players")local s=game:GetService("StarterGui")local l=p.LocalPlayer local g=l:WaitForChild("PlayerGui")local kf="saved_key.txt"local sk;if isfile and isfile(kf)then sk=readfile(kf)end;local function pop(t)s:SetCore("SendNotification",{Title="",Text=t,Duration=3})end;if sk=="mango"then pop("Anticheat Active")return end;local sg=Instance.new("ScreenGui",g)sg.Name="KeyGui"local f=Instance.new("Frame",sg)f.Size=UDim2.new(0,300,0,150)f.Position=UDim2.new(.5,-150,.5,-75)f.BackgroundColor3=Color3.fromRGB(30,30,30)f.Active=true f.Draggable=true Instance.new("UICorner",f).CornerRadius=UDim.new(0,10)local tb=Instance.new("TextBox",f)tb.Size=UDim2.new(1,-20,0,40)tb.Position=UDim2.new(0,10,0,10)tb.PlaceholderText="Enter Key..."tb.Text=""tb.TextSize=20 tb.BackgroundColor3=Color3.fromRGB(50,50,50)tb.TextColor3=Color3.fromRGB(255,255,255)Instance.new("UICorner",tb).CornerRadius=UDim.new(0,8)local b=Instance.new("TextButton",f)b.Size=UDim2.new(1,-20,0,40)b.Position=UDim2.new(0,10,0,60)b.Text="Submit"b.TextSize=20 b.BackgroundColor3=Color3.fromRGB(70,130,180)b.TextColor3=Color3.fromRGB(255,255,255)Instance.new("UICorner",b).CornerRadius=UDim.new(0,8)local il=Instance.new("TextLabel",f)il.Size=UDim2.new(1,-20,0,20)il.Position=UDim2.new(0,10,1,-25)il.BackgroundTransparency=1 il.Text="saves keys"il.Font=Enum.Font.Gotham il.TextSize=14 il.TextColor3=Color3.fromRGB(200,200,200)il.TextXAlignment=Enum.TextXAlignment.Center setclipboard("mango")pop("Key Copied")b.MouseButton1Click:Connect(function()if tb.Text=="mango"then if writefile then writefile(kf,"mango")end pop("Anticheat Active")if g:FindFirstChild("KeyGui")then g.KeyGui:Destroy()end else pop("Wrong Key")end end)