Advertisement
Greenyxdddd

MM2 Audio Bypass Script

Apr 15th, 2017
10,971
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.81 KB | None | 0 0
  1. --[[
  2.     Murder Mystery 2 Radio Bypass
  3.     - Can play songs in the lobby while the game is running
  4.     - Can play audios in form of meshes or just in normal form
  5.     - Saves you a few seconds of your life trying to play your goddamn favorite song (just try!)
  6.     - Yeah, that's all.
  7.     Made by Developer at V3rmillion (https://v3rmillion.net/member.php?action=profile&uid=3004)
  8. --]]
  9.  
  10. if game.CoreGui:FindFirstChild("RadioGui") then game.CoreGui:FindFirstChild("RadioGui"):Destroy() end
  11. local gui = Instance.new("ScreenGui", game.CoreGui)
  12. gui.Name = "RadioGui"
  13. local frame = Instance.new("Frame", gui)
  14. frame.Style = "DropShadow"
  15. frame.Position = UDim2.new(0, 0, 0.75, 0)
  16. frame.Size = UDim2.new(0.1, 0, 0.1, 0)
  17. local text1 = Instance.new("TextLabel", frame)
  18. text1.Size = UDim2.new(1, 0, 0.15, 0)
  19. text1.BackgroundTransparency = 1
  20. text1.Text = "Radio"
  21. text1.Font = "SourceSansBold"
  22. text1.FontSize = "Size18"
  23. text1.TextColor3 = Color3.fromRGB(255, 255, 255)
  24. text1.TextStrokeColor3 = Color3.fromRGB(0, 0, 0)
  25. text1.TextStrokeTransparency = 0.7
  26. local tb1 = Instance.new("TextBox", frame)
  27. tb1.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
  28. tb1.BorderSizePixel = 0
  29. tb1.Font = "SourceSansItalic"
  30. tb1.TextWrapped = true
  31. tb1.FontSize = "Size14"
  32. tb1.Size = UDim2.new(1, 0, 0.25, 0)
  33. tb1.Position = UDim2.new(0, 0, 0.25, 0)
  34. tb1.TextColor3 = Color3.fromRGB(255, 255, 255)
  35. tb1.Text = "12345678"
  36. local tbtn = Instance.new("TextButton", frame)
  37. tbtn.Style = "RobloxRoundButton"
  38. tbtn.Size = UDim2.new(1, 0, 0.35, 0)
  39. tbtn.Font = "SourceSansBold"
  40. tbtn.FontSize = "Size18"
  41. tbtn.TextColor3 = Color3.fromRGB(255, 255, 255)
  42. tbtn.TextStrokeTransparency = 0.7
  43. tbtn.Text = "Play"
  44. tbtn.Position = UDim2.new(0, 0, 0.6, 0)
  45. tbtn.MouseButton1Click:connect(function()
  46. print(game.ReplicatedStorage:FindFirstChild("PlaySong"):FireServer("rbxassetid://"..tb1.Text))
  47. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement