-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] -- ================================================================= -- BROOKHAVEN RP - DHOVZEL ULTIMATE V6 (ENGLISH & VIP KEY SYSTEM) -- Key: BrokhavenA29 | Discord: https://discord.gg/FCCVREsjF -- ================================================================= local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local Title = Instance.new("TextLabel") local Sidebar = Instance.new("Frame") local ContentArea = Instance.new("Frame") local Tab1Btn = Instance.new("TextButton") local Tab2Btn = Instance.new("TextButton") local Tab3Btn = Instance.new("TextButton") local Tab4Btn = Instance.new("TextButton") local Tab5Btn = Instance.new("TextButton") local ToggleBtn = Instance.new("TextButton") local CloseBtn = Instance.new("TextButton") -- Protect GUI ScreenGui.Name = "DhovzelV6_English" ScreenGui.Parent = game:GetService("CoreGui") ScreenGui.ResetOnSpawn = false -- Main Frame Setup MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(12, 12, 18) MainFrame.BorderColor3 = Color3.fromRGB(0, 255, 170) MainFrame.BorderSizePixel = 2 MainFrame.Position = UDim2.new(0.15, 0, 0.08, 0) MainFrame.Size = UDim2.new(0, 530, 0, 450) MainFrame.Active = true MainFrame.Draggable = true -- Title Header Title.Parent = MainFrame Title.Size = UDim2.new(1, -45, 0, 45) Title.BackgroundColor3 = Color3.fromRGB(20, 20, 30) Title.Text = " 🚀 DHOVZEL V6 - BROOKHAVEN ULTIMATE HUB" Title.TextColor3 = Color3.fromRGB(0, 255, 170) Title.TextSize = 17 Title.Font = Enum.Font.SourceSansBold Title.TextXAlignment = Enum.TextXAlignment.Left -- Quick Close Button CloseBtn.Parent = MainFrame CloseBtn.Position = UDim2.new(1, -40, 0, 6) CloseBtn.Size = UDim2.new(0, 34, 0, 34) CloseBtn.BackgroundColor3 = Color3.fromRGB(220, 30, 30) CloseBtn.Text = "X" CloseBtn.TextColor3 = Color3.fromRGB(255, 255, 255) CloseBtn.Font = Enum.Font.SourceSansBold CloseBtn.TextSize = 18 CloseBtn.MouseButton1Click:Connect(function() MainFrame.Visible = false end) -- Left Toggle Button ToggleBtn.Parent = ScreenGui ToggleBtn.Position = UDim2.new(0, 8, 0.25, 0) ToggleBtn.Size = UDim2.new(0, 95, 0, 45) ToggleBtn.BackgroundColor3 = Color3.fromRGB(0, 255, 170) ToggleBtn.Text = "DHOVZEL" ToggleBtn.TextColor3 = Color3.fromRGB(10, 10, 15) ToggleBtn.Font = Enum.Font.SourceSansBold ToggleBtn.TextSize = 16 ToggleBtn.MouseButton1Click:Connect(function() MainFrame.Visible = not MainFrame.Visible end) -- Sidebar Sidebar.Parent = MainFrame Sidebar.Position = UDim2.new(0, 6, 0, 50) Sidebar.Size = UDim2.new(0, 130, 1, -56) Sidebar.BackgroundColor3 = Color3.fromRGB(18, 18, 26) -- Content Area ContentArea.Parent = MainFrame ContentArea.Position = UDim2.new(0, 142, 0, 50) ContentArea.Size = UDim2.new(1, -148, 1, -56) ContentArea.BackgroundTransparency = 1 -- Sidebar Button Generator local function MakeTabBtn(btn, pos, text) btn.Parent = Sidebar btn.Size = UDim2.new(1, 0, 0, 38) btn.Position = pos btn.BackgroundColor3 = Color3.fromRGB(25, 25, 38) btn.Text = text btn.TextColor3 = Color3.fromRGB(240, 240, 240) btn.Font = Enum.Font.SourceSansBold btn.TextSize = 14 end MakeTabBtn(Tab1Btn, UDim2.new(0, 0, 0, 0), "1. Main Player") MakeTabBtn(Tab2Btn, UDim2.new(0, 0, 0, 42), "2. Kill & Troll") MakeTabBtn(Tab3Btn, UDim2.new(0, 0, 0, 84), "3. Teleports & Plrs") MakeTabBtn(Tab4Btn, UDim2.new(0, 0, 0, 126), "4. World (VIP 🔑)") MakeTabBtn(Tab5Btn, UDim2.new(0, 0, 0, 168), "5. OP VIP (VIP 🔑)") -- Scrolling Container Setup local function MakeScroll() local sc = Instance.new("ScrollingFrame", ContentArea) sc.Size = UDim2.new(1, 0, 1, 0) sc.CanvasSize = UDim2.new(0, 0, 0, 1600) sc.BackgroundTransparency = 1 sc.Visible = false local l = Instance.new("UIListLayout", sc) l.Padding = UDim.new(0, 5) return sc end local S1 = MakeScroll(); S1.Visible = true local S2 = MakeScroll() local S3 = MakeScroll() local S4 = MakeScroll() local S5 = MakeScroll() -- KEY LOCK CONTAINERS FOR TAB 4 & TAB 5 local KeyUnlocked = false local KeyLockTab4 = Instance.new("Frame", ContentArea) KeyLockTab4.Size = UDim2.new(1, 0, 1, 0) KeyLockTab4.BackgroundTransparency = 1 KeyLockTab4.Visible = false local KeyLockTab5 = Instance.new("Frame", ContentArea) KeyLockTab5.Size = UDim2.new(1, 0, 1, 0) KeyLockTab5.BackgroundTransparency = 1 KeyLockTab5.Visible = false local function SwitchTab(activeTab, activeBtn) S1.Visible = false; S2.Visible = false; S3.Visible = false; S4.Visible = false; S5.Visible = false KeyLockTab4.Visible = false; KeyLockTab5.Visible = false activeTab.Visible = true Tab1Btn.BackgroundColor3 = Color3.fromRGB(25, 25, 38) Tab2Btn.BackgroundColor3 = Color3.fromRGB(25, 25, 38) Tab3Btn.BackgroundColor3 = Color3.fromRGB(25, 25, 38) Tab4Btn.BackgroundColor3 = Color3.fromRGB(25, 25, 38) Tab5Btn.BackgroundColor3 = Color3.fromRGB(25, 25, 38) activeBtn.BackgroundColor3 = Color3.fromRGB(40, 40, 65) end Tab1Btn.MouseButton1Click:Connect(function() SwitchTab(S1, Tab1Btn) end) Tab2Btn.MouseButton1Click:Connect(function() SwitchTab(S2, Tab2Btn) end) Tab3Btn.MouseButton1Click:Connect(function() SwitchTab(S3, Tab3Btn) end) Tab4Btn.MouseButton1Click:Connect(function() if KeyUnlocked then SwitchTab(S4, Tab4Btn) else SwitchTab(KeyLockTab4, Tab4Btn) end end) Tab5Btn.MouseButton1Click:Connect(function() if KeyUnlocked then SwitchTab(S5, Tab5Btn) else SwitchTab(KeyLockTab5, Tab5Btn) end end) -- Core Helpers local Plr = game:GetService("Players").LocalPlayer local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local function GetChar() return Plr.Character end local function GetHum() return GetChar() and GetChar():FindFirstChildOfClass("Humanoid") end local function GetRoot() return GetChar() and GetChar():FindFirstChild("HumanoidRootPart") end local function AddButton(parent, text, bgColor, callback) local Btn = Instance.new("TextButton") Btn.Parent = parent Btn.Size = UDim2.new(1, -8, 0, 38) Btn.BackgroundColor3 = bgColor or Color3.fromRGB(32, 32, 46) Btn.Text = text Btn.TextColor3 = Color3.fromRGB(255, 255, 255) Btn.Font = Enum.Font.SourceSansBold Btn.TextSize = 15 Btn.BorderSizePixel = 0 Btn.MouseButton1Click:Connect(callback) return Btn end local function AddToggle(parent, text, callback) local Enabled = false local Btn = Instance.new("TextButton") Btn.Parent = parent Btn.Size = UDim2.new(1, -8, 0, 38) Btn.BackgroundColor3 = Color3.fromRGB(48, 28, 28) Btn.Text = text .. " : [ OFF ]" Btn.TextColor3 = Color3.fromRGB(255, 100, 100) Btn.Font = Enum.Font.SourceSansBold Btn.TextSize = 15 Btn.BorderSizePixel = 0 Btn.MouseButton1Click:Connect(function() Enabled = not Enabled if Enabled then Btn.BackgroundColor3 = Color3.fromRGB(28, 58, 35) Btn.Text = text .. " : [ ON ]" Btn.TextColor3 = Color3.fromRGB(100, 255, 120) else Btn.BackgroundColor3 = Color3.fromRGB(48, 28, 28) Btn.Text = text .. " : [ OFF ]" Btn.TextColor3 = Color3.fromRGB(255, 100, 100) end callback(Enabled) end) return Btn end -- ================================================================= -- TAB 1: MAIN PLAYER MODS -- ================================================================= AddToggle(S1, "WalkSpeed Boost (120)", function(v) if GetHum() then GetHum().WalkSpeed = v and 120 or 16 end end) AddToggle(S1, "Extreme Speed Boost (300)", function(v) if GetHum() then GetHum().WalkSpeed = v and 300 or 16 end end) AddToggle(S1, "High Jump Power (200)", function(v) if GetHum() then GetHum().UseJumpPower = true; GetHum().JumpPower = v and 200 or 50 end end) local InfJumpConn AddToggle(S1, "Infinite Jump", function(v) if v then InfJumpConn = UserInputService.JumpRequest:Connect(function() if GetHum() then GetHum():ChangeState("Jumping") end end) else if InfJumpConn then InfJumpConn:Disconnect() end end end) local NoclipConn AddToggle(S1, "Noclip (Wall Pass)", function(v) if v then NoclipConn = RunService.Stepped:Connect(function() if GetChar() then for _, p in pairs(GetChar():GetDescendants()) do if p:IsA("BasePart") then p.CanCollide = false end end end end) else if NoclipConn then NoclipConn:Disconnect() end end end) local FlyBv AddToggle(S1, "Fly Mode", function(v) if v and GetRoot() then FlyBv = Instance.new("BodyVelocity", GetRoot()) FlyBv.MaxForce = Vector3.new(9e9, 9e9, 9e9) task.spawn(function() while FlyBv and FlyBv.Parent do FlyBv.Velocity = workspace.CurrentCamera.CFrame.LookVector * 130 task.wait() end end) else if FlyBv then FlyBv:Destroy() end end end) AddToggle(S1, "Low Gravity Mode", function(v) workspace.Gravity = v and 30 or 196.2 end) AddToggle(S1, "Ghost Mode (Invisible)", function(v) if GetChar() then for _, p in pairs(GetChar():GetDescendants()) do if p:IsA("BasePart") or p:IsA("Decal") then p.Transparency = v and 1 or (p.Name == "HumanoidRootPart" and 1 or 0) end end end end) AddButton(S1, "🧘 Sit Anywhere", Color3.fromRGB(60, 60, 30), function() if GetHum() then GetHum().Sit = not GetHum().Sit end end) AddButton(S1, "🎈 Float HipHeight (15)", Color3.fromRGB(60, 60, 30), function() if GetHum() then GetHum().HipHeight = 15 end end) AddButton(S1, "🔄 Reset HipHeight", Color3.fromRGB(50, 50, 60), function() if GetHum() then GetHum().HipHeight = 2 end end) AddButton(S1, "💀 Instant Respawn", Color3.fromRGB(180, 20, 20), function() if GetHum() then GetHum().Health = 0 end end) -- ================================================================= -- TAB 2: KILL & TROLL SYSTEM -- ================================================================= AddButton(S2, "💥 Super Fling Target", Color3.fromRGB(180, 30, 30), function() local root = GetRoot() if root then local bav = Instance.new("BodyAngularVelocity") bav.AngularVelocity = Vector3.new(0, 100000, 0) bav.MaxTorque = Vector3.new(0, 100000, 0) bav.Parent = root task.wait(2.5) bav:Destroy() end end) local FlingAuraLoop AddToggle(S2, "🌀 Auto Fling Aura (Kill Touch)", function(v) if v then FlingAuraLoop = RunService.RenderStepped:Connect(function() if GetRoot() then GetRoot().RotVelocity = Vector3.new(0, 99999, 0) end end) else if FlingAuraLoop then FlingAuraLoop:Disconnect() end if GetRoot() then GetRoot().RotVelocity = Vector3.new(0,0,0) end end end) AddButton(S2, "☠️ Void Trap (Underground)", Color3.fromRGB(150, 20, 20), function() task.spawn(function() for i = 1, 30 do for _, v in pairs(game.Players:GetPlayers()) do if v ~= Plr and v.Character and v.Character:FindFirstChild("HumanoidRootPart") then if (v.Character.HumanoidRootPart.Position - GetRoot().Position).Magnitude < 18 then GetRoot().CFrame = v.Character.HumanoidRootPart.CFrame + Vector3.new(0, -8, 0) end end end task.wait(0.05) end end) end) AddButton(S2, "⚡ Spin Bot", Color3.fromRGB(100, 40, 120), function() local spin = Instance.new("BodyAngularVelocity", GetRoot()) spin.AngularVelocity = Vector3.new(0, 500, 0) spin.MaxTorque = Vector3.new(0, 500, 0) end) -- ================================================================= -- TAB 3: TELEPORTS & SELECT PLAYER -- ================================================================= local function TP(cf) if GetRoot() then GetRoot().CFrame = cf end end local PlrFrame = Instance.new("Frame", S3) PlrFrame.Size = UDim2.new(1, -8, 0, 150) PlrFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 30) local PTitle = Instance.new("TextLabel", PlrFrame) PTitle.Size = UDim2.new(1, 0, 0, 25) PTitle.BackgroundTransparency = 1 PTitle.Text = "👤 LIVE SERVER PLAYER SELECTOR" PTitle.TextColor3 = Color3.fromRGB(0, 255, 170) PTitle.Font = Enum.Font.SourceSansBold PTitle.TextSize = 14 local SelectedPlr = nil local TargetText = Instance.new("TextLabel", PlrFrame) TargetText.Size = UDim2.new(1, 0, 0, 22) TargetText.Position = UDim2.new(0, 0, 0, 25) TargetText.BackgroundTransparency = 1 TargetText.Text = "Selected: [ NONE ]" TargetText.TextColor3 = Color3.fromRGB(255, 255, 255) TargetText.Font = Enum.Font.SourceSans TargetText.TextSize = 14 local PlrListScroll = Instance.new("ScrollingFrame", PlrFrame) PlrListScroll.Size = UDim2.new(1, -10, 0, 60) PlrListScroll.Position = UDim2.new(0, 5, 0, 50) PlrListScroll.BackgroundColor3 = Color3.fromRGB(12, 12, 18) local PlrListLayout = Instance.new("UIListLayout", PlrListScroll) local function UpdatePlayerList() for _, child in pairs(PlrListScroll:GetChildren()) do if child:IsA("TextButton") then child:Destroy() end end for _, p in pairs(game.Players:GetPlayers()) do if p ~= Plr then local pBtn = Instance.new("TextButton", PlrListScroll) pBtn.Size = UDim2.new(1, 0, 0, 22) pBtn.BackgroundColor3 = Color3.fromRGB(30, 30, 45) pBtn.Text = " " .. p.Name .. " (@" .. p.DisplayName .. ")" pBtn.TextColor3 = Color3.fromRGB(0, 255, 170) pBtn.Font = Enum.Font.SourceSansBold pBtn.TextSize = 13 pBtn.TextXAlignment = Enum.TextXAlignment.Left pBtn.MouseButton1Click:Connect(function() SelectedPlr = p TargetText.Text = "Selected: [ " .. p.Name .. " ]" end) end end end UpdatePlayerList() local RefBtn = Instance.new("TextButton", PlrFrame) RefBtn.Size = UDim2.new(0.48, 0, 0, 30) RefBtn.Position = UDim2.new(0, 5, 0, 115) RefBtn.BackgroundColor3 = Color3.fromRGB(40, 60, 90) RefBtn.Text = "🔄 Refresh Players" RefBtn.TextColor3 = Color3.fromRGB(255, 255, 255) RefBtn.Font = Enum.Font.SourceSansBold RefBtn.MouseButton1Click:Connect(UpdatePlayerList) local GoTPBtn = Instance.new("TextButton", PlrFrame) GoTPBtn.Size = UDim2.new(0.48, 0, 0, 30) GoTPBtn.Position = UDim2.new(0.5, 0, 0, 115) GoTPBtn.BackgroundColor3 = Color3.fromRGB(0, 160, 100) GoTPBtn.Text = "⚡ Teleport To Player" GoTPBtn.TextColor3 = Color3.fromRGB(255, 255, 255) GoTPBtn.Font = Enum.Font.SourceSansBold GoTPBtn.MouseButton1Click:Connect(function() if SelectedPlr and SelectedPlr.Character and SelectedPlr.Character:FindFirstChild("HumanoidRootPart") then TP(SelectedPlr.Character.HumanoidRootPart.CFrame + Vector3.new(0, 3, 0)) end end) AddButton(S3, "🏙️ Town Center (Spawn)", Color3.fromRGB(30, 70, 110), function() TP(CFrame.new(-25, 18, 30)) end) AddButton(S3, "🏦 Bank Vault Inside", Color3.fromRGB(30, 70, 110), function() TP(CFrame.new(-22, 8, -100)) end) AddButton(S3, "👮 Police Station", Color3.fromRGB(30, 70, 110), function() TP(CFrame.new(-140, 18, -85)) end) AddButton(S3, "🏥 Hospital Secret Lab", Color3.fromRGB(30, 70, 110), function() TP(CFrame.new(-212, 54, -65)) end) AddButton(S3, "🏫 School Center", Color3.fromRGB(30, 70, 110), function() TP(CFrame.new(-325, 18, 200)) end) AddButton(S3, "✈️ Airport Runway", Color3.fromRGB(30, 70, 110), function() TP(CFrame.new(-270, 18, -320)) end) AddButton(S3, "🏠 Houses Zone 1", Color3.fromRGB(30, 90, 70), function() TP(CFrame.new(-460, 20, 120)) end) AddButton(S3, "🏠 Houses Zone 2", Color3.fromRGB(30, 90, 70), function() TP(CFrame.new(-310, 20, -380)) end) AddButton(S3, "🏠 Houses Zone 3", Color3.fromRGB(30, 90, 70), function() TP(CFrame.new(220, 20, -480)) end) AddButton(S3, "🕵️ Agency Secret Base", Color3.fromRGB(30, 70, 110), function() TP(CFrame.new(65, 8, -300)) end) -- ================================================================= -- TAB 4: WORLD & VISUALS (VIP CONTENT) -- ================================================================= AddToggle(S4, "👁️ Player ESP Highlight", function(v) for _, p in pairs(game.Players:GetPlayers()) do if p ~= Plr and p.Character then local h = p.Character:FindFirstChild("DhovzelESP") if v then if not h then h = Instance.new("Highlight") h.Name = "DhovzelESP" h.FillColor = Color3.fromRGB(255, 0, 50) h.Parent = p.Character end else if h then h:Destroy() end end end end end) AddButton(S4, "☀️ Fullbright (Day Time)", Color3.fromRGB(160, 120, 0), function() game:GetService("Lighting").ClockTime = 14 game:GetService("Lighting").Brightness = 3 end) AddButton(S4, "🌙 Night Mode", Color3.fromRGB(40, 40, 80), function() game:GetService("Lighting").ClockTime = 0 end) AddButton(S4, "🌫️ Clear Fog", Color3.fromRGB(160, 120, 0), function() game:GetService("Lighting").FogEnd = 100000 end) -- ================================================================= -- TAB 5: OP VIP FEATURES (VIP CONTENT) -- ================================================================= AddButton(S5, "🛡️ Ultimate Godmode", Color3.fromRGB(200, 150, 0), function() if GetHum() then GetHum().MaxHealth = 999999; GetHum().Health = 999999 end end) AddButton(S5, "🚀 Extreme Speed Fly (300)", Color3.fromRGB(200, 150, 0), function() local bv = Instance.new("BodyVelocity", GetRoot()) bv.MaxForce = Vector3.new(9e9, 9e9, 9e9) bv.Velocity = workspace.CurrentCamera.CFrame.LookVector * 300 end) AddButton(S5, "🌀 Total Server Fling Aura", Color3.fromRGB(200, 150, 0), function() local bav = Instance.new("BodyAngularVelocity", GetRoot()) bav.AngularVelocity = Vector3.new(0, 999999, 0) bav.MaxTorque = Vector3.new(0, 999999, 0) end) -- ================================================================= -- SHARED KEY SYSTEM LOGIC FOR TAB 4 & TAB 5 -- ================================================================= local function BuildKeyInterface(targetParent) local Frame = Instance.new("Frame", targetParent) Frame.Size = UDim2.new(1, 0, 1, 0) Frame.BackgroundTransparency = 1 local KInfo = Instance.new("TextLabel", Frame) KInfo.Size = UDim2.new(1, 0, 0, 30) KInfo.Position = UDim2.new(0, 0, 0, 5) KInfo.BackgroundTransparency = 1 KInfo.Text = "🔑 Key Required! Get key from Discord:" KInfo.TextColor3 = Color3.fromRGB(255, 255, 255) KInfo.Font = Enum.Font.SourceSansBold KInfo.TextSize = 16 local CopyDisc = Instance.new("TextButton", Frame) CopyDisc.Size = UDim2.new(1, -10, 0, 40) CopyDisc.Position = UDim2.new(0, 5, 0, 40) CopyDisc.BackgroundColor3 = Color3.fromRGB(88, 101, 242) CopyDisc.Text = "📋 Copy Discord Link" CopyDisc.TextColor3 = Color3.fromRGB(255, 255, 255) CopyDisc.Font = Enum.Font.SourceSansBold CopyDisc.TextSize = 15 CopyDisc.MouseButton1Click:Connect(function() if setclipboard then setclipboard("https://discord.gg/FCCVREsjF") CopyDisc.Text = "✅ Link Copied!" task.wait(2) CopyDisc.Text = "📋 Copy Discord Link" end end) local KeyInput = Instance.new("TextBox", Frame) KeyInput.Size = UDim2.new(1, -10, 0, 42) KeyInput.Position = UDim2.new(0, 5, 0, 90) KeyInput.BackgroundColor3 = Color3.fromRGB(25, 25, 38) KeyInput.PlaceholderText = "Enter Key..." KeyInput.Text = "" KeyInput.TextColor3 = Color3.fromRGB(255, 215, 0) KeyInput.Font = Enum.Font.SourceSansBold KeyInput.TextSize = 16 local SubmitBtn = Instance.new("TextButton", Frame) SubmitBtn.Size = UDim2.new(1, -10, 0, 42) SubmitBtn.Position = UDim2.new(0, 5, 0, 140) SubmitBtn.BackgroundColor3 = Color3.fromRGB(0, 180, 100) SubmitBtn.Text = "CHECK KEY & UNLOCK ALL VIP" SubmitBtn.TextColor3 = Color3.fromRGB(255, 255, 255) SubmitBtn.Font = Enum.Font.SourceSansBold SubmitBtn.TextSize = 16 local KeyStatus = Instance.new("TextLabel", Frame) KeyStatus.Size = UDim2.new(1, 0, 0, 25) KeyStatus.Position = UDim2.new(0, 0, 0, 190) KeyStatus.BackgroundTransparency = 1 KeyStatus.Text = "Status: Waiting for key" KeyStatus.TextColor3 = Color3.fromRGB(200, 200, 200) KeyStatus.Font = Enum.Font.SourceSans KeyStatus.TextSize = 14 SubmitBtn.MouseButton1Click:Connect(function() if KeyInput.Text == "BrokhavenA29" then KeyUnlocked = true -- Destroy Lock Screens KeyLockTab4:Destroy() KeyLockTab5:Destroy() -- Unlock Tab 4 & Tab 5 Automatically if Tab4Btn.BackgroundColor3 == Color3.fromRGB(40, 40, 65) then SwitchTab(S4, Tab4Btn) elseif Tab5Btn.BackgroundColor3 == Color3.fromRGB(40, 40, 65) then SwitchTab(S5, Tab5Btn) end else KeyStatus.Text = "❌ Incorrect Key! Check Discord." KeyStatus.TextColor3 = Color3.fromRGB(255, 60, 60) end end) end BuildKeyInterface(KeyLockTab4) BuildKeyInterface(KeyLockTab5)