Guest User

WALLHOP SCRIPT OP! LEGIT V2

a guest
May 1st, 2025
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. --// Key System for Wallhop V2 By Luffy
  2.  
  3. local Players = game:GetService("Players")
  4. local player = Players.LocalPlayer
  5. local HttpService = game:GetService("HttpService")
  6. local validKeys = {
  7. "FREE_1728", "FREE_2391", "FREE_3017", "FREE_4095", "FREE_5230",
  8. "FREE_6549", "FREE_7021", "FREE_8342", "FREE_9653", "FREE_1093"
  9. }
  10.  
  11. local screenGui = Instance.new("ScreenGui")
  12. screenGui.Name = "KeySystemUI"
  13. screenGui.ResetOnSpawn = false
  14. screenGui.Parent = player:WaitForChild("PlayerGui")
  15.  
  16. local keyFrame = Instance.new("Frame")
  17. keyFrame.Size = UDim2.new(0, 300, 0, 180)
  18. keyFrame.Position = UDim2.new(0.5, -150, 0.5, -90)
  19. keyFrame.BackgroundColor3 = Color3.fromRGB(10, 10, 25)
  20. keyFrame.BorderSizePixel = 0
  21. keyFrame.Parent = screenGui
  22. keyFrame.Active = true
  23. keyFrame.Draggable = true
  24.  
  25. Instance.new("UICorner", keyFrame)
  26.  
  27. local stroke = Instance.new("UIStroke", keyFrame)
  28. stroke.Thickness = 2
  29. stroke.Color = Color3.fromRGB(0, 255, 255)
  30.  
  31. local title = Instance.new("TextLabel")
  32. title.Size = UDim2.new(1, 0, 0, 40)
  33. title.Position = UDim2.new(0, 0, 0, 0)
  34. title.Text = "Enter Key to Continue"
  35. title.TextColor3 = Color3.fromRGB(0, 255, 255)
  36. title.Font = Enum.Font.GothamBold
  37. title.TextScaled = true
  38. title.BackgroundTransparency = 1
  39. title.Parent = keyFrame
  40.  
  41. local textBox = Instance.new("TextBox")
  42. textBox.Size = UDim2.new(0, 260, 0, 40)
  43. textBox.Position = UDim2.new(0.5, -130, 0.4, 0)
  44. textBox.PlaceholderText = "Enter your key"
  45. textBox.Text = ""
  46. textBox.Font = Enum.Font.Gotham
  47. textBox.TextScaled = true
  48. textBox.BackgroundColor3 = Color3.fromRGB(20, 20, 40)
  49. textBox.TextColor3 = Color3.fromRGB(255, 255, 255)
  50. textBox.Parent = keyFrame
  51.  
  52. Instance.new("UICorner", textBox)
  53.  
  54. local confirm = Instance.new("TextButton")
  55. confirm.Size = UDim2.new(0, 260, 0, 40)
  56. confirm.Position = UDim2.new(0.5, -130, 0.75, 0)
  57. confirm.Text = "Submit Key"
  58. confirm.Font = Enum.Font.GothamBold
  59. confirm.TextScaled = true
  60. confirm.BackgroundColor3 = Color3.fromRGB(0, 100, 100)
  61. confirm.TextColor3 = Color3.fromRGB(255, 255, 255)
  62. confirm.Parent = keyFrame
  63.  
  64. Instance.new("UICorner", confirm)
  65.  
  66. local function isValidKey(inputKey)
  67. for _, k in ipairs(validKeys) do
  68. if k == inputKey then
  69. return true
  70. end
  71. end
  72. return false
  73. end
  74.  
  75. confirm.MouseButton1Click:Connect(function()
  76. local key = textBox.Text
  77. if isValidKey(key) then
  78. keyFrame:Destroy()
  79. screenGui:Destroy()
  80. loadstring(game:HttpGet("https://pastebin.com/raw/0a2zCEnG"))() -- replace with your Wallhop V2 By Luffy script URL
  81. else
  82. title.Text = "Invalid Key! Try Again"
  83. title.TextColor3 = Color3.fromRGB(255, 0, 0)
  84. end
  85. end)
  86.  
Advertisement
Add Comment
Please, Sign In to add comment