--section 1-- local Players = game:GetService("Players") local UserInputService = game:GetService("UserInputService") local RunService = game:GetService("RunService") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local KEY = "sbp834" local gui = Instance.new("ScreenGui") gui.Name = "PremiumKeySystem" gui.ResetOnSpawn = false gui.IgnoreGuiInset = true gui.Parent = playerGui -- KEY SYSTEM local keyMain = Instance.new("Frame") keyMain.Name = "KeySystem" keyMain.Size = UDim2.new(0, 535, 0, 285) keyMain.Position = UDim2.new(0.5, -267, 0.5, -142) keyMain.BackgroundColor3 = Color3.fromRGB(53, 56, 65) keyMain.BorderSizePixel = 0 keyMain.Parent = gui local keyCorner = Instance.new("UICorner") keyCorner.CornerRadius = UDim.new(0, 35) keyCorner.Parent = keyMain local keyStroke = Instance.new("UIStroke") keyStroke.Color = Color3.fromRGB(0, 0, 0) keyStroke.Thickness = 5 keyStroke.Parent = keyMain local title = Instance.new("TextLabel") title.Size = UDim2.new(0, 315, 0, 52) title.Position = UDim2.new(0, 10, 0, 8) title.BackgroundColor3 = Color3.fromRGB(53, 56, 65) title.Text = "welcome to Key System :D" title.TextColor3 = Color3.fromRGB(180, 180, 185) title.TextSize = 22 title.Font = Enum.Font.Gotham title.Parent = keyMain local titleCorner = Instance.new("UICorner") titleCorner.CornerRadius = UDim.new(0, 25) titleCorner.Parent = title local titleStroke = Instance.new("UIStroke") titleStroke.Color = Color3.fromRGB(155, 155, 160) titleStroke.Thickness = 2 titleStroke.Parent = title local keyBox = Instance.new("TextBox") keyBox.Size = UDim2.new(0, 200, 0, 45) keyBox.Position = UDim2.new(0, 10, 0, 75) keyBox.BackgroundColor3 = Color3.fromRGB(125, 125, 125) keyBox.Text = "" keyBox.PlaceholderText = "type Key Here" keyBox.PlaceholderColor3 = Color3.fromRGB(245, 245, 245) keyBox.TextColor3 = Color3.fromRGB(255, 255, 255) keyBox.TextSize = 20 keyBox.Font = Enum.Font.Gotham keyBox.ClearTextOnFocus = false keyBox.Parent = keyMain local keyBoxCorner = Instance.new("UICorner") keyBoxCorner.CornerRadius = UDim.new(0, 25) keyBoxCorner.Parent = keyBox local keyBoxStroke = Instance.new("UIStroke") keyBoxStroke.Color = Color3.fromRGB(255, 255, 255) keyBoxStroke.Thickness = 1.5 keyBoxStroke.Parent = keyBox local verify = Instance.new("TextButton") verify.Size = UDim2.new(0, 200, 0, 45) verify.Position = UDim2.new(0, 10, 0, 130) verify.BackgroundColor3 = Color3.fromRGB(125, 125, 125) verify.Text = "verify" verify.TextColor3 = Color3.fromRGB(255, 255, 255) verify.TextSize = 21 verify.Font = Enum.Font.Gotham verify.Parent = keyMain local verifyCorner = Instance.new("UICorner") verifyCorner.CornerRadius = UDim.new(0, 25) verifyCorner.Parent = verify local verifyStroke = Instance.new("UIStroke") verifyStroke.Color = Color3.fromRGB(255, 255, 255) verifyStroke.Thickness = 1.5 verifyStroke.Parent = verify local outputBox = Instance.new("Frame") outputBox.Size = UDim2.new(0, 293, 0, 190) outputBox.Position = UDim2.new(0, 227, 0, 68) outputBox.BackgroundColor3 = Color3.fromRGB(125, 125, 125) outputBox.Parent = keyMain local outputCorner = Instance.new("UICorner") outputCorner.CornerRadius = UDim.new(0, 32) outputCorner.Parent = outputBox local outputStroke = Instance.new("UIStroke") outputStroke.Color = Color3.fromRGB(255, 255, 255) outputStroke.Thickness = 1.5 outputStroke.Parent = outputBox local outputTitle = Instance.new("TextLabel") outputTitle.Size = UDim2.new(1, 0, 0, 30) outputTitle.Position = UDim2.new(0, 0, 0, 18) outputTitle.BackgroundTransparency = 1 outputTitle.Text = "output:" outputTitle.TextColor3 = Color3.fromRGB(255, 0, 0) outputTitle.TextSize = 14 outputTitle.Font = Enum.Font.Gotham outputTitle.Parent = outputBox local outputText = Instance.new("TextLabel") outputText.Size = UDim2.new(1, 0, 0, 30) outputText.Position = UDim2.new(0, 0, 0, 38) outputText.BackgroundTransparency = 1 outputText.Text = "nil" outputText.TextColor3 = Color3.fromRGB(20, 20, 20) outputText.TextSize = 15 outputText.Font = Enum.Font.Gotham outputText.Parent = outputBox local keyWarning = Instance.new("TextLabel") keyWarning.Size = UDim2.new(1, -30, 0, 25) keyWarning.Position = UDim2.new(0, 15, 1, -28) keyWarning.BackgroundTransparency = 1 keyWarning.Text = "EXPLOITING WILL GET YOU BAN IF THERE A MODERATOR IN SERVER" keyWarning.TextColor3 = Color3.fromRGB(170, 170, 175) keyWarning.TextSize = 11 keyWarning.Font = Enum.Font.Code keyWarning.Parent = keyMain --section 2-- local toggleTop = Instance.new("TextButton") toggleTop.Name = "TOGGLE" toggleTop.Size = UDim2.new(0, 90, 0, 32) toggleTop.Position = UDim2.new(0, 10, 0, 7) toggleTop.BackgroundColor3 = Color3.fromRGB(0, 0, 0) toggleTop.Text = "TOGGLE" toggleTop.TextColor3 = Color3.fromRGB(255, 255, 255) toggleTop.TextSize = 18 toggleTop.Font = Enum.Font.Gotham toggleTop.Parent = gui local toggleCorner = Instance.new("UICorner") toggleCorner.CornerRadius = UDim.new(1, 0) toggleCorner.Parent = toggleTop local ccvs = Instance.new("TextButton") ccvs.Name = "CCVS" ccvs.Size = UDim2.new(0, 90, 0, 32) ccvs.Position = UDim2.new(0, 108, 0, 7) ccvs.BackgroundColor3 = Color3.fromRGB(0, 0, 0) ccvs.Text = "CCVS" ccvs.TextColor3 = Color3.fromRGB(255, 255, 255) ccvs.TextSize = 18 ccvs.Font = Enum.Font.Gotham ccvs.Parent = gui local ccvsCorner = Instance.new("UICorner") ccvsCorner.CornerRadius = UDim.new(1, 0) ccvsCorner.Parent = ccvs local panel = Instance.new("Frame") panel.Name = "PremiumPanel" panel.Size = UDim2.new(0, 612, 0, 302) panel.Position = UDim2.new(0, 20, 0, 54) panel.BackgroundColor3 = Color3.fromRGB(53, 56, 65) panel.BorderSizePixel = 0 panel.Visible = false panel.Parent = gui local panelCorner = Instance.new("UICorner") panelCorner.CornerRadius = UDim.new(0, 18) panelCorner.Parent = panel local panelStroke = Instance.new("UIStroke") panelStroke.Color = Color3.fromRGB(0, 0, 0) panelStroke.Thickness = 2 panelStroke.Parent = panel local heading = Instance.new("TextLabel") heading.Size = UDim2.new(1, -20, 0, 35) heading.Position = UDim2.new(0, 8, 0, 8) heading.BackgroundTransparency = 1 heading.Text = "PREMIUM | aura instinct" heading.TextColor3 = Color3.fromRGB(235, 235, 235) heading.TextSize = 18 heading.Font = Enum.Font.Gotham heading.TextXAlignment = Enum.TextXAlignment.Left heading.Parent = panel local function makeButton(name, text, x, y, enabled) local button = Instance.new("TextButton") button.Name = name button.Size = UDim2.new(0, 60, 0, 22) button.Position = UDim2.new(0, x, 0, y) button.BackgroundColor3 = enabled and Color3.fromRGB(0, 200, 100) or Color3.fromRGB(235, 25, 25) button.Text = text button.TextColor3 = Color3.fromRGB(0, 0, 0) button.TextSize = 10 button.Font = Enum.Font.Gotham button.Parent = panel local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(1, 0) corner.Parent = button return button end local noclip = makeButton("Noclip", "NOCLIP", 20, 53, false) local infJump = makeButton("InfJump", "INF JUMP", 20, 83, false) local freeze = makeButton("Freeze", "FREEZE", 20, 113, false) local spinbot = makeButton("Spinbot", "SPINBOT", 20, 143, false) local aura = makeButton("Aura", "aura", 103, 53, true) local speedBox = Instance.new("TextBox") speedBox.Name = "WalkSpeed" speedBox.Size = UDim2.new(0, 85, 0, 45) speedBox.Position = UDim2.new(0, 103, 0, 83) speedBox.BackgroundColor3 = Color3.fromRGB(155, 155, 155) speedBox.Text = "" speedBox.PlaceholderText = "typed here to\nchange walkspeed" speedBox.TextColor3 = Color3.fromRGB(20, 20, 20) speedBox.TextSize = 10 speedBox.Font = Enum.Font.Gotham speedBox.ClearTextOnFocus = false speedBox.Parent = panel local speedCorner = Instance.new("UICorner") speedCorner.CornerRadius = UDim.new(0, 8) speedCorner.Parent = speedBox local panelWarning = Instance.new("TextLabel") panelWarning.Size = UDim2.new(1, -30, 0, 25) panelWarning.Position = UDim2.new(0, 15, 1, -32) panelWarning.BackgroundTransparency = 1 panelWarning.Text = "EXPLOITING WILL GET YOU BAN IF THERE A MODERATOR IN SERVER" panelWarning.TextColor3 = Color3.fromRGB(210, 30, 30) panelWarning.TextSize = 14 panelWarning.Font = Enum.Font.Code panelWarning.Parent = panel -- TOGGLE BIG PANEL local panelOpen = false toggleTop.MouseButton1Click:Connect(function() panelOpen = not panelOpen panel.Visible = panelOpen end) -- KEY VERIFY verify.MouseButton1Click:Connect(function() if keyBox.Text == KEY then outputText.Text = "verified!" outputText.TextColor3 = Color3.fromRGB(0, 200, 0) task.wait(0.5) keyMain.Visible = false panel.Visible = true panelOpen = true else outputText.Text = "invalid key" outputText.TextColor3 = Color3.fromRGB(255, 50, 50) end end) -- AURA STAYS ON aura.BackgroundColor3 = Color3.fromRGB(0, 200, 100) aura.Active = false -- INFINITE JUMP local infiniteJump = false infJump.MouseButton1Click:Connect(function() infiniteJump = not infiniteJump if infiniteJump then infJump.BackgroundColor3 = Color3.fromRGB(0, 200, 100) else infJump.BackgroundColor3 = Color3.fromRGB(235, 25, 25) end end) UserInputService.JumpRequest:Connect(function() if infiniteJump then local character = player.Character local humanoid = character and character:FindFirstChildOfClass("Humanoid") if humanoid then humanoid:ChangeState(Enum.HumanoidStateType.Jumping) end end end) -- FREEZE local frozen = false freeze.MouseButton1Click:Connect(function() frozen = not frozen local character = player.Character local root = character and character:FindFirstChild("HumanoidRootPart") if root then root.Anchored = frozen end if frozen then freeze.BackgroundColor3 = Color3.fromRGB(0, 200, 100) else freeze.BackgroundColor3 = Color3.fromRGB(235, 25, 25) end end) -- WALK SPEED speedBox.FocusLost:Connect(function() local number = tonumber(speedBox.Text) if number then local character = player.Character local humanoid = character and character:FindFirstChildOfClass("Humanoid") if humanoid then humanoid.WalkSpeed = number end end end) -- NOCLIP local noclipEnabled = false noclip.MouseButton1Click:Connect(function() noclipEnabled = not noclipEnabled if noclipEnabled then noclip.BackgroundColor3 = Color3.fromRGB(0, 200, 100) else noclip.BackgroundColor3 = Color3.fromRGB(235, 25, 25) end end) RunService.Stepped:Connect(function() if noclipEnabled then local character = player.Character if character then for _, object in ipairs(character:GetDescendants()) do if object:IsA("BasePart") then object.CanCollide = false end end end end end) -- SPIN local spinEnabled = false spinbot.MouseButton1Click:Connect(function() spinEnabled = not spinEnabled if spinEnabled then spinbot.BackgroundColor3 = Color3.fromRGB(0, 200, 100) else spinbot.BackgroundColor3 = Color3.fromRGB(235, 25, 25) end end) RunService.RenderStepped:Connect(function() if spinEnabled then local character = player.Character local root = character and character:FindFirstChild("HumanoidRootPart") if root then root.CFrame = root.CFrame * CFrame.Angles(0, math.rad(12), 0) end end end) -- CCVS BUTTON ccvs.MouseButton1Click:Connect(function() panel.Visible = not panel.Visible panelOpen = panel.Visible end)