-- 🔑 Keykard Escape Hub VII (English Version) local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "🔑 Keykard Escape Hub VII", LoadingTitle = "Loading Keykard Hub...", LoadingSubtitle = "by Brunosantiago006", ConfigurationSaving = { Enabled = true, FolderName = "KeykardHub", FileName = "KeykardConfig" }, Theme = "Dark", KeySystem = false }) local MainTab = Window:CreateTab("🏠 Main", 4483362458) local MovementTab = Window:CreateTab("🌟 Movement", 4483362458) local GravityTab = Window:CreateTab("🌍 Gravity", 4483362458) local UtilityTab = Window:CreateTab("🛠 Utilities", 4483362458) local player = game.Players.LocalPlayer local connections = {} local desiredWalkSpeed = 60 local speedMultiplier = 1 local platform = nil -- ==================== CREDITS ==================== MainTab:CreateParagraph({ Title = "👑 Keykard Escape Hub VII", Content = "Script created by Brunosantiago006\n\n".. "This hub was developed with the help of Grok (xAI) through a long conversation.\n".. "We built it together step by step: removing old features, fixing bugs, ".. "adding Gravity Control, improving Platform, Infinite Jump, Noclip, ".. "and a powerful Anti-Lag system.\n\n".. "Thank you Grok for all your help, patience, and great ideas during the creation of this script.\n".. "Special thanks to everyone who tested it.\n\n".. "Made with dedication for the Keykard Escape community.\n".. "Enjoy the game and good luck collecting those Golden Keycards! 🔑" }) -- ==================== FPS & PING DISPLAY ==================== local fpsLabel = MainTab:CreateParagraph({ Title = "📊 Performance", Content = "FPS: Calculating...\nPing: Calculating..." }) local lastTick = tick() local frameCount = 0 game:GetService("RunService").RenderStepped:Connect(function() frameCount += 1 if tick() - lastTick >= 1 then local fps = math.floor(frameCount / (tick() - lastTick)) local ping = player:GetNetworkPing() and math.floor(player:GetNetworkPing() * 1000) or "N/A" fpsLabel:Set({ Title = "📊 Performance", Content = "FPS: " .. fps .. "\nPing: " .. ping .. " ms" }) frameCount = 0 lastTick = tick() end end) -- ==================== FUNCTIONS ==================== -- WalkSpeed connections.walkspeed = game:GetService("RunService").Heartbeat:Connect(function() local hum = player.Character and player.Character:FindFirstChild("Humanoid") if hum then hum.WalkSpeed = desiredWalkSpeed * speedMultiplier end end) -- Noclip local function toggleNoclip(state) if state then connections.noclip = game:GetService("RunService").Stepped:Connect(function() pcall(function() for _, v in ipairs(player.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end) end) else if connections.noclip then connections.noclip:Disconnect() end end end -- Infinite Jump local function toggleInfJump(state) if state then connections.infJump = game:GetService("UserInputService").JumpRequest:Connect(function() local hum = player.Character and player.Character:FindFirstChild("Humanoid") if hum then hum:ChangeState(Enum.HumanoidStateType.Jumping) end end) else if connections.infJump then connections.infJump:Disconnect() end end end -- Platform local function togglePlatform(state) if state then platform = Instance.new("Part") platform.Size = Vector3.new(6, 1.2, 6) platform.Anchored = true platform.Transparency = 0.4 platform.Color = Color3.fromRGB(255, 85, 85) platform.Material = Enum.Material.Neon platform.CanCollide = true platform.Parent = workspace connections.platform = game:GetService("RunService").RenderStepped:Connect(function() local root = player.Character and player.Character:FindFirstChild("HumanoidRootPart") if root and platform then platform.CFrame = root.CFrame * CFrame.new(0, -3.8, 0) end end) else if connections.platform then connections.platform:Disconnect() end if platform then platform:Destroy() platform = nil end end end -- Anti-AFK local function toggleAntiAFK(state) if state then connections.antiafk = player.Idled:Connect(function() game:GetService("VirtualUser"):Button2Down(Vector2.new(0,0), workspace.CurrentCamera.CFrame) task.wait(1) game:GetService("VirtualUser"):Button2Up(Vector2.new(0,0), workspace.CurrentCamera.CFrame) end) else if connections.antiafk then connections.antiafk:Disconnect() end end end -- Anti Lag local function toggleAntiLag(state) if state then settings().Rendering.QualityLevel = Enum.QualityLevel.Level01 settings().Graphics.QualityLevel = 1 local lighting = game:GetService("Lighting") lighting.GlobalShadows = false lighting.FogEnd = 100000 for _, v in ipairs(workspace:GetDescendants()) do if v:IsA("ParticleEmitter") or v:IsA("Trail") or v:IsA("Smoke") or v:IsA("Fire") then v.Enabled = false end end Rayfield:Notify({Title = "⚡ Anti Lag ON", Content = "Maximum optimization active", Duration = 5}) else settings().Rendering.QualityLevel = Enum.QualityLevel.Automatic Rayfield:Notify({Title = "⚡ Anti Lag OFF", Content = "Restored normal settings", Duration = 5}) end end -- Gravity local function setGravity(value) workspace.Gravity = value Rayfield:Notify({Title = "🌍 Gravity", Content = "Set to: " .. value, Duration = 4}) end -- ==================== UI ==================== MovementTab:CreateSection("Movement Hacks") MovementTab:CreateSlider({Name = "WalkSpeed", Range = {16, 500}, Increment = 5, CurrentValue = 60, Callback = function(v) desiredWalkSpeed = v end}) MovementTab:CreateSlider({Name = "Speed Multiplier", Range = {1, 10}, Increment = 0.5, CurrentValue = 1, Callback = function(v) speedMultiplier = v end}) MovementTab:CreateToggle({Name = "🦘 Infinite Jump", CurrentValue = false, Callback = toggleInfJump}) MovementTab:CreateToggle({Name = "📦 Platform (Scaffold with Collision)", CurrentValue = false, Callback = togglePlatform}) MovementTab:CreateToggle({Name = "👻 Noclip", CurrentValue = false, Callback = toggleNoclip}) MovementTab:CreateToggle({Name = "☕ Anti-AFK", CurrentValue = false, Callback = toggleAntiAFK}) GravityTab:CreateSection("🌍 Gravity Control") GravityTab:CreateSlider({Name = "Gravity", Range = {0, 500}, Increment = 5, CurrentValue = workspace.Gravity, Callback = setGravity}) GravityTab:CreateButton({Name = "🔄 Reset Gravity (196.2)", Callback = function() setGravity(196.2) end}) GravityTab:CreateButton({Name = "🌑 Low Gravity (50)", Callback = function() setGravity(50) end}) GravityTab:CreateButton({Name = "🚀 High Gravity (300)", Callback = function() setGravity(300) end}) UtilityTab:CreateSection("Utilities") UtilityTab:CreateToggle({Name = "⚡ Anti Lag", CurrentValue = false, Callback = toggleAntiLag}) UtilityTab:CreateButton({Name = "🔄 Server Hop", Callback = function() game:GetService("TeleportService"):Teleport(game.PlaceId, player) end}) UtilityTab:CreateButton({Name = "🚪 Leave Game", Callback = function() game:Shutdown() end}) Rayfield:Notify({ Title = "✅ Keykard Escape Hub VII", Content = "Loaded successfully!\nGood luck in the game!", Duration = 10 }) print("🔑 Keykard Escape Hub VII - Final Version Loaded!")