Advertisement
TDanh

ĐIỂM

Jul 8th, 2025 (edited)
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.64 KB | None | 0 0
  1. gg.alert("Hack điểm Block Blast by Thành Danh 🙄")
  2.  
  3. function hackDiem()
  4.     gg.clearResults()
  5.     local diem = gg.prompt({"Nhập điểm hiện tại của bạn:"}, {[1] = 0}, {"number"})
  6.     if diem == nil then return end
  7.  
  8.     local target = diem[1] * 2
  9.     gg.searchNumber(target, gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
  10.     gg.toast("Tìm xong, mở GG lại để lọc")
  11.  
  12.     gg.setVisible(false)
  13.     repeat until gg.isVisible(true)
  14.  
  15.     gg.setVisible(false)
  16.     local diem2 = gg.prompt({"Nhập lại điểm (lần 2):"}, {[1] = 0}, {"number"})
  17.     if diem2 == nil then return end
  18.  
  19.     local target2 = diem2[1] * 2
  20.     gg.refineNumber(target2, gg.TYPE_DWORD)
  21.  
  22.     local results = gg.getResults(10)
  23.     if #results == 0 then
  24.         gg.alert("Không tìm được kết quả!")
  25.         return
  26.     end
  27.  
  28.     for i = 1, #results do
  29.         results[i].value = 20000000
  30.         results[i].freeze = true
  31.     end
  32.     gg.setValues(results)
  33.     gg.addListItems(results)
  34.     gg.toast("✅ Hack xong rồi, đóng băng thành công!")
  35.  
  36.     gg.setVisible(false) -- Ẩn menu sau khi hack xong
  37. end
  38.  
  39. function thoatScript()
  40.     gg.clearResults()
  41.     gg.removeListItems(gg.getListItems())
  42.     gg.toast("❌ Đã xóa kết quả và thoát script!")
  43.     os.exit()
  44. end
  45.  
  46. while true do
  47.     if gg.isVisible(true) then
  48.         gg.setVisible(false)
  49.         local menu = gg.choice({
  50.             "💥 Hack điểm",
  51.             "❌ Thoát & Xóa kết quả"
  52.        }, nil, "MENU BY THÀNH DANH")
  53.  
  54.        if menu == 1 then
  55.            hackDiem()
  56.        elseif menu == 2 then
  57.            thoatScript()
  58.        end
  59.    end
  60. end
Tags: block
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement