local Fluent = loadstring(game:HttpGet("https://github.com/dawid-scripts/Fluent/releases/latest/download/main.lua"))() local Window = Fluent:CreateWindow({ Title = "Blox Hunt", SubTitle = "by Bjarnos", TabWidth = 160, Size = UDim2.fromOffset(580, 460), Acrylic = true, Theme = "Dark", MinimizeKey = Enum.KeyCode.LeftControl }) local Tabs = { Main = Window:AddTab({ Title = "Main", Icon = "" }), Extra = Window:AddTab({ Title = "Extra", Icon = "" }), } Window:SelectTab("Main") local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer Tabs.Main:AddButton({ Title = "Safe spot", Description = "Teleport to a place nobody can come, reset to respawn", Callback = function() local char = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait() wait() char.HumanoidRootPart.Anchored = true char.HumanoidRootPart.CFrame = CFrame.new(-139.63629150390625, -23.380353927612305, 35.39586639404297) end }) Tabs.Main:AddButton({ Title = "Un-safe spot", Description = "Teleport back to spawn while unfreezing your character", Callback = function() local char = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait() wait() char.HumanoidRootPart.Anchored = false char.HumanoidRootPart.CFrame = CFrame.new(-23.927141189575195, 79.16976165771484, 37.48775863647461) end }) local esptoggle = Tabs.Main:AddToggle("esp", {Title = "ESP", Default = false}) task.spawn(function() while wait(1) do for _, player in pairs(game.Players:GetPlayers()) do task.spawn(function() local char = player.Character or player.CharacterAdded:Wait() wait() if esptoggle.Value then local torso = char:WaitForChild("UpperTorso") local highlight = char:FindFirstChildWhichIsA("Highlight") or Instance.new("Highlight", char) if highlight.FillTransparency ~= 0.5 then highlight.Enabled = false highlight.Name = "Old" highlight = Instance.new("Highlight", char) end highlight.FillTransparency = 0.5 highlight.FillColor = torso.Color highlight.OutlineColor = Color3.fromRGB( math.floor(torso.Color.R * 255 * 0.8), math.floor(torso.Color.G * 255 * 0.8), math.floor(torso.Color.B * 255 * 0.8) ) else local highlight = char:FindFirstChild("Highlight") if highlight and highlight.FillTransparency == 0.5 then highlight:Destroy() local other = char:FindFirstChild("Old") if other then other.Enabled = true other.Name = "Highlight" end end end end) end end end) local ws = nil local jp = nil game["Run Service"].RenderStepped:Connect(function() if not game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") then return end if ws then game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = ws end if jp then game.Players.LocalPlayer.Character.Humanoid.UseJumpPower = true game.Players.LocalPlayer.Character.Humanoid.JumpPower = jp end end) local speedslider = Tabs.Extra:AddSlider("speedslider", { Title = "Walkspeed", Default = 20, Min = 1, Max = 200, Rounding = 0, Callback = function(Value) ws = Value end }) local jumpslider = Tabs.Extra:AddSlider("jumpslider", { Title = "Jumppower", Default = 50, Min = 0, Max = 500, Rounding = -1, Callback = function(Value) jp = Value end }) local nocliptoggle = Tabs.Extra:AddToggle("noclip", {Title = "Noclip", Default = false}) game["Run Service"].RenderStepped:Connect(function() if nocliptoggle.Value then local char = LocalPlayer.Character if not char then return end for _, part in pairs(char:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end end end)