Advertisement
Guest User

[AUTOHOTKEY] Roblox Auto piano player script

a guest
Sep 29th, 2017
33,578
-1
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 1
  1. Gui, Add, Text,, ------------------------------------------Key Delay------------------------------------------
  2. Gui, Add, Edit, w300 vKeyDelay, 100
  3. Gui, Add, Text,, ----------------------------------------Piano Music-----------------------------------------
  4. Gui, Add, Edit, R10 w300 vPianoMusic
  5. Gui, Add, Text,, -------------------------------F5 To Play Piano Music-------------------------------
  6. Gui, Add, Text,, ----------------------------Made by Rasv on V3rmillion----------------------------
  7. Gui, Show
  8. F5::
  9. !F5::
  10. Gui, Submit, Nohide
  11. SetKeyDelay, %KeyDelay%
  12. PianoMusic := StrReplace(PianoMusic, "`n") ; Remove linefeeds
  13. PianoMusic := StrReplace(PianoMusic, "`r") ; Remove carriage returns
  14. PianoMusic := StrReplace(PianoMusic, "/") ; Remove Ingame Chat
  15. Send, %PianoMusic%
  16. return
  17. GuiClose:
  18. ExitApp
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement