Advertisement
memberhero

Untitled

May 8th, 2016
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.85 KB | None | 0 0
  1. me = game.Players.memberhero
  2. gui = me.PlayerGui
  3.  
  4. Sounds = {{"http://www.roblox.com/asset/?id=2767090", "Abscond", 0.8},
  5. {"http://www.roblox.com/asset/?id=2676305", "Berserk", 1},
  6. {"http://www.roblox.com/asset/?id=3264793", "Break", 0.75},
  7. {"http://www.roblox.com/asset/?id=13775494", "Curse", 0.4},
  8. {"http://www.roblox.com/asset/?id=2101137", "DBC", 0.55}, -- these are more like gun shots
  9. {"http://www.roblox.com/asset/?id=2691586", "DBExplode", 0.3},
  10. {"http://www.roblox.com/asset/?id=2801263", "DCHHit", 0.5},
  11. {"http://www.roblox.com/asset/?id=2691586", "DS", 0.7},
  12. {"http://www.roblox.com/asset/?id=2101148", "DSHit", 1.5},
  13. {"http://www.roblox.com/asset/?id=3264923", "Defile", 1.1},
  14. {"http://www.roblox.com/asset/?id=2800815", "Electricity", 0.9},
  15. {"http://www.roblox.com/asset?id=1369158", "Blast1", 0.7},
  16. {"http://www.roblox.com/asset/?id=2974000", "Blast2", 0.8},
  17. {"http://www.roblox.com/asset/?id=12222124", "Blast3", 0.2},
  18. {"http://www.roblox.com/asset/?id=2974249", "Blast4", 0.65},
  19. {"http://www.roblox.com/asset/?id=2785493", "Imbue", 1},
  20. {"rbxasset://sounds//unsheath.wav", "UnSheath", 1},
  21. {"rbxasset://sounds//swordslash.wav", "SlashSound", 1},
  22. {"http://www.roblox.com/asset/?id=2692844", "Chaingun Charge", 1},
  23. {"http://www.roblox.com/asset/?id=12222095", "Rocket sound", 0.6},
  24. {"http://www.roblox.com/asset/?id=2920959", "Fire (lolwut)", 0.7},
  25. {"http://www.roblox.com/asset/?id=2691591", "Reload", 1},
  26. {"http://www.roblox.com/asset/?id=2697295", "Bullet rel", 1},
  27. {"http://www.roblox.com/asset/?id=2801263", "Clunk (?)", 0.5},
  28. {"http://www.roblox.com/asset/?id=13510737", "EquipSound (?)", 1.6},
  29. {"http://www.roblox.com/asset/?id=2760979", "Fire", 0.7},
  30. {"http://www.roblox.com/asset/?id=1868836", "Fire2", 1},
  31. {"http://www.roblox.com/asset/?id=2761841", "Fire3", 1},
  32. {"http://www.roblox.com/asset/?id=2692806", "Fire4", 1},
  33. {"http://www.roblox.com/asset/?id=11900833", "Fire5", 1},
  34. {"http://www.roblox.com/asset/?id=12222065", "Fire6", 1},
  35. {"http://www.roblox.com/asset/?id=2767090", "Fire7", 1},
  36. {"http://www.roblox.com/asset/?id=2693346", "Fire8", 1},
  37. {"http://www.roblox.com/asset/?id=15933756", "Fire9", 1},
  38. {"http://www.roblox.com/asset/?id=16976189", "Fire10", 1},
  39. {"http://www.roblox.com/asset/?id=21433711", "Fire11", 1},
  40. {"http://www.roblox.com/asset/?id=21433696", "Fire12", 1},
  41. {"http://www.roblox.com/asset/?id=13510352", "Fire13", 1},
  42. {"http://www.roblox.com/asset/?version=1&id=2691586", "Gun1", 1},
  43. {"http://www.roblox.com/asset/?id=2920959", "Gun2", 1},
  44. {"http://www.roblox.com/asset/?id=2697431", "Gun3", 1},
  45. {"http://www.roblox.com/asset/?id=2251683", "Machine sound", 2},
  46. {"http://www.roblox.com/asset/?id=12222076", "Page turn (?)", 1},
  47. {"http://www.roblox.com/asset/?id=24483366", "Rawr (?)", 0.75},
  48. {"http://www.roblox.com/asset/?version=1&id=2691591", "Reloadd", 1},
  49. {"http://www.roblox.com/asset/?id=2697432", "Reloadd2", 1},
  50. {"http://www.roblox.com/asset/?id=2920960", "Reloadd3", 1},
  51. {"http://www.roblox.com/asset/?id=2761842", "Reloadd4", 1},
  52. {"http://www.roblox.com/asset/?id=25299064", "Shot reload", 1},
  53. {"http://www.roblox.com/asset/?id=2697294", "Shotty (lol?)", 1},
  54. {"http://www.roblox.com/asset/?id=24902268", "Zombie1", 0.65},
  55. {"http://www.roblox.com/asset/?id=24902294", "Zombie2", 0.65}
  56. }
  57.  
  58. sc = Instance.new("ScreenGui")
  59. sc.Name = "Sounds"
  60.  
  61. pos = UDim2.new(0, 4, 0, 130)
  62.  
  63. x, y = 0, 0
  64. s = Instance.new("Sound",workspace)
  65. s.Volume = 1
  66. for i,v in pairs(Sounds) do
  67. local fr = Instance.new("TextButton",sc)
  68. fr.Size = UDim2.new(0,260,0,15)
  69. fr.Position = pos + UDim2.new(0,x,0,y)
  70. local a = string.find(v[1], "id")
  71. fr.Text = v[2]..", "..v[3]..", "..v[1]
  72. fr.TextXAlignment = "Left"
  73. fr.MouseButton1Down:connect(function()
  74. s.SoundId = v[1]
  75. s.Pitch = v[3]
  76. wait()
  77. s:play()
  78. end)
  79. y = y + 16
  80. if y > 400 then
  81. y = 0
  82. x = x + 261
  83. end
  84. end
  85. sc.Parent = gui
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement