local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local Lighting = game:GetService("Lighting") local player = Players.LocalPlayer local blur = Instance.new("BlurEffect") blur.Size = 0 blur.Parent = Lighting TweenService:Create(blur, TweenInfo.new(0.4), {Size = 18}):Play() local ScreenGui = Instance.new("ScreenGui") ScreenGui.Parent = player:WaitForChild("PlayerGui") 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) 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 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 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) 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) 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) local validKey = "25042026ROBLOXKEYBYFULL" local discordLink = "https://discord.gg/P8ADjxBUVp" local function notify(t, txt) game.StarterGui:SetCore("SendNotification", { Title = t, Text = txt, Duration = 3 }) end 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)) 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() local function RunScript() print("full's fast key steps loaded") game.StarterGui:SetCore("SendNotification", { Title = "Success", Text = "Script activated!", Duration = 5 }) loadstring(game:HttpGet("https://raw.githubusercontent.com/syznq/roblox-stuff/refs/heads/main/621129760.lua"))() end 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.MouseButton1Click:Connect(function() if setclipboard then setclipboard(discordLink) end notify("Discord", "Link copied!") end)