muradbros hub v1.2

107 views
3 weeks ago
muradbros hub v1.2
muradbabayev
muradbabayev 0 followers

Description

a roblox script
credits S3wza muradbros

0 Comments

Log in to comment
No comments yet. Be the first!

View Script

local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))(); local Window = Rayfield:CreateWindow({Name = "🔥 MuradBros Hub", LoadingTitle = "MuradBros Mod Menu", LoadingSubtitle = "Sürüm 1.2 - MuradBros", ConfigurationSaving = {Enabled = false}}); local flying, fspeed, walkSpeedValue, speedEnabled, clickTpEnabled, espEnabled, boxEnabled, lineEnabled, selectedPlayer, flingEnabled = false, 50, 16, false, false, false, false, false, nil, false; local espColor = Color3.fromRGB(255, 0, 0); local TabInfo = Window:CreateTab("Bilgi", "info"); TabInfo:CreateLabel("👑 Yapımcı: MuradBros"); TabInfo:CreateLabel("🧪 Test Eden: S3wza"); TabInfo:CreateButton({Name = "Discord Kopyala", Callback = function() setclipboard("https://discord.gg/4aXYqzxH") end}); local TabESP = Window:CreateTab("ESP Ayarları", "scan"); TabESP:CreateToggle({Name = "İsim & Mesafe ESP", CurrentValue = false, Callback = function(v) espEnabled = v; if not v then for _, p in pairs(game.Players:GetPlayers()) do pcall(function() if p.Character:FindFirstChild("MuradESP") then p.Character.MuradESP:Destroy() end end) end end end}); TabESP:CreateToggle({Name = "Box ESP", CurrentValue = false, Callback = function(v) boxEnabled = v; if not v then for _, p in pairs(game.Players:GetPlayers()) do pcall(function() if p.Character:FindFirstChild("MuradBox") then p.Character.MuradBox:Destroy() end end) end end end}); TabESP:CreateToggle({Name = "Lines", CurrentValue = false, Callback = function(v) lineEnabled = v; if not v then for _, p in pairs(game.Players:GetPlayers()) do pcall(function() if p.Character:FindFirstChild("MuradLine") then p.Character.MuradLine:Destroy() end end) end end end}); TabESP:CreateColorPicker({Name = "ESP Rengi", Color = Color3.fromRGB(255,0,0), Callback = function(v) espColor = v end}); local Tab1 = Window:CreateTab("Karakter", "user"); Tab1:CreateToggle({Name = "Hız", Callback = function(v) speedEnabled = v; game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v and walkSpeedValue or 16 end}); Tab1:CreateSlider({Name = "Hız Miktarı", Range = {16, 500}, Increment = 1, CurrentValue = 16, Callback = function(v) walkSpeedValue = v end}); Tab1:CreateToggle({Name = "Eski Fly", Callback = function(v) flying = v; local r = game.Players.LocalPlayer.Character.HumanoidRootPart; if v then local bv = Instance.new("BodyVelocity", r); bv.Name = "MuradFly"; bv.MaxForce = Vector3.new(9e9,9e9,9e9); task.spawn(function() while flying do bv.Velocity = workspace.CurrentCamera.CFrame.LookVector * fspeed; task.wait() end; bv:Destroy() end) end end}); local TabPlayer = Window:CreateTab("Oyuncu", "users"); local FlingDrop = TabPlayer:CreateDropdown({Name = "Seç", Options = {}, Callback = function(v) selectedPlayer = v end}); TabPlayer:CreateToggle({Name = "Fling", Callback = function(v) flingEnabled = v; task.spawn(function() while flingEnabled do task.wait(); pcall(function() local t = game.Players:FindFirstChild(selectedPlayer).Character.HumanoidRootPart; game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = t.CFrame; game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity = Vector3.new(5e5,5e5,5e5) end) end end) end}); local Tab2 = Window:CreateTab("Işınlanma", "map-pin"); Tab2:CreateToggle({Name = "Click TP (Ctrl+Tık)", CurrentValue = false, Callback = function(v) clickTpEnabled = v end}); local TPDrop = Tab2:CreateDropdown({Name = "Oyuncu", Options = {}, Callback = function(v) selectedPlayer = v end}); Tab2:CreateButton({Name = "Git", Callback = function() pcall(function() game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players:FindFirstChild(selectedPlayer).Character.HumanoidRootPart.CFrame end) end}); local m = game.Players.LocalPlayer:GetMouse(); m.Button1Down:Connect(function() if clickTpEnabled and game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) and m.Target then game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(m.Hit.p + Vector3.new(0, 3, 0)) end end); task.spawn(function() while task.wait(3) do local p = {}; for _, v in pairs(game.Players:GetPlayers()) do if v ~= game.Players.LocalPlayer then table.insert(p, v.Name) end end TPDrop:Refresh(p); FlingDrop:Refresh(p) end end); task.spawn(function() while task.wait(0.1) do if espEnabled or boxEnabled or lineEnabled then for _, p in pairs(game.Players:GetPlayers()) do if p ~= game.Players.LocalPlayer and p.Character and p.Character:FindFirstChild("HumanoidRootPart") then local char = p.Character; if espEnabled then if not char:FindFirstChild("MuradESP") then local b = Instance.new("BillboardGui", char); b.Name = "MuradESP"; b.Adornee = char.Head; b.Size = UDim2.new(0,100,0,50); b.AlwaysOnTop = true; local l = Instance.new("TextLabel", b); l.Size = UDim2.new(1,0,1,0); l.BackgroundTransparency = 1; l.Name = "Label" end char.MuradESP.Label.Text = p.Name .. " [" .. math.floor((game.Players.LocalPlayer.Character.HumanoidRootPart.Position - char.HumanoidRootPart.Position).magnitude) .. "m]"; char.MuradESP.Label.TextColor3 = espColor end if boxEnabled and not char:FindFirstChild("MuradBox") then local box = Instance.new("SelectionBox", char); box.Name = "MuradBox"; box.Adornee = char; box.AlwaysOnTop = true; box.LineThickness = 0.05 end if char:FindFirstChild("MuradBox") then char.MuradBox.Color3 = espColor end end end end end end); Rayfield:Notify({Title = "MuradBros Hub", Content = "Bilgiler Güncellendi!", Duration = 5})