local P=game.Players.LocalPlayer;local RS=game:GetService("ReplicatedStorage");local CG=game:GetService("CoreGui")if CG:FindFirstChild("BrawlMaster")then CG.BrawlMaster:Destroy()end;local SG=Instance.new("ScreenGui",CG)SG.Name="BrawlMaster"local M=Instance.new("Frame",SG)M.Size=UDim2.new(0,200,0,150)M.Position=UDim2.new(0.5,-100,0.4,0)M.BackgroundColor3=Color3.fromRGB(20,20,20)M.Active=true;M.Draggable=true;local T=Instance.new("TextLabel",M)T.Size=UDim2.new(1,0,0,40)T.Text="BRAWL MASTER"T.BackgroundColor3=Color3.fromRGB(255,100,0)T.TextColor3=Color3.fromRGB(255,255,255)local function b(txt,pos,flg)_G[flg]=false;local btn=Instance.new("TextButton",M)btn.Size=UDim2.new(0,180,0,40)btn.Position=pos;btn.Text=txt..": OFF"btn.BackgroundColor3=Color3.fromRGB(50,50,50)btn.TextColor3=Color3.fromRGB(255,255,255)btn.MouseButton1Click:Connect(function()_G[flg]=not _G[flg]btn.Text=txt..(_G[flg] and ": ON" or ": OFF")btn.BackgroundColor3=_G[flg] and Color3.fromRGB(0,180,0) or Color3.fromRGB(50,50,50)end)end;b("AUTO CLICK",UDim2.new(0,10,0,50),"AC")b("AUTO MATCH",UDim2.new(0,10,0,100),"AM")task.spawn(function()while task.wait(0.1)do pcall(function()if _G.AC then for _,v in pairs(RS:GetDescendants())do if v:IsA("RemoteEvent")and v.Name:lower():find("click")then v:FireServer()end end end;if _G.AM then for _,v in pairs(P.PlayerGui:GetDescendants())do if v:IsA("GuiButton")and v.Visible then local t=(v.Name..(v:IsA("TextButton")and v.Text or "")):lower()if t:find("savaş")or t:find("battle")or t:find("başla")or t:find("eğitim")or t:find("güç")or t:find("kupa")or t:find("atla")or t:find("özet")then firesignal(v.MouseButton1Click)end end end end end)end end)
Comments
No comments yet
Be the first to share your thoughts!