Advertisement
metilol

Untitled

Oct 22nd, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1.  
  2. local sword = Instance.new("Part");
  3. sword.FormFactor = "Plate";
  4. sword.Shape = "Block";
  5. sword.Size = Vector3.new(1, 0.8, 4);
  6. sword.Transparency = 1;
  7. sword.CanCollide = false;
  8. local SlashSound = Instance.new("Sound")
  9. SlashSound.SoundId = "http://www.roblox.com/asset/?id=1051032647"
  10. SlashSound.Pitch = 1.4;
  11. SlashSound.Looped = true;
  12. SlashSound.Name = "Voom";
  13. SlashSound.Parent = sword
  14. snd = Instance.new("Sound")
  15. snd.SoundId = "http://www.roblox.com/asset/?id=984439735"
  16. snd.Volume = 10
  17. snd.Name = "Boom"
  18. snd.Parent = sword
  19. local UnsheathSound = Instance.new("Sound")
  20. UnsheathSound.SoundId = "http://www.roblox.com/asset/?id=217976249"
  21. UnsheathSound.Name = "Go"
  22. UnsheathSound.Volume = 0.5
  23. UnsheathSound.Parent = sword
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement