-- Made by @6xxj local Midnight = loadstring(game:HttpGet("https://pastefy.app/4LW9V7H0/raw"))() local Window = Midnight:AddWindow({ Name = "Dream For Brainrots", Theme = "Black" }) Window:AddSubTitle({ Name = "Loading...", Duration = 3 }) local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local MovementTab = Window:AddTab("Movement") local GuiTab = Window:AddTab("Credits") local GamesTab = Window:AddTab("Farm") local InfiniteJumpEnabled = false local UIS = game:GetService("UserInputService") UIS.JumpRequest:Connect(function() if InfiniteJumpEnabled then local char = LocalPlayer.Character if char then local humanoid = char:FindFirstChildOfClass("Humanoid") if humanoid then humanoid:ChangeState(Enum.HumanoidStateType.Jumping) end end end end) MovementTab:AddSlider({ Name = "Speed (Broken)", Min = 16, Max = 500, Default = 16, Callback = function(Value) if LocalPlayer.Character and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") then LocalPlayer.Character:FindFirstChildOfClass("Humanoid").WalkSpeed = Value end end }) MovementTab:AddSlider({ Name = "Jump", Min = 50, Max = 1000, Default = 50, Callback = function(JumpValue) if LocalPlayer.Character and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") then local humanoid = LocalPlayer.Character:FindFirstChildOfClass("Humanoid") humanoid.UseJumpPower = true humanoid.JumpPower = JumpValue end end }) MovementTab:AddToggle({ Name = "Infinite Jump", Default = false, Callback = function(Value) InfiniteJumpEnabled = Value end }) local AutoCollect = false GamesTab:AddToggle({ Name = "Auto Collect", Default = false, Callback = function(Value) AutoCollect = Value if Value then spawn(function() while AutoCollect do local Event = game:GetService("ReplicatedStorage").Remotes.baseInteract Event:FireServer("Collect", 1) wait(0.1) end end) end end }) local AutoSpeed = false GamesTab:AddToggle({ Name = "Auto Upgrade Speed", Default = false, Callback = function(Value) AutoSpeed = Value if Value then spawn(function() while AutoSpeed do local Event = game:GetService("ReplicatedStorage").Remotes.Upgrade Event:InvokeServer("Speed") wait(0.1) end end) end end }) AutoBrainrot = false GamesTab:AddToggle({ Name = "Auto Upgrade Brainrot", Default = false, Callback = function(Value) AutoBrainrot = Value if Value then spawn(function() while AutoBrainrot do local Event = game:GetService("ReplicatedStorage").Remotes.RequestBrainrotUpgrade Event:FireServer(1) wait(0.1) end end) end end }) GuiTab:AddSection("Made by @6xx on Discord and Youtube.") GuiTab:AddSection("I got bored lmao")