Advertisement
testhk

(ROBLOX) Fly

Nov 23rd, 2015
2,028
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.69 KB | None | 0 0
  1. Script:
  2. function scanAob(array)
  3. result = nil
  4. scan = createMemScan(true)
  5.  
  6. memscan_returnOnlyOneResult(scan, true)
  7. memscan_firstScan(scan, soExactValue, vtByteArray, rtTruncated, array, nil, 0x00000000, 0xFFFFFFFF, "*W", fsmNotAligned, nil, true, false, false, false)
  8. memscan_waitTillDone(scan)
  9.  
  10. result = memscan_getOnlyResult(scan)
  11. result = string.format("%x", result)
  12. result = ("0"):rep(8-#result) .. result
  13. end
  14.  
  15. print("Initiating...")
  16. fly = scanAob("00 00 00 00 01 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 22")
  17. print("Done.")
  18.  
  19. function setFlyOn()
  20. for i = 1,2 do
  21. writeBytes(result, 00, 00, 01)
  22. sleep(10)
  23. writeBytes(result, 00, 00, 00)
  24. end
  25. end
  26.  
  27. createHotkey(setFlyOn, VK_SPACE)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement