--==================================================== -- Unleaked_dev | REAL OP Hub (FIXED) -- Normal Key: 🔑2026! -- Owner-### -- Credits: Unleaked_Dev | roblox:maximax0209 --==================================================== local Players = game:GetService("Players") local RunService = game:GetService("RunService") local UIS = game:GetService("UserInputService") local LP = Players.LocalPlayer -- Load Rayfield local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))() local Window = Rayfield:CreateWindow({ Name = "Unleaked_dev", LoadingTitle = "Unleaked_dev", LoadingSubtitle = "Real OP Hub", ConfigurationSaving = { Enabled = false }, KeySystem = true, KeySettings = { Title = "🔑 Unleaked_dev Key", Subtitle = "Enter Access Key", Note = "Owner key unlocks more", FileName = "UnleakedDevKey", SaveKey = true, GrabKeyFromSite = false, Key = { "2026!" } } }) ------------------------------------------------------ -- STATE ------------------------------------------------------ local InfiniteJump = false local Noclip = false local OwnerUnlocked = false ------------------------------------------------------ -- 🌐 UNIVERSAL TAB (REAL, UNIQUE) ------------------------------------------------------ local Universal = Window:CreateTab("🌐 Universal", 4483362458) Universal:CreateSlider({ Name = "WalkSpeed", Range = {16, 120}, Increment = 1, CurrentValue = 16, Callback = function(v) local h = LP.Character and LP.Character:FindFirstChildOfClass("Humanoid") if h then h.WalkSpeed = v end end }) Universal:CreateSlider({ Name = "JumpPower", Range = {50, 200}, Increment = 5, CurrentValue = 50, Callback = function(v) local h = LP.Character and LP.Character:FindFirstChildOfClass("Humanoid") if h then h.JumpPower = v end end }) Universal:CreateToggle({ Name = "Infinite Jump", CurrentValue = false, Callback = function(v) InfiniteJump = v end }) UIS.JumpRequest:Connect(function() if InfiniteJump then local h = LP.Character and LP.Character:FindFirstChildOfClass("Humanoid") if h then h:ChangeState(Enum.HumanoidStateType.Jumping) end end end) Universal:CreateToggle({ Name = "Noclip", CurrentValue = false, Callback = function(v) Noclip = v end }) RunService.Stepped:Connect(function() if Noclip and LP.Character then for _,p in pairs(LP.Character:GetChildren()) do if p:IsA("BasePart") then p.CanCollide = false end end end end) Universal:CreateButton({ Name = "Fake Verified Tag", Callback = function() local h = LP.Character and LP.Character:FindFirstChildOfClass("Humanoid") if h then h.DisplayName = "✔ "..LP.Name end end }) Universal:CreateButton({ Name = "Teleport Forward", Callback = function() local hrp = LP.Character and LP.Character:FindFirstChild("HumanoidRootPart") if hrp then hrp.CFrame = hrp.CFrame * CFrame.new(0,0,-40) end end }) Universal:CreateButton({ Name = "Reset Character", Callback = function() LP.Character:BreakJoints() end }) ------------------------------------------------------ -- 🎵 MUSIC (REAL SOUND IDS) ------------------------------------------------------ Universal:CreateButton({ Name = "Phonk Music 1", Callback = function() local s = Instance.new("Sound", workspace) s.SoundId = "rbxassetid://183859773" s.Volume = 1 s:Play() end }) Universal:CreateButton({ Name = "Phonk Music 2", Callback = function() local s = Instance.new("Sound", workspace) s.SoundId = "rbxassetid://1843529631" s.Volume = 1 s:Play() end }) ------------------------------------------------------ -- 🚗 CARS TAB (REAL PHYSICS) ------------------------------------------------------ local Cars = Window:CreateTab("🚗 Cars", 4483362458) local Horsepower = 100 Cars:CreateSlider({ Name = "Horsepower (affects speed)", Range = {100, 10000}, Increment = 50, CurrentValue = 100, Callback = function(v) Horsepower = v end }) Cars:CreateButton({ Name = "Acceleration Boost", Callback = function() local hrp = LP.Character and LP.Character:FindFirstChild("HumanoidRootPart") if hrp then hrp.AssemblyLinearVelocity += hrp.CFrame.LookVector * (Horsepower * 0.025) end end }) Cars:CreateButton({ Name = "Car Jump", Callback = function() local hrp = LP.Character and LP.Character:FindFirstChild("HumanoidRootPart") if hrp then hrp.Velocity = Vector3.new(0,120,0) end end }) Cars:CreateToggle({ Name = "Fly Car", CurrentValue = false, Callback = function(v) if v then RunService:BindToRenderStep("FlyCar", 0, function() local hrp = LP.Character and LP.Character:FindFirstChild("HumanoidRootPart") if hrp then hrp.Velocity = Vector3.new(hrp.Velocity.X, 60, hrp.Velocity.Z) end end) else RunService:UnbindFromRenderStep("FlyCar") end end }) ------------------------------------------------------ -- 💀 HORROR TAB (REAL EFFECTS) ------------------------------------------------------ local Horror = Window:CreateTab("💀 Horror", 4483362458) Horror:CreateButton({ Name = "Jumpscare Image", Callback = function() local gui = Instance.new("ScreenGui", LP.PlayerGui) local img = Instance.new("ImageLabel", gui) img.Size = UDim2.fromScale(1,1) img.Image = "rbxassetid://9125713500" img.BackgroundTransparency = 1 task.wait(0.6) gui:Destroy() end }) Horror:CreateButton({ Name = "Heartbeat Sound", Callback = function() local s = Instance.new("Sound", workspace) s.SoundId = "rbxassetid://9125713800" s.Volume = 1 s:Play() end }) ------------------------------------------------------ -- 🛡 ANTI‑CHEAT (FAKE) ------------------------------------------------------ local AC = Window:CreateTab("🛡 Anti‑Cheat", 4483362458) AC:CreateToggle({ Name = "Disable Anti‑Cheat", CurrentValue = false, Callback = function(v) local m = Instance.new("Message", workspace) m.Text = v and "Disabling Anti‑Cheat...\nSpoofing Device & IP" or "Anti‑Cheat Enabled" task.wait(2) m:Destroy() end }) ------------------------------------------------------ -- 👑 OWNER UNLOCK (111) ------------------------------------------------------ local OwnerTab Universal:CreateInput({ Name = "Owner Unlock Code", PlaceholderText = "Enter code", Callback = function(text) if text == "111" and not OwnerUnlocked then OwnerUnlocked = true OwnerTab = Window:CreateTab("👑 OWNER ONLY", 4483362458) OwnerTab:CreateButton({ Name = "Owner Super Speed", Callback = function() local h = LP.Character:FindFirstChildOfClass("Humanoid") if h then h.WalkSpeed = 200 end end }) OwnerTab:CreateButton({ Name = "Owner Fly", Callback = function() RunService:BindToRenderStep("OwnerFly",0,function() local hrp = LP.Character and LP.Character:FindFirstChild("HumanoidRootPart") if hrp then hrp.Velocity = Vector3.new(0,80,0) end end) end }) Rayfield:Notify({ Title = "OWNER MODE", Content = "Extra OP features unlocked", Duration = 5 }) end end }) ------------------------------------------------------ -- ℹ️ INFO ------------------------------------------------------ local Info = Window:CreateTab("ℹ️ Info", 4483362458) Info:CreateLabel("Unleaked_dev") Info:CreateLabel("Credits: Unleaked_Dev | roblox:maximax0209") Info:CreateLabel("Discord: https://discord.gg/qHB3apzB")