Advertisement
Noob3as

Roblox Radio

Feb 22nd, 2017
379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. player = game.Players.LocalPlayer
  2. mouse = player:GetMouse()
  3. character = player.Character
  4.  
  5. --made by xxjojetxx(me)
  6. local base = Instance.new("Part", character.Torso)
  7. base.TopSurface = Enum.SurfaceType.Smooth
  8. base.BottomSurface = Enum.SurfaceType.Smooth
  9. base.Material = Enum.Material.Neon
  10. base.BrickColor = BrickColor.new("Pastel Blue")
  11. base.Size = Vector3.new(2,2,2) -- Change Size here
  12. local Weld = Instance.new("Weld", base)
  13. Weld.Part0 = player.Character.Torso
  14. Weld.Part1 = base
  15. Weld.C1 = CFrame.new(0,0,1)
  16. local basemesh = Instance.new("SpecialMesh", base)
  17. basemesh.MeshId = "http://www.roblox.com/asset/?id=151760030"
  18. basemesh.TextureId = "http://www.roblox.com/asset/?id=247802174"
  19. basemesh.Scale = Vector3.new(1,1,1)
  20. sound = Instance.new("Sound", game.Workspace)
  21. -- If u want to use your own audio replace the numbers
  22. mouse.KeyDown:connect(function(key)
  23. if key == "r" then
  24. sound.SoundId = "rbxassetid://631578220"
  25. sound.Volume = 1
  26. sound:Play()
  27.  
  28. mouse.KeyDown:connect(function(key)
  29. if key == "e" then
  30. sound.SoundId = "rbxassetid://599808970"
  31. sound.Volume = 1
  32. sound:Play()
  33. end
  34. end)
  35.  
  36. mouse.KeyDown:connect(function(key)
  37. if key == "f" then
  38. sound.SoundId = "rbxassetid://448980374"
  39. sound.Volume = 1
  40. sound:Play()
  41. end
  42. end)
  43.  
  44. mouse.KeyDown:connect(function(key)
  45. if key == "g" then
  46. sound.SoundId = "rbxassetid://255460161"
  47. sound.Volume = 1
  48. sound:Play()
  49. end
  50. end)
  51.  
  52. mouse.KeyDown:connect(function(key)
  53. if key == "h" then
  54. sound.SoundId = "rbxassetid://226053894"
  55. sound.Volume = 1
  56. sound:Play()
  57. end
  58. end)
  59.  
  60. mouse.KeyDown:connect(function(key)
  61. if key == "j" then
  62. sound.SoundId = "rbxassetid://644409525"
  63. sound.Volume = 1
  64. sound:Play()
  65. end
  66. end)
  67.  
  68.  
  69.  
  70.  
  71. end
  72. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement