Advertisement
Tectoon

[TFM] Pulo Fly

Sep 25th, 2015
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.31 KB | None | 0 0
  1. for n in pairs(tfm.get.room.playerList) do
  2.         for keys, k in pairs({32}) do
  3.                 tfm.exec.bindKeyboard(n, k, true, true)
  4.         end
  5. end
  6.  
  7.  
  8. function eventKeyboard(n, key, down, x, y)
  9.         if key == 32 then
  10.                 tfm.exec.movePlayer(n, 0, 0, true, 0, 500, false)
  11.         end
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement