-- [[ MUDINDA CHAOS HUB V3 - FULL LOGIC EDITION ]] -- -- "birch acres finest" frfr ong -- use this on delta or u r a noob ahh 😭πŸ₯€ local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("Mudinda Chaos Hub", "Midnight") local lp = game.Players.LocalPlayer local char = lp.Character or lp.CharacterAdded:Wait() local hum = char:WaitForChild("Humanoid") -- THE REAL LOGIC local Main = Window:NewTab("Main Essentials") local MainSection = Main:NewSection("Movement & More") MainSection:NewButton("Ghost Mode (Invis)", "Ghost holding tools ahh", function() if char:FindFirstChild("LowerTorso") then char.LowerTorso.RootJoint:Destroy() char.LowerTorso:Destroy() elseif char:FindFirstChild("Torso") then char.Torso.Neck:Destroy() char.Torso:Destroy() end end) MainSection:NewButton("Get F3X", "Build or Delete shi", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))():Execute("f3x") end) MainSection:NewToggle("Noclip", "Walk through walls fr", function(state) _G.noclip = state game:GetService("RunService").Stepped:Connect(function() if _G.noclip then for _, v in pairs(lp.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end end) end) MainSection:NewSlider("WalkSpeed", "Go zoom zoom", 500, 16, function(s) hum.WalkSpeed = s end) -- THE 18+ FEATURE VAULT (ACTUAL LOGIC) local Chaos = Window:NewTab("Chaos Features") local ChaosSection = Chaos:NewSection("Lock In Vro") ChaosSection:NewToggle("Infinite Jump", "Fly by jumping ahh", function(state) _G.infjump = state game:GetService("UserInputService").JumpRequest:Connect(function() if _G.infjump then hum:ChangeState("Jumping") end end) end) ChaosSection:NewButton("Fullbright", "See in the dark fr", function() game.Lighting.Brightness = 2 game.Lighting.ClockTime = 14 game.Lighting.FogEnd = 100000 game.Lighting.GlobalShadows = false end) ChaosSection:NewToggle("Spin Bot", "Become a tornado son😭", function(state) _G.spin = state spawn(function() while _G.spin do lp.Character.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.Angles(0, math.rad(50), 0) task.wait() end end) end) ChaosSection:NewButton("ESP Names", "See where they at", function() for _, v in pairs(game.Players:GetPlayers()) do if v ~= lp and v.Character and v.Character:FindFirstChild("Head") then local billboard = Instance.new("BillboardGui", v.Character.Head) billboard.Size = UDim2.new(0, 200, 0, 50) billboard.Adornee = v.Character.Head billboard.AlwaysOnTop = true local label = Instance.new("TextLabel", billboard) label.Size = UDim2.new(1, 0, 1, 0) label.Text = v.Name label.TextColor3 = Color3.new(1, 0, 0) label.BackgroundTransparency = 1 end end end) ChaosSection:NewButton("No Sit", "Anti-seat technology fr", function() hum:GetPropertyChangedSignal("Sit"):Connect(function() if hum.Sit then hum.Sit = false end end) end) ChaosSection:NewButton("TP to Random Player", "Surprise em ahh", function() local players = game.Players:GetPlayers() local randomPlayer = players[math.random(1, #players)] if randomPlayer ~= lp and randomPlayer.Character then lp.Character.HumanoidRootPart.CFrame = randomPlayer.Character.HumanoidRootPart.CFrame end end) ChaosSection:NewButton("Low Gravity", "Moon walk fr", function() workspace.Gravity = 50 end) ChaosSection:NewButton("Reset Gravity", "Back to earth ahh", function() workspace.Gravity = 196.2 end) ChaosSection:NewButton("Server Hop", "Find a new lobby vro", function() local x = game:GetService("TeleportService") local y = game.PlaceId x:Teleport(y) end) ChaosSection:NewButton("Btools", "Hammer time", function() Instance.new("HopperBin", lp.Backpack).BinType = 4 end) ChaosSection:NewButton("Anti-AFK", "Stay in game fr", function() local vu = game:GetService("VirtualUser") lp.Idled:Connect(function() vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame) task.wait(1) vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame) end) end) ChaosSection:NewToggle("Auto-Clicker", "Fast clicks ong", function(state) _G.click = state spawn(function() while _G.click do local tool = lp.Character:FindFirstChildOfClass("Tool") if tool then tool:Activate() end task.wait(0.1) end end) end) ChaosSection:NewButton("Remove Fog", "Clear view ahh", function() game.Lighting.FogEnd = 9e9 end) ChaosSection:NewButton("Destroy Decals", "Lag fixer fr", function() for _, v in pairs(workspace:GetDescendants()) do if v:IsA("Decal") then v:Destroy() end end end) ChaosSection:NewSlider("JumpPower", "High jump ahh", 500, 50, function(s) hum.JumpPower = s end) ChaosSection:NewButton("FPS Boost", "Fix ur storage lag πŸ’€", function() setfpscap(60) for _, v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then v.Material = Enum.Material.SmoothPlastic end end end) ChaosSection:NewButton("Reset", "KYS (In game only!!) 😭πŸ₯€", function() lp.Character:BreakJoints() end) ChaosSection:NewButton("Chat Spam", "Spam mudinda chaos hub", function() for i = 1, 5 do game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("MUDINDA CHAOS HUB ON TOP FR πŸ₯€πŸ”₯", "All") task.wait(1) end end) print("MUDINDA CHAOS HUB FULL LOGIC LOADED. DONT DISOWN ME VRO 😭πŸ₯€πŸ’”")