--================================================== -- DARK EVADE | SUPREME HUB 😈 -- All-in-One | Mobile | Key System -- By DarkStyleScripts99 --================================================== local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))() -------------------------------------------------- -- KEY SYSTEM -------------------------------------------------- local Window = Rayfield:CreateWindow({ Name = "DarkEvade SUPREME 😈", LoadingTitle = "DarkEvade Ultimate Hub", LoadingSubtitle = "By DarkStyleScripts99", Theme = "Dark", KeySystem = true, KeySettings = { Title = "DarkEvade | Key System", Subtitle = "Digite a Key", Note = "Key gratuita", FileName = "DarkEvadeKey", SaveKey = true, GrabKeyFromSite = false, Key = {"DarkSytleFree"} } }) -------------------------------------------------- -- SERVICES -------------------------------------------------- local Players = game:GetService("Players") local RunService = game:GetService("RunService") local Lighting = game:GetService("Lighting") local UIS = game:GetService("UserInputService") local Debris = game:GetService("Debris") local LP = Players.LocalPlayer local Camera = workspace.CurrentCamera -------------------------------------------------- -- FLAGS (CENTRAL) -------------------------------------------------- local F = { Speed=false, Jump=false, Noclip=false, InfJump=false, Fly=false, AirWalk=false, AntiSlow=false, AutoEvade=false, SmartEvade=false, AntiLock=false, BunnyHop=false, DashBoost=false, AntiNextbot=false, ESPNextbot=false, Box3D=false, AlertSound=false, AlertVisual=false, AutoDashNB=false, FreezeNB=false, ESPPlayers=false, Tracers=false, FOV=false, FPSLow=false, FPSUltra=false, FullBright=false, NoFog=false, AntiAFK=false } -------------------------------------------------- -- TABS -------------------------------------------------- local MoveTab = Window:CreateTab("⚡ Movement") local EvadeTab = Window:CreateTab("😈 Evade") local NextTab = Window:CreateTab("🤖 Nextbot") local ESPTab = Window:CreateTab("👁 ESP") local FPSTab = Window:CreateTab("🚀 FPS") local UtilTab = Window:CreateTab("🧰 Utility") -------------------------------------------------- -- UI BINDS -------------------------------------------------- local function Toggle(tab,name,flag) tab:CreateToggle({ Name=name, Callback=function(v) F[flag]=v end }) end -- Movement Toggle(MoveTab,"Super Speed","Speed") Toggle(MoveTab,"Super Jump","Jump") Toggle(MoveTab,"Infinite Jump","InfJump") Toggle(MoveTab,"Fly (Mobile)","Fly") Toggle(MoveTab,"Air Walk","AirWalk") Toggle(MoveTab,"Noclip","Noclip") Toggle(MoveTab,"Anti Slow","AntiSlow") -- Evade Toggle(EvadeTab,"Auto Evade","AutoEvade") Toggle(EvadeTab,"Smart Evade","SmartEvade") Toggle(EvadeTab,"Anti Lock","AntiLock") Toggle(EvadeTab,"Bunny Hop","BunnyHop") Toggle(EvadeTab,"Dash Boost","DashBoost") -- Nextbot Toggle(NextTab,"Anti Colisão","AntiNextbot") Toggle(NextTab,"ESP Nome + Distância","ESPNextbot") Toggle(NextTab,"ESP Box 3D","Box3D") Toggle(NextTab,"Alerta Visual","AlertVisual") Toggle(NextTab,"Alerta Sonoro","AlertSound") Toggle(NextTab,"IA Auto Dash","AutoDashNB") Toggle(NextTab,"Freeze (Visual)","FreezeNB") -- ESP Toggle(ESPTab,"ESP Players","ESPPlayers") Toggle(ESPTab,"Tracers","Tracers") Toggle(ESPTab,"FOV Circle","FOV") -- FPS Toggle(FPSTab,"FPS Boost Leve","FPSLow") Toggle(FPSTab,"FPS Boost EXTREMO","FPSUltra") Toggle(FPSTab,"Full Bright","FullBright") Toggle(FPSTab,"Remover Fog","NoFog") -- Utility Toggle(UtilTab,"Anti AFK","AntiAFK") UtilTab:CreateButton({ Name="Reset Character", Callback=function() LP.Character:BreakJoints() end }) -------------------------------------------------- -- CORE FUNCTIONS -------------------------------------------------- local function Char() local c=LP.Character return c,c and c:FindFirstChild("Humanoid"),c and c:FindFirstChild("HumanoidRootPart") end local function Dash() local c,h,hrp = Char() if hrp then hrp.AssemblyLinearVelocity = Vector3.new(math.random(-140,140),80,math.random(-140,140)) end end local function IsNextbot(m) return m:IsA("Model") and m:FindFirstChildOfClass("Humanoid") and not Players:GetPlayerFromCharacter(m) end local function SoundAlert() local s=Instance.new("Sound",workspace) s.SoundId="rbxassetid://9118823101" s.Volume=3 s:Play() Debris:AddItem(s,2) end -------------------------------------------------- -- MAIN LOOP -------------------------------------------------- RunService.RenderStepped:Connect(function() local c,h,hrp = Char() if h then h.WalkSpeed = F.Speed and 110 or 16 h.JumpPower = F.Jump and 150 or 50 end if F.InfJump and UIS:IsKeyDown(Enum.KeyCode.Space) then if h then h:ChangeState(Enum.HumanoidStateType.Jumping) end end if F.Noclip and c then for _,v in pairs(c:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide=false end end end if F.AutoEvade then Dash() end if F.AntiLock and hrp then hrp.AssemblyLinearVelocity += Vector3.new(math.random(-10,10),0,math.random(-10,10)) end -- Nextbots for _,m in pairs(workspace:GetDescendants()) do if IsNextbot(m) and hrp then local root=m:FindFirstChild("HumanoidRootPart") or m:FindFirstChildWhichIsA("BasePart") if root then local dist=(hrp.Position-root.Position).Magnitude if F.AntiNextbot then for _,b in pairs(m:GetDescendants()) do if b:IsA("BasePart") then b.CanCollide=false end end end if F.FreezeNB and root:IsA("BasePart") then root.Anchored=true end if dist<20 then if F.AlertSound then SoundAlert() end if F.AutoDashNB then Dash() end end end end end end) -------------------------------------------------- -- FPS SYSTEM -------------------------------------------------- RunService.Stepped:Connect(function() if F.FPSLow or F.FPSUltra then Lighting.GlobalShadows=false Lighting.FogEnd=1e9 for _,o in pairs(workspace:GetDescendants()) do if o:IsA("ParticleEmitter") or o:IsA("Trail") then o.Enabled=false elseif F.FPSUltra and o:IsA("BasePart") then o.Material=Enum.Material.Plastic end end end if F.FullBright then Lighting.Brightness=3 end if F.NoFog then Lighting.FogStart=1e6 end end) -------------------------------------------------- -- MOBILE DASH BUTTON -------------------------------------------------- local gui=Instance.new("ScreenGui",game.CoreGui) local btn=Instance.new("TextButton",gui) btn.Size=UDim2.new(0,120,0,120) btn.Position=UDim2.new(0.75,0,0.6,0) btn.Text="DASH" btn.TextScaled=true btn.Font=Enum.Font.GothamBold btn.BackgroundColor3=Color3.fromRGB(20,20,20) btn.TextColor3=Color3.fromRGB(255,0,0) btn.BorderSizePixel=0 btn.MouseButton1Click:Connect(Dash)