Advertisement
Guest User

Roblox Auto Piano Player Script [ By Why ]

a guest
Jun 11th, 2020
86,812
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 1 0
  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,, F To Play Piano Music
  6. Gui, Add, Text,,
  7. Gui, Add, Text,, Edited by CorruptedWhy { Why }
  8. Gui, Show
  9. F::
  10. !F::
  11. Gui, Submit, Nohide
  12. PianoMusic := RegExReplace(PianoMusic, "`n|`r|/") ; Remove Stuff
  13. X := 1
  14. while (X:=RegExMatch(PianoMusic, "U)(\[.*]|.)",Keys, X))
  15. {
  16. X+=StrLen(Keys)
  17. Keys := Trim(Keys, "[]")
  18. SendInput % Keys
  19. Sleep, %KeyDelay%
  20. }
  21. return
  22.  
  23.  
  24.  
  25. return
  26.  
  27. GuiClose:
  28. ExitApp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement