Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --// Key System for Wallhop V2 By Luffy
- local Players = game:GetService("Players")
- local player = Players.LocalPlayer
- local HttpService = game:GetService("HttpService")
- local validKeys = {
- "FREE_1728", "FREE_2391", "FREE_3017", "FREE_4095", "FREE_5230",
- "FREE_6549", "FREE_7021", "FREE_8342", "FREE_9653", "FREE_1093"
- }
- local screenGui = Instance.new("ScreenGui")
- screenGui.Name = "KeySystemUI"
- screenGui.ResetOnSpawn = false
- screenGui.Parent = player:WaitForChild("PlayerGui")
- local keyFrame = Instance.new("Frame")
- keyFrame.Size = UDim2.new(0, 300, 0, 180)
- keyFrame.Position = UDim2.new(0.5, -150, 0.5, -90)
- keyFrame.BackgroundColor3 = Color3.fromRGB(10, 10, 25)
- keyFrame.BorderSizePixel = 0
- keyFrame.Parent = screenGui
- keyFrame.Active = true
- keyFrame.Draggable = true
- Instance.new("UICorner", keyFrame)
- local stroke = Instance.new("UIStroke", keyFrame)
- stroke.Thickness = 2
- stroke.Color = Color3.fromRGB(0, 255, 255)
- local title = Instance.new("TextLabel")
- title.Size = UDim2.new(1, 0, 0, 40)
- title.Position = UDim2.new(0, 0, 0, 0)
- title.Text = "Enter Key to Continue"
- title.TextColor3 = Color3.fromRGB(0, 255, 255)
- title.Font = Enum.Font.GothamBold
- title.TextScaled = true
- title.BackgroundTransparency = 1
- title.Parent = keyFrame
- local textBox = Instance.new("TextBox")
- textBox.Size = UDim2.new(0, 260, 0, 40)
- textBox.Position = UDim2.new(0.5, -130, 0.4, 0)
- textBox.PlaceholderText = "Enter your key"
- textBox.Text = ""
- textBox.Font = Enum.Font.Gotham
- textBox.TextScaled = true
- textBox.BackgroundColor3 = Color3.fromRGB(20, 20, 40)
- textBox.TextColor3 = Color3.fromRGB(255, 255, 255)
- textBox.Parent = keyFrame
- Instance.new("UICorner", textBox)
- local confirm = Instance.new("TextButton")
- confirm.Size = UDim2.new(0, 260, 0, 40)
- confirm.Position = UDim2.new(0.5, -130, 0.75, 0)
- confirm.Text = "Submit Key"
- confirm.Font = Enum.Font.GothamBold
- confirm.TextScaled = true
- confirm.BackgroundColor3 = Color3.fromRGB(0, 100, 100)
- confirm.TextColor3 = Color3.fromRGB(255, 255, 255)
- confirm.Parent = keyFrame
- Instance.new("UICorner", confirm)
- local function isValidKey(inputKey)
- for _, k in ipairs(validKeys) do
- if k == inputKey then
- return true
- end
- end
- return false
- end
- confirm.MouseButton1Click:Connect(function()
- local key = textBox.Text
- if isValidKey(key) then
- keyFrame:Destroy()
- screenGui:Destroy()
- loadstring(game:HttpGet("https://pastebin.com/raw/0a2zCEnG"))() -- replace with your Wallhop V2 By Luffy script URL
- else
- title.Text = "Invalid Key! Try Again"
- title.TextColor3 = Color3.fromRGB(255, 0, 0)
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment