local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local Lighting = game:GetService("Lighting") local player = Players.LocalPlayer -- 🌫️ BLUR EFFECT local blur = Instance.new("BlurEffect") blur.Size = 0 blur.Parent = Lighting TweenService:Create(blur, TweenInfo.new(0.4), {Size = 18}):Play() -- GUI local ScreenGui = Instance.new("ScreenGui") ScreenGui.Parent = player:WaitForChild("PlayerGui") -- MAIN FRAME local Frame = Instance.new("Frame", ScreenGui) Frame.Size = UDim2.new(0, 380, 0, 240) Frame.Position = UDim2.new(0.5, -190, 0.5, -120) Frame.BackgroundColor3 = Color3.fromRGB(18,18,22) Frame.BorderSizePixel = 0 Instance.new("UICorner", Frame).CornerRadius = UDim.new(0, 14) -- TITLE (CHANGED) local Title = Instance.new("TextLabel", Frame) Title.Size = UDim2.new(1,0,0,50) Title.Text = "full's fast key steps" Title.TextColor3 = Color3.fromRGB(255,255,255) Title.Font = Enum.Font.GothamBold Title.TextSize = 22 Title.BackgroundTransparency = 1 -- SUBTITLE local Sub = Instance.new("TextLabel", Frame) Sub.Size = UDim2.new(1,0,0,20) Sub.Position = UDim2.new(0,0,0,40) Sub.Text = "Unlock access with your key" Sub.TextColor3 = Color3.fromRGB(140,140,140) Sub.Font = Enum.Font.Gotham Sub.TextSize = 14 Sub.BackgroundTransparency = 1 -- TEXTBOX local TextBox = Instance.new("TextBox", Frame) TextBox.Size = UDim2.new(0.85, 0, 0, 42) TextBox.Position = UDim2.new(0.075, 0, 0.35, 0) TextBox.PlaceholderText = "Enter key..." TextBox.Text = "" TextBox.BackgroundColor3 = Color3.fromRGB(28,28,34) TextBox.TextColor3 = Color3.fromRGB(255,255,255) TextBox.Font = Enum.Font.Gotham TextBox.TextSize = 16 Instance.new("UICorner", TextBox).CornerRadius = UDim.new(0, 10) -- VALIDATE BUTTON local Validate = Instance.new("TextButton", Frame) Validate.Size = UDim2.new(0.85, 0, 0, 42) Validate.Position = UDim2.new(0.075, 0, 0.58, 0) Validate.Text = "Unlock" Validate.BackgroundColor3 = Color3.fromRGB(0, 170, 255) Validate.TextColor3 = Color3.new(1,1,1) Validate.Font = Enum.Font.GothamBold Validate.TextSize = 16 Instance.new("UICorner", Validate).CornerRadius = UDim.new(0, 10) -- DISCORD BUTTON local Discord = Instance.new("TextButton", Frame) Discord.Size = UDim2.new(0.85, 0, 0, 32) Discord.Position = UDim2.new(0.075, 0, 0.8, 0) Discord.Text = "Join our Discord" Discord.BackgroundColor3 = Color3.fromRGB(40,40,50) Discord.TextColor3 = Color3.fromRGB(200,200,200) Discord.Font = Enum.Font.Gotham Discord.TextSize = 14 Instance.new("UICorner", Discord).CornerRadius = UDim.new(0, 10) -- CONFIG local validKey = "14:13ROBLOXNEW" local discordLink = "https://discord.gg/P8ADjxBUVp" -- NOTIFY local function notify(t, txt) game.StarterGui:SetCore("SendNotification", { Title = t, Text = txt, Duration = 3 }) end -- HOVER EFFECT local function hover(btn, color) btn.MouseEnter:Connect(function() TweenService:Create(btn, TweenInfo.new(0.15), {BackgroundColor3 = color}):Play() end) btn.MouseLeave:Connect(function() TweenService:Create(btn, TweenInfo.new(0.15), {BackgroundColor3 = btn.BackgroundColor3}):Play() end) end hover(Validate, Color3.fromRGB(0,200,255)) hover(Discord, Color3.fromRGB(60,60,70)) -- OPEN ANIMATION Frame.Size = UDim2.new(0,0,0,0) TweenService:Create(Frame, TweenInfo.new(0.35, Enum.EasingStyle.Back), { Size = UDim2.new(0, 380, 0, 240) }):Play() --------------------------------------------------- -- SCRIPT AREA --------------------------------------------------- local function RunScript() print("full's fast key steps loaded") game.StarterGui:SetCore("SendNotification", { Title = "Success", Text = "Script activated!", Duration = 5 }) local TOGGLE_KEY = Enum.KeyCode.K local SHOW_NAME = true local OUTLINE_COLOR = Color3.fromRGB(0, 255, 127) local Players = game:GetService("Players") local UserInputService = game:GetService("UserInputService") local LocalPlayer = Players.LocalPlayer local TAG_NAME = "RealPlayerESP_V2" local enabled = true --ESP local function createESP(model, name) if not model:FindFirstChild(TAG_NAME) then local folder = Instance.new("Folder") folder.Name = TAG_NAME folder.Parent = model local hl = Instance.new("Highlight") hl.Name = "Outline" hl.FillTransparency = 1 hl.OutlineColor = OUTLINE_COLOR hl.OutlineTransparency = 0 hl.Parent = folder if SHOW_NAME then local bgui = Instance.new("BillboardGui") bgui.Name = "NameTag" bgui.Adornee = model:FindFirstChild("Head") bgui.Size = UDim2.new(0, 100, 0, 50) bgui.StudsOffset = Vector3.new(0, 3, 0) bgui.AlwaysOnTop = true local tl = Instance.new("TextLabel") tl.BackgroundTransparency = 1 tl.Size = UDim2.new(1, 0, 1, 0) tl.Text = "[REAL] " .. name tl.TextColor3 = OUTLINE_COLOR tl.TextStrokeTransparency = 0 tl.TextScaled = true tl.Font = Enum.Font.SourceSansBold tl.Parent = bgui bgui.Parent = folder end end end local function clearAllESP() for _, player in pairs(Players:GetPlayers()) do if player.Character then local tag = player.Character:FindFirstChild(TAG_NAME) if tag then tag:Destroy() end end end end local staminaHooked = false local function activateInfStamina() local found = false for _, v in pairs(getgc(true)) do if type(v) == "table" and rawget(v, "StaminaPercentage") and rawget(v, "RegenRate") then task.spawn(function() while v and v.StaminaPercentage do v.StaminaPercentage = 100 task.wait(0.1) end staminaHooked = false end) if v.AttemptChunkBurn then v.AttemptChunkBurn = function() return true end end v.Usable = false found = true staminaHooked = true print("Infinite Stamina: Hooked Successfully!") break end end return found end UserInputService.InputBegan:Connect(function(input, gameProcessed) if not gameProcessed and input.KeyCode == TOGGLE_KEY then enabled = not enabled if not enabled then clearAllESP() print("ESP Disabled") else print("ESP Enabled") end end end) task.spawn(function() while true do if enabled then for _, player in pairs(Players:GetPlayers()) do if player ~= LocalPlayer and player.Character and player.Character:IsDescendantOf(workspace) then createESP(player.Character, player.Name) end end end if not staminaHooked then activateInfStamina() end task.wait(2) end end) end end --------------------------------------------------- -- KEY SYSTEM --------------------------------------------------- Validate.MouseButton1Click:Connect(function() if TextBox.Text == validKey then notify("Success", "Access Granted") TweenService:Create(Frame, TweenInfo.new(0.25), { Size = UDim2.new(0,0,0,0) }):Play() TweenService:Create(blur, TweenInfo.new(0.3), {Size = 0}):Play() task.wait(0.3) Frame.Visible = false RunScript() else notify("Error", "Invalid Key") end end) --------------------------------------------------- -- DISCORD --------------------------------------------------- Discord.MouseButton1Click:Connect(function() if setclipboard then setclipboard(discordLink) end notify("Discord", "Link copied!") end)