Advertisement
Sarah67853

Untitled

Mar 15th, 2017
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. Player = game.Players.LocalPlayer
  3. c = Player.Character
  4. mouse = Player:GetMouse()
  5.  
  6. c.Humanoid.MaxHealth = math.huge
  7. c.Humanoid.Health = math.huge
  8.  
  9.  
  10. wait(1.5)
  11. game:GetService("Chat"):Chat(c, "Left Click To End ANY Song, All Keyboard Keys Have A Song Except for W,A,S,D,I, and O")
  12. wait(8)
  13. game:GetService("Chat"):Chat(c, "[ And ] Control Volume. - And = Control Pitch")
  14. wait(8)
  15. game:GetService("Chat"):Chat(c, "KeyBind Music Player, By Siarius [V1.20]")
  16.  
  17. s = Instance.new("Sound", c.Head)
  18. s.Looped = true
  19. s.Volume = 1
  20.  
  21. mouse.Button1Down:connect(function()
  22. game:GetService("Chat"):Chat(c, "Stopped : "..s.Name)
  23. s:Stop()
  24. end)
  25.  
  26. mouse.KeyDown:connect(function(key)
  27. if key == "[" then
  28. s.Volume = s.Volume -.1
  29. game:GetService("Chat"):Chat(c, "Volume Is Now : "..s.Volume)
  30. end
  31. end)
  32.  
  33. mouse.KeyDown:connect(function(key)
  34. if key == "]" then
  35. s.Volume = s.Volume +.1
  36. game:GetService("Chat"):Chat(c, "Volume Is Now : "..s.Volume)
  37. end
  38. end)
  39.  
  40. mouse.KeyDown:connect(function(key)
  41. if key == "-" then
  42. s.Pitch = s.Pitch -.1
  43. game:GetService("Chat"):Chat(c, "Pitch Is Now : "..s.Pitch)
  44. end
  45. end)
  46.  
  47. mouse.KeyDown:connect(function(key)
  48. if key == "=" then
  49. s.Pitch = s.Pitch +.1
  50. game:GetService("Chat"):Chat(c, "Pitch Is Now : "..s.Pitch)
  51. end
  52. end)
  53.  
  54. ---Start of Looking For The Bae---
  55. mouse.KeyDown:connect(function(key)
  56. print("Key Pressed : "..key)
  57. if key == "q" then
  58. game:GetService("Chat"):Chat(c, "Now Playing : Looking For The Bae")
  59. s.SoundId = "rbxassetid://218017268"
  60. s.Name = "Looking For The Bae"
  61. s:Play()
  62. end
  63. end)
  64. ---End of Looking For The Bae---
  65.  
  66. ---Start of Demons---
  67. mouse.KeyDown:connect(function(key)
  68. if key == "e" then
  69. game:GetService("Chat"):Chat(c, "Now Playing : Demons")
  70. s.SoundId = "rbxassetid://225115335"
  71. s.Name = "Demons"
  72. s:Play()
  73. end
  74. end)
  75. ---End of Demons---
  76.  
  77. ---Start of Uptown Funk---
  78. mouse.KeyDown:connect(function(key)
  79. if key == "r" then
  80. game:GetService("Chat"):Chat(c, "Now Playing : Uptown Funk")
  81. s.SoundId = "rbxassetid://235468324"
  82. s.Name = "Uptown Funk"
  83. s:Play()
  84. end
  85. end)
  86. ---End of Uptown Funk---
  87.  
  88. ---Start of Harlem Shake---
  89. mouse.KeyDown:connect(function(key)
  90. if key == "y" then
  91. game:GetService("Chat"):Chat(c, "Now Playing : Harlem Shake")
  92. s.SoundId = "rbxassetid://142313816"
  93. s.Name = "Harlem Shake"
  94. s:Play()
  95. end
  96. end)
  97. ---End of Harlem Shake---
  98.  
  99. ---Start of See You Again---
  100. mouse.KeyDown:connect(function(key)
  101. if key == "u" then
  102. game:GetService("Chat"):Chat(c, "Now Playing : See You Again")
  103. s.SoundId = "rbxassetid://235855135"
  104. s.Name = "See You Again"
  105. s:Play()
  106. end
  107. end)
  108. ---End of See You Again---
  109.  
  110. ---Start of Hello---
  111. mouse.KeyDown:connect(function(key)
  112. if key == "g" then
  113. game:GetService("Chat"):Chat(c, "Now Playing : Hello")
  114. s.SoundId = "rbxassetid://214902446"
  115. s.Name = "Hello"
  116. s:Play()
  117. end
  118. end)
  119. ---End of Hello---
  120.  
  121. ---Start of I'm A 3.0---
  122. mouse.KeyDown:connect(function(key)
  123. if key == "t" then
  124. game:GetService("Chat"):Chat(c, "Now Playing : I'm A 3.0")
  125. s.SoundId = "rbxassetid://218530627"
  126. s.Name = "I'm A 3.0"
  127. s:Play()
  128. end
  129. end)
  130. ---End of I'm A 3.0---
  131.  
  132. ---Start of Watch Me---
  133. mouse.KeyDown:connect(function(key)
  134. if key == "z" then
  135. game:GetService("Chat"):Chat(c, "Now Playing : Watch Me")
  136. s.SoundId = "rbxassetid://215733323"
  137. s.Name = "Watch Me"
  138. s:Play()
  139. end
  140. end)
  141. ---End of Watch Me---
  142.  
  143. ---Start of It's Time To Die---
  144. mouse.KeyDown:connect(function(key)
  145. if key == "x" then
  146. game:GetService("Chat"):Chat(c, "Now Playing : It's Time To Die")
  147. s.SoundId = "rbxassetid://223871924"
  148. s.Name = "It's Time To Die"
  149. s:Play()
  150. end
  151. end)
  152. ---End of It's Time To Die---
  153.  
  154. ---Start of It's Turn Down For What---
  155. mouse.KeyDown:connect(function(key)
  156. if key == "f" then
  157. game:GetService("Chat"):Chat(c, "Now Playing : Turn Down For What")
  158. s.SoundId = "rbxassetid://143959455"
  159. s.Name = "Turn Down For What"
  160. s:Play()
  161. end
  162. end)
  163. ---End of It's Turn Down For What---
  164.  
  165. ---Start of It's Throw Sum Mo---
  166. mouse.KeyDown:connect(function(key)
  167. if key == "c" then
  168. game:GetService("Chat"):Chat(c, "Now Playing : Throw Sum Mo")
  169. s.SoundId = "rbxassetid://209096212"
  170. s.Name = "Throw Sum Mo"
  171. s:Play()
  172. end
  173. end)
  174. ---End of It's Throw Sum Mo---
  175.  
  176. ---Start of It's Dum Dee Dum---
  177. mouse.KeyDown:connect(function(key)
  178. if key == "v" then
  179. game:GetService("Chat"):Chat(c, "Now Playing : Dum Dee Dum")
  180. s.SoundId = "rbxassetid://151663136"
  181. s.Name = "Dum Dee Dum"
  182. s:Play()
  183. end
  184. end)
  185. ---End of It's Dum Dee Dum---
  186.  
  187. ---Start of It's Freaks---
  188. mouse.KeyDown:connect(function(key)
  189. if key == "b" then
  190. game:GetService("Chat"):Chat(c, "Now Playing : Freaks")
  191. s.SoundId = "rbxassetid://234695144"
  192. s.Name = "Freaks"
  193. s:Play()
  194. end
  195. end)
  196. ---End of It's Freaks---
  197.  
  198. ---Start of It's Love Me Like You Do---
  199. mouse.KeyDown:connect(function(key)
  200. if key == "n" then
  201. game:GetService("Chat"):Chat(c, "Now Playing : Love Me Like You Do")
  202. s.SoundId = "rbxassetid://216767137"
  203. s.Name = "Love Me Like You Do"
  204. s:Play()
  205. end
  206. end)
  207. ---End of It's Love Me Like You Do---
  208.  
  209. ---Start of It's Mmm Yeah Yeah---
  210. mouse.KeyDown:connect(function(key)
  211. if key == "m" then
  212. game:GetService("Chat"):Chat(c, "Now Playing : Mmm Yeah Yeah")
  213. s.SoundId = "rbxassetid://149811427"
  214. s.Name = "Mmm Yeah Yeah"
  215. s:Play()
  216. end
  217. end)
  218. ---End of Mmm Yeah Yeah---
  219.  
  220. ---Start of Warriors---
  221. mouse.KeyDown:connect(function(key)
  222. if key == "h" then
  223. game:GetService("Chat"):Chat(c, "Now Playing : Warriors")
  224. s.SoundId = "rbxassetid://194232694"
  225. s.Name = "Warriors"
  226. s:Play()
  227. end
  228. end)
  229. ---End of Warriors---
  230.  
  231. ---Start of No Flex Zone---
  232. mouse.KeyDown:connect(function(key)
  233. if key == "j" then
  234. game:GetService("Chat"):Chat(c, "Now Playing : No Flex Zone")
  235. s.SoundId = "rbxassetid://166886402"
  236. s.Name = "No Flex Zone"
  237. s:Play()
  238. end
  239. end)
  240. ---End of No Flex Zone---
  241.  
  242. ---Start of Centuries---
  243. mouse.KeyDown:connect(function(key)
  244. if key == "k" then
  245. game:GetService("Chat"):Chat(c, "Now Playing : Centuries")
  246. s.SoundId = "rbxassetid://211626338"
  247. s.Name = "Centuries"
  248. s:Play()
  249. end
  250. end)
  251. ---End of Centuries---
  252.  
  253. ---Start of Lips Are Movin'---
  254. mouse.KeyDown:connect(function(key)
  255. if key == "l" then
  256. game:GetService("Chat"):Chat(c, "Now Playing : Lips Are Movin'")
  257. s.SoundId = "rbxassetid://207106257"
  258. s.Name = "Lips Are Movin'"
  259. s:Play()
  260. end
  261. end)
  262. ---End of Lips Are Movin'---
  263.  
  264. ---Start of I Don't Mind---
  265. mouse.KeyDown:connect(function(key)
  266. if key == "p" then
  267. game:GetService("Chat"):Chat(c, "Now Playing : I Don't Mind")
  268. s.SoundId = "rbxassetid://208719506"
  269. s.Name = "I Don't Mind"
  270. s:Play()
  271. end
  272. end)
  273. ---End of I Don't Mind---
  274.  
  275. --</\>Copyright Siarius 2015</\>--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement