1local Players = game:GetService("Players")2local TweenService = game:GetService("TweenService")3local Lighting = game:GetService("Lighting")45local player = Players.LocalPlayer678local blur = Instance.new("BlurEffect")9blur.Size = 010blur.Parent = Lighting11TweenService:Create(blur, TweenInfo.new(0.4), {Size = 18}):Play()121314local ScreenGui = Instance.new("ScreenGui")15ScreenGui.Parent = player:WaitForChild("PlayerGui")161718local Frame = Instance.new("Frame", ScreenGui)19Frame.Size = UDim2.new(0, 380, 0, 240)20Frame.Position = UDim2.new(0.5, -190, 0.5, -120)21Frame.BackgroundColor3 = Color3.fromRGB(18,18,22)22Frame.BorderSizePixel = 02324Instance.new("UICorner", Frame).CornerRadius = UDim.new(0, 14)252627local Title = Instance.new("TextLabel", Frame)28Title.Size = UDim2.new(1,0,0,50)29Title.Text = "full's fast key steps"30Title.TextColor3 = Color3.fromRGB(255,255,255)31Title.Font = Enum.Font.GothamBold32Title.TextSize = 2233Title.BackgroundTransparency = 1343536local Sub = Instance.new("TextLabel", Frame)37Sub.Size = UDim2.new(1,0,0,20)38Sub.Position = UDim2.new(0,0,0,40)39Sub.Text = "Unlock access with your key"40Sub.TextColor3 = Color3.fromRGB(140,140,140)41Sub.Font = Enum.Font.Gotham42Sub.TextSize = 1443Sub.BackgroundTransparency = 1444546local TextBox = Instance.new("TextBox", Frame)47TextBox.Size = UDim2.new(0.85, 0, 0, 42)48TextBox.Position = UDim2.new(0.075, 0, 0.35, 0)49TextBox.PlaceholderText = "Enter key..."50TextBox.Text = ""51TextBox.BackgroundColor3 = Color3.fromRGB(28,28,34)52TextBox.TextColor3 = Color3.fromRGB(255,255,255)53TextBox.Font = Enum.Font.Gotham54TextBox.TextSize = 165556Instance.new("UICorner", TextBox).CornerRadius = UDim.new(0, 10)575859local Validate = Instance.new("TextButton", Frame)60Validate.Size = UDim2.new(0.85, 0, 0, 42)61Validate.Position = UDim2.new(0.075, 0, 0.58, 0)62Validate.Text = "Unlock"63Validate.BackgroundColor3 = Color3.fromRGB(0, 170, 255)64Validate.TextColor3 = Color3.new(1,1,1)65Validate.Font = Enum.Font.GothamBold66Validate.TextSize = 166768Instance.new("UICorner", Validate).CornerRadius = UDim.new(0, 10)697071local Discord = Instance.new("TextButton", Frame)72Discord.Size = UDim2.new(0.85, 0, 0, 32)73Discord.Position = UDim2.new(0.075, 0, 0.8, 0)74Discord.Text = "Join our Discord"75Discord.BackgroundColor3 = Color3.fromRGB(40,40,50)76Discord.TextColor3 = Color3.fromRGB(200,200,200)77Discord.Font = Enum.Font.Gotham78Discord.TextSize = 147980Instance.new("UICorner", Discord).CornerRadius = UDim.new(0, 10)818283local validKey = "25042026ROBLOXKEYBYFULL"84local discordLink = "https://discord.gg/P8ADjxBUVp"858687local function notify(t, txt)88 game.StarterGui:SetCore("SendNotification", {89 Title = t,90 Text = txt,91 Duration = 392 })93end949596local function hover(btn, color)97 btn.MouseEnter:Connect(function()98 TweenService:Create(btn, TweenInfo.new(0.15), {BackgroundColor3 = color}):Play()99 end)100 btn.MouseLeave:Connect(function()101 TweenService:Create(btn, TweenInfo.new(0.15), {BackgroundColor3 = btn.BackgroundColor3}):Play()102 end)103end104105hover(Validate, Color3.fromRGB(0,200,255))106hover(Discord, Color3.fromRGB(60,60,70))107108109Frame.Size = UDim2.new(0,0,0,0)110TweenService:Create(Frame, TweenInfo.new(0.35, Enum.EasingStyle.Back), {111 Size = UDim2.new(0, 380, 0, 240)112}):Play()113114115116117local function RunScript()118119 print("full's fast key steps loaded")120121 game.StarterGui:SetCore("SendNotification", {122 Title = "Success",123 Text = "Script activated!",124 Duration = 5125 })126127 loadstring(game:HttpGet("https://pastebin.com/raw/PT0ZrYE4", true))()128129end130131132133134Validate.MouseButton1Click:Connect(function()135 if TextBox.Text == validKey then136 137 notify("Success", "Access Granted")138139 TweenService:Create(Frame, TweenInfo.new(0.25), {140 Size = UDim2.new(0,0,0,0)141 }):Play()142143 TweenService:Create(blur, TweenInfo.new(0.3), {Size = 0}):Play()144145 task.wait(0.3)146 Frame.Visible = false147 148 RunScript()149 else150 notify("Error", "Invalid Key")151 end152end)153154155156157Discord.MouseButton1Click:Connect(function()158 if setclipboard then159 setclipboard(discordLink)160 end161162 notify("Discord", "Link copied!")163end)
Comments · …
Loading comments…