Modder29000

Untitled

Dec 5th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 KB | None | 0 0
  1. -- Objects
  2.  
  3. local RadioGui = Instance.new("ScreenGui")
  4. local Button = Instance.new("TextButton")
  5. local Frame = Instance.new("Frame")
  6. local IdBox = Instance.new("TextBox")
  7. local PlayButton = Instance.new("TextButton")
  8. local StopButton = Instance.new("TextButton")
  9. local PauseButton = Instance.new("TextButton")
  10.  
  11. -- Properties
  12.  
  13. RadioGui.Name = "Radio Gui"
  14. RadioGui.Parent = game.StarterGui
  15.  
  16. Button.Name = "Button"
  17. Button.Parent = RadioGui
  18. Button.BackgroundColor3 = Color3.new(0.356863, 0.356863, 0.356863)
  19. Button.BorderColor3 = Color3.new(1, 1, 1)
  20. Button.Position = UDim2.new(0.00180995476, 0, 0.420926869, 0)
  21. Button.Size = UDim2.new(0, 179, 0, 25)
  22. Button.Font = Enum.Font.SourceSans
  23. Button.FontSize = Enum.FontSize.Size14
  24. Button.Text = "Open Radio Gui"
  25. Button.TextSize = 14
  26.  
  27. Frame.Parent = RadioGui
  28. Frame.BackgroundColor3 = Color3.new(0.368627, 0.368627, 0.368627)
  29. Frame.BorderColor3 = Color3.new(1, 1, 1)
  30. Frame.Position = UDim2.new(0.0829911977, 0, 0.45110023, 0)
  31. Frame.Size = UDim2.new(0, 294, 0, 120)
  32. Frame.Visible = false
  33.  
  34. IdBox.Name = "IdBox"
  35. IdBox.Parent = Frame
  36. IdBox.BackgroundColor3 = Color3.new(0.839216, 0.839216, 0.839216)
  37. IdBox.BorderSizePixel = 2
  38. IdBox.Position = UDim2.new(0.100000001, 0, 0.100000001, 0)
  39. IdBox.Size = UDim2.new(0.800000012, 0, 0, 50)
  40. IdBox.Font = Enum.Font.SourceSans
  41. IdBox.FontSize = Enum.FontSize.Size14
  42. IdBox.Text = "Paste the sound ID here"
  43. IdBox.TextScaled = true
  44. IdBox.TextSize = 14
  45. IdBox.TextWrapped = true
  46.  
  47. PlayButton.Name = "PlayButton"
  48. PlayButton.Parent = Frame
  49. PlayButton.AnchorPoint = Vector2.new(0.5, 0.5)
  50. PlayButton.BackgroundColor3 = Color3.new(0.333333, 1, 0.498039)
  51. PlayButton.BorderSizePixel = 2
  52. PlayButton.Position = UDim2.new(0.200000003, 0, 0.769999981, 0)
  53. PlayButton.Size = UDim2.new(0.25, 0, 0.300000012, 0)
  54. PlayButton.Font = Enum.Font.SourceSans
  55. PlayButton.FontSize = Enum.FontSize.Size32
  56. PlayButton.Text = "Play"
  57. PlayButton.TextSize = 30
  58. PlayButton.TextWrapped = true
  59.  
  60. StopButton.Name = "StopButton"
  61. StopButton.Parent = Frame
  62. StopButton.AnchorPoint = Vector2.new(0.5, 0.5)
  63. StopButton.BackgroundColor3 = Color3.new(1, 0.376471, 0.376471)
  64. StopButton.BorderSizePixel = 2
  65. StopButton.Position = UDim2.new(0.800000012, 0, 0.769999981, 0)
  66. StopButton.Size = UDim2.new(0.25, 0, 0.300000012, 0)
  67. StopButton.Font = Enum.Font.SourceSans
  68. StopButton.FontSize = Enum.FontSize.Size32
  69. StopButton.Text = "Stop"
  70. StopButton.TextSize = 30
  71. StopButton.TextWrapped = true
  72.  
  73. PauseButton.Name = "PauseButton"
  74. PauseButton.Parent = Frame
  75. PauseButton.AnchorPoint = Vector2.new(0.5, 0.5)
  76. PauseButton.BackgroundColor3 = Color3.new(1, 0.772549, 0.494118)
  77. PauseButton.BorderSizePixel = 2
  78. PauseButton.Position = UDim2.new(0.5, 0, 0.769999981, 0)
  79. PauseButton.Size = UDim2.new(0.25, 0, 0.300000012, 0)
  80. PauseButton.Font = Enum.Font.SourceSans
  81. PauseButton.FontSize = Enum.FontSize.Size32
  82. PauseButton.Text = "Pause"
  83. PauseButton.TextSize = 30
  84. PauseButton.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment