Killanotkillz

LALOL HUB IP AND DDOS FINDER/LOGGER

May 31st, 2026
36
0
Never
3
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.59 KB | None | 0 0
  1. --[[
  2. LALOL HUB - Key System Script
  3. For Roblox Executor / Client Side
  4. Creates a GUI with vibrant purple-to-violet-to-pastel green gradient
  5. Validates key: HACKHACKHACKHACKHACK5000505050
  6. Get Key button redirects to: https://clarke-constitute-writes-organizing.trycloudflare.com/
  7. ]]
  8.  
  9. local Players = game:GetService("Players")
  10. local UserInputService = game:GetService("UserInputService")
  11. local TweenService = game:GetService("TweenService")
  12. local HttpService = game:GetService("HttpService")
  13. local ClipboardService = game:GetService("ClipboardService")
  14. local player = Players.LocalPlayer
  15. local playerGui = player:WaitForChild("PlayerGui")
  16.  
  17. -- Configuration
  18. local MASTER_KEY = "HACKHACKHACKHACKHACK5000505050"
  19. local KEY_WEBSITE = "https://clarke-constitute-writes-organizing.trycloudflare.com/"
  20. local SCRIPT_NAME = "LALOL HUB"
  21.  
  22. -- Create main ScreenGui
  23. local screenGui = Instance.new("ScreenGui")
  24. screenGui.Name = "LalolHubKeySystem"
  25. screenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  26. screenGui.ResetOnSpawn = false
  27. playerGui:WaitForChild("ScreenGui"):Destroy() -- Remove existing if any
  28. screenGui.Parent = playerGui
  29.  
  30. -- Main Frame (glassmorphic card)
  31. local mainFrame = Instance.new("Frame")
  32. mainFrame.Name = "MainFrame"
  33. mainFrame.Size = UDim2.new(0, 420, 0, 480)
  34. mainFrame.Position = UDim2.new(0.5, -210, 0.5, -240)
  35. mainFrame.BackgroundColor3 = Color3.fromRGB(12, 10, 25)
  36. mainFrame.BackgroundTransparency = 0.35
  37. mainFrame.BorderSizePixel = 0
  38. mainFrame.ClipsDescendants = true
  39. mainFrame.Parent = screenGui
  40.  
  41. -- Corner rounding
  42. local corner = Instance.new("UICorner")
  43. corner.CornerRadius = UDim.new(0, 32)
  44. corner.Parent = mainFrame
  45.  
  46. -- Glass blur effect (if supported)
  47. local blur = Instance.new("BlurEffect")
  48. blur.Size = 12
  49. blur.Parent = mainFrame
  50.  
  51. local border = Instance.new("UIStroke")
  52. border.Color = Color3.fromRGB(156, 94, 255)
  53. border.Thickness = 1.5
  54. border.Transparency = 0.7
  55. border.Parent = mainFrame
  56.  
  57. -- Shadow
  58. local shadow = Instance.new("UICorner")
  59. shadow.CornerRadius = UDim.new(0, 32)
  60. shadow.Parent = mainFrame
  61.  
  62. -- Gradient overlay for glass shine
  63. local gradient = Instance.new("UIGradient")
  64. gradient.Color = ColorSequence.new({
  65. ColorSequenceKeypoint.new(0, Color3.fromRGB(80, 40, 120)),
  66. ColorSequenceKeypoint.new(1, Color3.fromRGB(30, 20, 50))
  67. })
  68. gradient.Rotation = 45
  69. gradient.Parent = mainFrame
  70.  
  71. -- Logo Label (Vibrant gradient)
  72. local logoLabel = Instance.new("TextLabel")
  73. logoLabel.Name = "LogoLabel"
  74. logoLabel.Size = UDim2.new(1, 0, 0, 70)
  75. logoLabel.Position = UDim2.new(0, 0, 0, 30)
  76. logoLabel.BackgroundTransparency = 1
  77. logoLabel.Text = "LALOL HUB"
  78. logoLabel.TextSize = 42
  79. logoLabel.Font = Enum.Font.GothamBold
  80. logoLabel.TextScaled = false
  81. logoLabel.TextWrapped = true
  82. logoLabel.Parent = mainFrame
  83.  
  84. -- Create rich gradient text using multiple labels technique
  85. local textGradient = Instance.new("UIGradient")
  86. textGradient.Color = ColorSequence.new({
  87. ColorSequenceKeypoint.new(0, Color3.fromRGB(183, 126, 255)), -- purple
  88. ColorSequenceKeypoint.new(0.33, Color3.fromRGB(210, 126, 255)), -- violet
  89. ColorSequenceKeypoint.new(0.66, Color3.fromRGB(110, 255, 178)), -- pastel green
  90. ColorSequenceKeypoint.new(1, Color3.fromRGB(183, 126, 255))
  91. })
  92. textGradient.Rotation = 90
  93. textGradient.Parent = logoLabel
  94.  
  95. -- Add outline to text for better visibility
  96. local textStroke = Instance.new("UIStroke")
  97. textStroke.Color = Color3.fromRGB(0, 0, 0)
  98. textStroke.Thickness = 1.5
  99. textStroke.Transparency = 0.5
  100. textStroke.Parent = logoLabel
  101.  
  102. -- Subtitle
  103. local subLabel = Instance.new("TextLabel")
  104. subLabel.Size = UDim2.new(1, 0, 0, 30)
  105. subLabel.Position = UDim2.new(0, 0, 0, 100)
  106. subLabel.BackgroundTransparency = 1
  107. subLabel.Text = "✦ PREMIUM KEY SYSTEM ✦"
  108. subLabel.TextColor3 = Color3.fromRGB(188, 158, 255)
  109. subLabel.TextSize = 14
  110. subLabel.Font = Enum.Font.Gotham
  111. subLabel.TextTransparency = 0.1
  112. subLabel.Parent = mainFrame
  113.  
  114. -- Key Input Field
  115. local inputFrame = Instance.new("Frame")
  116. inputFrame.Size = UDim2.new(0.8, 0, 0, 55)
  117. inputFrame.Position = UDim2.new(0.1, 0, 0, 160)
  118. inputFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  119. inputFrame.BackgroundTransparency = 0.55
  120. inputFrame.BorderSizePixel = 0
  121. inputFrame.Parent = mainFrame
  122.  
  123. local inputCorner = Instance.new("UICorner")
  124. inputCorner.CornerRadius = UDim.new(1, 0)
  125. inputCorner.Parent = inputFrame
  126.  
  127. local inputBorder = Instance.new("UIStroke")
  128. inputBorder.Color = Color3.fromRGB(107, 75, 158)
  129. inputBorder.Thickness = 1.5
  130. inputBorder.Parent = inputFrame
  131.  
  132. local keyInput = Instance.new("TextBox")
  133. keyInput.Size = UDim2.new(1, -20, 1, 0)
  134. keyInput.Position = UDim2.new(0, 10, 0, 0)
  135. keyInput.BackgroundTransparency = 1
  136. keyInput.PlaceholderText = "Enter license key..."
  137. keyInput.PlaceholderColor3 = Color3.fromRGB(95, 88, 144)
  138. keyInput.Text = ""
  139. keyInput.TextColor3 = Color3.fromRGB(240, 234, 255)
  140. keyInput.TextSize = 16
  141. keyInput.Font = Enum.Font.SourceSans
  142. keyInput.ClearTextOnFocus = false
  143. keyInput.Parent = inputFrame
  144.  
  145. -- Button Container
  146. local buttonContainer = Instance.new("Frame")
  147. buttonContainer.Size = UDim2.new(0.9, 0, 0, 50)
  148. buttonContainer.Position = UDim2.new(0.05, 0, 0, 240)
  149. buttonContainer.BackgroundTransparency = 1
  150. buttonContainer.Parent = mainFrame
  151.  
  152. -- Login Button
  153. local loginBtn = Instance.new("TextButton")
  154. loginBtn.Size = UDim2.new(0.45, -10, 1, 0)
  155. loginBtn.Position = UDim2.new(0, 0, 0, 0)
  156. loginBtn.BackgroundColor3 = Color3.fromRGB(155, 77, 255)
  157. loginBtn.Text = "🔓 LOGIN"
  158. loginBtn.TextColor3 = Color3.fromRGB(255, 255, 255)
  159. loginBtn.TextSize = 16
  160. loginBtn.Font = Enum.Font.GothamBold
  161. loginBtn.BorderSizePixel = 0
  162. loginBtn.Parent = buttonContainer
  163.  
  164. local loginCorner = Instance.new("UICorner")
  165. loginCorner.CornerRadius = UDim.new(1, 0)
  166. loginCorner.Parent = loginBtn
  167.  
  168. local loginShadow = Instance.new("UIStroke")
  169. loginShadow.Color = Color3.fromRGB(98, 37, 179)
  170. loginShadow.Thickness = 0
  171. loginShadow.Parent = loginBtn
  172.  
  173. -- Get Key Button
  174. local getKeyBtn = Instance.new("TextButton")
  175. getKeyBtn.Size = UDim2.new(0.45, -10, 1, 0)
  176. getKeyBtn.Position = UDim2.new(0.55, 0, 0, 0)
  177. getKeyBtn.BackgroundColor3 = Color3.fromRGB(24, 18, 43)
  178. getKeyBtn.Text = "📋 GET KEY"
  179. getKeyBtn.TextColor3 = Color3.fromRGB(228, 213, 255)
  180. getKeyBtn.TextSize = 16
  181. getKeyBtn.Font = Enum.Font.GothamBold
  182. getKeyBtn.BorderSizePixel = 0
  183. getKeyBtn.Parent = buttonContainer
  184.  
  185. local getKeyCorner = Instance.new("UICorner")
  186. getKeyCorner.CornerRadius = UDim.new(1, 0)
  187. getKeyCorner.Parent = getKeyBtn
  188.  
  189. local getKeyBorder = Instance.new("UIStroke")
  190. getKeyBorder.Color = Color3.fromRGB(115, 93, 175)
  191. getKeyBorder.Thickness = 1
  192. getKeyBorder.Parent = getKeyBtn
  193.  
  194. -- Status Label
  195. local statusLabel = Instance.new("TextLabel")
  196. statusLabel.Size = UDim2.new(0.9, 0, 0, 50)
  197. statusLabel.Position = UDim2.new(0.05, 0, 0, 320)
  198. statusLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  199. statusLabel.BackgroundTransparency = 0.5
  200. statusLabel.Text = "⚡ Enter the key from the website to validate the script"
  201. statusLabel.TextColor3 = Color3.fromRGB(203, 191, 255)
  202. statusLabel.TextSize = 12
  203. statusLabel.Font = Enum.Font.Gotham
  204. statusLabel.TextWrapped = true
  205. statusLabel.Parent = mainFrame
  206.  
  207. local statusCorner = Instance.new("UICorner")
  208. statusCorner.CornerRadius = UDim.new(0, 20)
  209. statusCorner.Parent = statusLabel
  210.  
  211. local statusStroke = Instance.new("UIStroke")
  212. statusStroke.Color = Color3.fromRGB(170, 110, 255)
  213. statusStroke.Thickness = 1.5
  214. statusStroke.Parent = statusLabel
  215.  
  216. -- Hint Label
  217. local hintLabel = Instance.new("TextLabel")
  218. hintLabel.Size = UDim2.new(1, 0, 0, 30)
  219. hintLabel.Position = UDim2.new(0, 0, 0, 400)
  220. hintLabel.BackgroundTransparency = 1
  221. hintLabel.Text = "• Key hint: HACKHACKHACKHACKHACK5000505050 •"
  222. hintLabel.TextColor3 = Color3.fromRGB(104, 93, 152)
  223. hintLabel.TextSize = 11
  224. hintLabel.Font = Enum.Font.Gotham
  225. hintLabel.Parent = mainFrame
  226.  
  227. -- Animation functions
  228. local function tweenColor(object, color, duration)
  229. local tween = TweenService:Create(object, TweenInfo.new(duration, Enum.EasingStyle.Quad), {BackgroundColor3 = color})
  230. tween:Play()
  231. end
  232.  
  233. local function setStatus(message, isError)
  234. statusLabel.Text = message
  235. if isError then
  236. statusStroke.Color = Color3.fromRGB(255, 122, 122)
  237. statusLabel.TextColor3 = Color3.fromRGB(255, 188, 188)
  238. else
  239. statusStroke.Color = Color3.fromRGB(163, 255, 178)
  240. statusLabel.TextColor3 = Color3.fromRGB(206, 255, 207)
  241. end
  242. -- Reset after 3 seconds
  243. task.wait(3)
  244. if not isError then
  245. statusStroke.Color = Color3.fromRGB(170, 110, 255)
  246. statusLabel.TextColor3 = Color3.fromRGB(203, 191, 255)
  247. end
  248. end
  249.  
  250. -- Validation function
  251. local function validateKey(inputKey)
  252. return inputKey == MASTER_KEY
  253. end
  254.  
  255. -- Success handler
  256. local function onScriptValidated()
  257. setStatus("✅ VALIDATED! LALOL HUB script unlocked. Welcome, enjoy the hack suite! ✅", false)
  258. inputBorder.Color = Color3.fromRGB(110, 255, 146)
  259.  
  260. -- Create success badge
  261. local badge = Instance.new("TextLabel")
  262. badge.Size = UDim2.new(0, 140, 0, 28)
  263. badge.Position = UDim2.new(1, -150, 0, 10)
  264. badge.BackgroundColor3 = Color3.fromRGB(46, 255, 168)
  265. badge.BackgroundTransparency = 0.15
  266. badge.Text = "⚡ SCRIPT VALIDATED ⚡"
  267. badge.TextColor3 = Color3.fromRGB(15, 27, 10)
  268. badge.TextSize = 11
  269. badge.Font = Enum.Font.GothamBold
  270. badge.BorderSizePixel = 0
  271. badge.Parent = mainFrame
  272.  
  273. local badgeCorner = Instance.new("UICorner")
  274. badgeCorner.CornerRadius = UDim.new(1, 0)
  275. badgeCorner.Parent = badge
  276.  
  277. local badgeStroke = Instance.new("UIStroke")
  278. badgeStroke.Color = Color3.fromRGB(179, 255, 207)
  279. badgeStroke.Thickness = 1
  280. badgeStroke.Parent = badge
  281.  
  282. -- Remove badge after 5 seconds
  283. task.wait(5)
  284. badge:Destroy()
  285.  
  286. print("[LALOL HUB] Script validated successfully!")
  287. print("[LALOL HUB] Key system bypassed | Full access granted")
  288. end
  289.  
  290. -- Login logic
  291. local function handleLogin()
  292. local enteredKey = keyInput.Text
  293. if enteredKey == "" then
  294. setStatus("⚠️ Please enter a key before validation.", true)
  295. return
  296. end
  297.  
  298. if validateKey(enteredKey) then
  299. onScriptValidated()
  300. keyInput.Text = ""
  301. else
  302. setStatus("❌ INVALID KEY! Access denied. Please obtain the correct key from the key website. ❌", true)
  303. inputBorder.Color = Color3.fromRGB(255, 123, 123)
  304. task.wait(1)
  305. inputBorder.Color = Color3.fromRGB(107, 75, 158)
  306. end
  307. end
  308.  
  309. -- Get Key logic (opens website)
  310. local function handleGetKey()
  311. setStatus("🔗 Opening key portal...", false)
  312. -- Open the website (works in supported executors)
  313. -- Using HttpService to open URL (most executors support this)
  314. local success, err = pcall(function()
  315. -- Different executors have different methods
  316. if syn and syn.request then
  317. syn.request({
  318. Url = KEY_WEBSITE,
  319. Method = "GET"
  320. })
  321. elseif request then
  322. request({
  323. Url = KEY_WEBSITE,
  324. Method = "GET"
  325. })
  326. end
  327.  
  328. -- Attempt to open in browser
  329. if setclipboard then
  330. setclipboard(MASTER_KEY)
  331. setStatus("📋 Key copied to clipboard! Paste it above.", false)
  332. end
  333. end)
  334.  
  335. -- Show key hint in status as fallback
  336. task.wait(0.5)
  337. setStatus("💡 The key is: HACKHACKHACKHACKHACK5000505050 (copy from website)", false)
  338. end
  339.  
  340. -- Hover animations
  341. loginBtn.MouseEnter:Connect(function()
  342. tweenColor(loginBtn, Color3.fromRGB(170, 96, 255), 0.2)
  343. end)
  344.  
  345. loginBtn.MouseLeave:Connect(function()
  346. tweenColor(loginBtn, Color3.fromRGB(155, 77, 255), 0.2)
  347. end)
  348.  
  349. getKeyBtn.MouseEnter:Connect(function()
  350. tweenColor(getKeyBtn, Color3.fromRGB(40, 32, 66), 0.2)
  351. end)
  352.  
  353. getKeyBtn.MouseLeave:Connect(function()
  354. tweenColor(getKeyBtn, Color3.fromRGB(24, 18, 43), 0.2)
  355. end)
  356.  
  357. -- Button click events
  358. loginBtn.MouseButton1Click:Connect(handleLogin)
  359. getKeyBtn.MouseButton1Click:Connect(handleGetKey)
  360.  
  361. -- Enter key support
  362. keyInput.FocusLost:Connect(function(enterPressed)
  363. if enterPressed then
  364. handleLogin()
  365. end
  366. end)
  367.  
  368. -- Drag functionality
  369. local dragging = false
  370. local dragInput, dragStart, startPos
  371.  
  372. mainFrame.InputBegan:Connect(function(input)
  373. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  374. dragging = true
  375. dragStart = input.Position
  376. startPos = mainFrame.Position
  377.  
  378. input.Changed:Connect(function()
  379. if input.UserInputState == Enum.UserInputState.End then
  380. dragging = false
  381. end
  382. end)
  383. end
  384. end)
  385.  
  386. mainFrame.InputChanged:Connect(function(input)
  387. if input.UserInputType == Enum.UserInputType.MouseMovement and dragging then
  388. local delta = input.Position - dragStart
  389. mainFrame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  390. end
  391. end)
  392.  
  393. -- Animate gradient rotation
  394. local angle = 0
  395. task.spawn(function()
  396. while true do
  397. angle = angle + 0.5
  398. textGradient.Rotation = angle
  399. task.wait(0.05)
  400. end
  401. end)
  402.  
  403. -- Play entrance animation
  404. mainFrame.BackgroundTransparency = 1
  405. mainFrame.Size = UDim2.new(0, 400, 0, 400)
  406. for i = 1, 10 do
  407. mainFrame.BackgroundTransparency = math.max(0, mainFrame.BackgroundTransparency - 0.035)
  408. mainFrame.Size = mainFrame.Size + UDim2.new(0, 2, 0, 8)
  409. task.wait()
  410. end
  411. mainFrame.BackgroundTransparency = 0.35
  412. mainFrame.Size = UDim2.new(0, 420, 0, 480)
  413.  
  414. print("[LALOL HUB] Key system loaded. Waiting for validation...")
Advertisement
Comments
  • User was banned
  • User was banned
  • giachini
    1 day
    # CSS 0.83 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://drive.google.com/file/d/1cvQPOZ7JecI0L6lqdIzIHJbHQBiDRT4U/view?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from SimpleSwap — instant swap).
Add Comment
Please, Sign In to add comment