Advertisement
VoidScript

Map song :D

May 21st, 2018
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. ---Created by KinqAndi---
  2. --Model To Script Converter--
  3.  
  4. local Model = Instance.new("Model", game:GetService("Workspace"))
  5. Model.Name = "Base"
  6. ---------------------------------------------
  7. local Part1 = Instance.new("Part", Model)
  8. Part1.Name = "Baseplate"
  9. Part1.Reflectance = 1
  10. Part1.Transparency = 0.5
  11. Part1.Anchored = true
  12. Part1.Archivable = true
  13. Part1.CanCollide = true
  14. Part1.Locked = true
  15. Part1.BrickColor = BrickColor.new("Eggplant")
  16. Part1.Material = Enum.Material.Glass
  17. Part1.Position = Vector3.new(0, -10, 0)
  18. Part1.Size = Vector3.new(512, 20, 512)
  19. Part1.Rotation = Vector3.new(0, 0, 0)
  20.  
  21.  
  22.  
  23. local sound = Instance.new("Sound")
  24.  
  25. sound.Name = "Sound"
  26. sound.SoundId = "http://www.roblox.com/asset/?id=685388224" --Song
  27. sound.Volume = 2 --Derp (I have good, loud speakers. You may need to change this.)
  28. sound.Pitch = 1 --Speed of Playback
  29. sound.Looped = true
  30. sound.archivable = false
  31.  
  32. sound.Parent = game.Workspace
  33.  
  34. wait(0)
  35.  
  36. sound:play()
  37.  
  38.  
  39.  
  40. ---------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement