Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- gg.alert("Hack điểm Block Blast by Thành Danh 🙄")
- function hackDiem()
- gg.clearResults()
- local diem = gg.prompt({"Nhập điểm hiện tại của bạn:"}, {[1] = 0}, {"number"})
- if diem == nil then return end
- local target = diem[1] * 2
- gg.searchNumber(target, gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
- gg.toast("Tìm xong, mở GG lại để lọc")
- gg.setVisible(false)
- repeat until gg.isVisible(true)
- gg.setVisible(false)
- local diem2 = gg.prompt({"Nhập lại điểm (lần 2):"}, {[1] = 0}, {"number"})
- if diem2 == nil then return end
- local target2 = diem2[1] * 2
- gg.refineNumber(target2, gg.TYPE_DWORD)
- local results = gg.getResults(10)
- if #results == 0 then
- gg.alert("Không tìm được kết quả!")
- return
- end
- for i = 1, #results do
- results[i].value = 20000000
- results[i].freeze = true
- end
- gg.setValues(results)
- gg.addListItems(results)
- gg.toast("✅ Hack xong rồi, đóng băng thành công!")
- gg.setVisible(false) -- Ẩn menu sau khi hack xong
- end
- function thoatScript()
- gg.clearResults()
- gg.removeListItems(gg.getListItems())
- gg.toast("❌ Đã xóa kết quả và thoát script!")
- os.exit()
- end
- while true do
- if gg.isVisible(true) then
- gg.setVisible(false)
- local menu = gg.choice({
- "💥 Hack điểm",
- "❌ Thoát & Xóa kết quả"
- }, nil, "MENU BY THÀNH DANH")
- if menu == 1 then
- hackDiem()
- elseif menu == 2 then
- thoatScript()
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement