Advertisement
xXjoethebestXx

TMM Roblox radio

Apr 25th, 2015
1,473
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 27.29 KB | None | 0 0
  1. --Thanks for using Build2Script Plugin by ALERIFICALNEUMORAITI + jarredbcv fix edit
  2. if (script:FindFirstChild("forCustomRun")~=nil) then
  3. local sc = script["forCustomRun"].Value
  4. assert(loadstring(sc))()
  5. return
  6. elseif (script:FindFirstChild("forCustomRunL")~=nil) then
  7. local locsc = workspace:FindFirstChild("_localrun")
  8. local sc = script["forCustomRunL"]
  9. if (locsc~=nil) then
  10. local loc = locsc:clone()
  11. loc["scrun"].Value = sc.Value
  12. loc.Name = script.Name
  13. for i,v in pairs(script:GetChildren()) do
  14. v:clone().Parent = loc
  15. end
  16. loc.Parent = script.Parent
  17. script:remove()
  18. return
  19. else
  20. assert(loadstring(sc.Value))()
  21. return
  22. end
  23. end
  24. local m = Instance.new("Model")
  25. m.Name = "Epic Radio"
  26. s1 = script:clone()
  27. s1.Name = "README"
  28. s1.Disabled = false
  29. so1 = Instance.new("StringValue", s1)
  30. so1.Name = "forCustomRun"
  31. so1.Value = [===[
  32. --[[ Steps To Install Manually
  33. Step 1. Go in Model and Cut & Paste "EpicRadioSource" Model into Lighting
  34. Step 2. Go in Model again and Cut & Paste EpicRadioGiverGUI aswell, And paste it into StarterGui
  35. Step 3. Done!
  36.  
  37. Thank you for using my Epic Radio. This is a edited version of TehGabeNewell's model. I just edited
  38. like everything. In my opinion, mine looks better. You can compare the two...
  39. Here is his version: http://www.roblox.com/Epic-Radio-Replica-WIP-item?id=182017983
  40. Here is my version: http://www.roblox.com/TMM-Radio-item?id=188244567
  41. Comment which one is better.
  42. Be sure to give me some credit, as well as TehGabeNewell if you use this radio.
  43. -- xXLEGITxMINER106Xx
  44. --]]
  45. wait(1)
  46.  
  47. script.Parent:remove() -- This removes the script and model if you forget to do it.
  48. ]===]
  49. s1.Parent = m
  50. g1 = Instance.new("GuiMain", m)
  51. v1 = Instance.new("StringValue", g1)
  52. v1.Name = "player"
  53. s2 = script:clone()
  54. s2.Name = "hatdebug"
  55. s2.Disabled = false
  56. so2 = Instance.new("StringValue", s2)
  57. so2.Name = "forCustomRun"
  58. so2.Value = [===[
  59. -- Created By TehGabeNewell --
  60.  
  61. -- This script prevents the player from dropping their hats, This is used so the EpicRadio doesn't break --
  62. -- If you want to remove this function, Delete the script called "hatdebug" or disable it if you want it back again --
  63.  
  64. monitor = coroutine.wrap(function(player)
  65. local hats = {"EpicRadio"}
  66. local hatstring = ""
  67. game:GetService("RunService").RenderStepped:connect(function()
  68. if (player == nil) then
  69. coroutine.yield()
  70. end
  71. if (player.Character ~= nil) then
  72. for i, v in pairs(player.Character:GetChildren()) do
  73. if (v:IsA("Hat") and string.find(hatstring, v.Name) == nil) then
  74. table.insert(hats, v)
  75. hatstring = hatstring..v.Name.." "
  76. end
  77. end
  78. for i, v in pairs(hats) do
  79. if (v == nil) then
  80. table.remove(hats, i)
  81. elseif (player.Character:FindFirstChild(v.Name) == nil) then
  82. v.Parent = player.Character
  83. end
  84. end
  85. end
  86. end)
  87. end)
  88.  
  89. function beginMonitoring(newPlayer)
  90. newPlayer.CharacterAdded:connect(function()
  91. monitor(newPlayer)
  92. end)
  93. end
  94.  
  95. game.Players.PlayerAdded:connect(beginMonitoring)
  96. ]===]
  97. s2.Parent = g1
  98. g1.Name = "EpicRadioGiverGUI"
  99. o1 = Instance.new("TextButton", g1)
  100. s3 = script:clone()
  101. s3.Name = "function"
  102. s3.Disabled = false
  103. so3 = Instance.new("StringValue", s3)
  104. so3.Name = "forCustomRun"
  105. so3.Value = [===[
  106. function MouseClick()
  107.  
  108. local mystring = script.Parent.Parent.give.Text
  109. local player = game.Players:findFirstChild(mystring)
  110.  
  111. if player then
  112. game.Lighting.EpicRadioSource.EpicRadio:Clone().Parent = game.Workspace[script.Parent.Parent.player.Value]
  113. game.Lighting.EpicRadioSource.EpicRadioGUI:Clone().Parent = game.Players[script.Parent.Parent.player.Value].PlayerGui
  114. else
  115. script.Parent.Text = "Player Not Vaild!"
  116. wait(2)
  117. script.Parent.Text = "Give Epic Radio"
  118. end
  119. end
  120. script.Parent.MouseButton1Click:connect(MouseClick)
  121. ]===]
  122. s3.Parent = o1
  123. o1.Active = true
  124. o1.BackgroundColor3 = Color3.new(0, 0, 0)
  125. o1.BackgroundTransparency = 0.5
  126. o1.BorderColor3 = Color3.new(0.160784, 0.160784, 0.160784)
  127. o1.Position = UDim2.new(0.050000000745058, 0, 0.050000000745058, 0)
  128. o1.Size = UDim2.new(0.20000000298023, 0, 0.050000000745058, 0)
  129. o1.AutoButtonColor = false
  130. o1.Text = "Give Epic Radio"
  131. o1.TextScaled = true
  132. o1.TextWrapped = true
  133. o1.TextColor3 = Color3.new(1, 1, 1)
  134. o1.Font = Enum.Font.SourceSansBold
  135. o1.FontSize = Enum.FontSize.Size36
  136. o2 = Instance.new("TextBox", g1)
  137. s4 = script:clone()
  138. s4.Name = "function"
  139. s4.Disabled = false
  140. so4 = Instance.new("StringValue", s4)
  141. so4.Name = "forCustomRun"
  142. so4.Value = [===[
  143. while wait() do
  144. script.Parent.Parent.player.Value = script.Parent.Text
  145. end
  146. ]===]
  147. s4.Parent = o2
  148. o2.Active = true
  149. o2.BackgroundColor3 = Color3.new(0, 0, 0)
  150. o2.BackgroundTransparency = 0.5
  151. o2.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  152. o2.Name = "give"
  153. o2.Position = UDim2.new(0.050000000745058, 0, 0.10999999940395, 0)
  154. o2.Size = UDim2.new(0.20000000298023, 0, 0.029999999329448, 0)
  155. o2.Text = "Type player name here"
  156. o2.TextScaled = true
  157. o2.TextWrapped = true
  158. o2.TextColor3 = Color3.new(1, 1, 1)
  159. o2.Font = Enum.Font.SourceSansBold
  160. o2.FontSize = Enum.FontSize.Size18
  161. m1 = Instance.new("Model")
  162. m1.Name = "EpicRadioSource"
  163. m1.Parent = m
  164. g2 = Instance.new("ScreenGui", m1)
  165. g2.Name = "EpicRadioGUI"
  166. o3 = Instance.new("TextButton", g2)
  167. s5 = script:clone()
  168. s5.Name = "func"
  169. s5.Disabled = false
  170. so5 = Instance.new("StringValue", s5)
  171. so5.Name = "forCustomRun"
  172. so5.Value = [===[
  173. -- Created By TehGabeNewell --
  174. -- This allows you to hide/show the gui, sometimes it gets annoying or in your way.
  175.  
  176.  
  177. function MouseClick()
  178.  
  179. if script.Parent.visible.Value == false then
  180. script.Parent.Text = "-"
  181. script.Parent.Parent.Frame.Visible = true
  182. script.Parent.visible.Value = true
  183. elseif script.Parent.visible.Value == true then
  184. script.Parent.Text = "+"
  185. script.Parent.Parent.Frame.Visible = false
  186. script.Parent.visible.Value = false
  187. end
  188. end
  189.  
  190. script.Parent.MouseButton1Click:connect(MouseClick)
  191. ]===]
  192. s5.Parent = o3
  193. v2 = Instance.new("BoolValue", o3)
  194. v2.Name = "visible"
  195. v2.Value = false
  196. o3.Active = true
  197. o3.BackgroundColor3 = Color3.new(0, 0, 0)
  198. o3.BackgroundTransparency = 0.5
  199. o3.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  200. o3.BorderSizePixel = 0
  201. o3.Name = "Hide/Show"
  202. o3.Position = UDim2.new(0.97100001573563, 0, 0.17499999701977, 0)
  203. o3.Size = UDim2.new(0, 20, 0, 20)
  204. o3.Text = "+"
  205. o3.TextWrapped = true
  206. o3.TextColor3 = Color3.new(1, 1, 1)
  207. o3.TextStrokeTransparency = 0
  208. o3.Font = Enum.Font.SourceSansBold
  209. o3.FontSize = Enum.FontSize.Size24
  210. o4 = Instance.new("Frame", g2)
  211. o4.BackgroundColor3 = Color3.new(0, 0, 0)
  212. o4.BackgroundTransparency = 0.5
  213. o4.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  214. o4.BorderSizePixel = 0
  215. o4.Position = UDim2.new(0.74000000953674, 0, 0.20000000298023, 0)
  216. o4.Size = UDim2.new(0, 300, 0, 200)
  217. o4.Visible = false
  218. o4.ZIndex = 2
  219. o5 = Instance.new("TextButton", o4)
  220. s6 = script:clone()
  221. s6.Name = "function"
  222. s6.Disabled = false
  223. so6 = Instance.new("StringValue", s6)
  224. so6.Name = "forCustomRun"
  225. so6.Value = [===[
  226. -- Created By TehGabeNewell --
  227.  
  228. -- Give Credit if you edit/republish source or I'll come to your house and kill your family.
  229.  
  230. --== DO NOT TOUCH! ==--
  231. --== The reason why this only function script is so long because it does a ProductInfo grabber which will put the Audio ID's title -
  232. --== - on textlabel ==--
  233.  
  234. player = script.Parent.Parent.Parent.Parent.Parent.Character.EpicRadio.Handle
  235. market = game:GetService("MarketplaceService")
  236.  
  237. function MouseClick()
  238. pcall(function()
  239. local id
  240. local box = script.Parent.Parent.SoundID
  241. if tonumber(box.Text)==nil then
  242. script.Parent.Parent.SoundID.Text = "Sound ID Is Invaild!"
  243. wait(2.5)
  244. script.Parent.Parent.SoundID.Text = "Sound ID"
  245. end
  246. if player.music.IsPlaying == true then
  247. player.music:Stop()
  248. wait(1)
  249. player.music.SoundId = "rbxassetid://"..script.Parent.Parent.SoundID.Text:match("%d+$")
  250. player.music.SoundId = "rbxassetid://"..script.Parent.Parent.SoundID.Text
  251. script.Parent.Parent.Info.SongTitle.Text = " "..market:GetProductInfo(tonumber(script.Parent.Parent.SoundID.Text:match("%d+$"))).Name
  252. wait(1)
  253. player.music:Play()
  254. else
  255. player.music.SoundId = "rbxassetid://"..script.Parent.Parent.SoundID.Text:match("%d+$")
  256. player.music.SoundId = "rbxassetid://"..script.Parent.Parent.SoundID.Text
  257. script.Parent.Parent.Info.SongTitle.Text = " "..market:GetProductInfo(tonumber(script.Parent.Parent.SoundID.Text:match("%d+$"))).Name
  258. wait(1)
  259. player.music:Play()
  260. end
  261. end)
  262. end
  263. script.Parent.MouseButton1Click:connect(MouseClick)
  264.  
  265.  
  266.  
  267.  
  268.  
  269.  
  270.  
  271.  
  272.  
  273.  
  274.  
  275.  
  276.  
  277.  
  278.  
  279.  
  280.  
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287.  
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295.  
  296. ]===]
  297. s6.Parent = o5
  298. s7 = script:clone()
  299. s7.Name = "removeglitchedsound"
  300. s7.Disabled = false
  301. so7 = Instance.new("StringValue", s7)
  302. so7.Name = "forCustomRun"
  303. so7.Value = [===[
  304. --== Do not touch this, This will remove any looped sounds when you die, It prevents the invisible local sound glitch from happening ==--
  305.  
  306. player = script.Parent.Parent.Parent.Parent.Parent.Character
  307.  
  308. while wait() do
  309. if player.Humanoid.Health == 0 then
  310. script.Parent.Parent.Parent.Parent.Parent.Character.EpicRadio.Handle.music.Looped = false
  311. script.Parent.Parent.Parent.Parent.Parent.Character.EpicRadio.Handle.music:Stop()
  312. end
  313. end
  314. ]===]
  315. s7.Parent = o5
  316. o5.Active = true
  317. o5.BackgroundColor3 = Color3.new(0, 0.792157, 0)
  318. o5.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  319. o5.BorderSizePixel = 0
  320. o5.Name = "Play"
  321. o5.Position = UDim2.new(0, 0, 0.85000002384186, 0)
  322. o5.Size = UDim2.new(0, 70, 0, 30)
  323. o5.ZIndex = 2
  324. o5.Text = "Play"
  325. o5.TextScaled = true
  326. o5.TextWrapped = true
  327. o5.TextColor3 = Color3.new(1, 1, 1)
  328. o5.Font = Enum.Font.SourceSansBold
  329. o5.FontSize = Enum.FontSize.Size14
  330. o6 = Instance.new("TextButton", o4)
  331. s8 = script:clone()
  332. s8.Name = "function"
  333. s8.Disabled = false
  334. so8 = Instance.new("StringValue", s8)
  335. so8.Name = "forCustomRun"
  336. so8.Value = [===[
  337. player = script.Parent.Parent.Parent.Parent.Parent.Character.EpicRadio.Handle
  338.  
  339. function MouseClick()
  340. player.music:Stop()
  341. end
  342. script.Parent.MouseButton1Click:connect(MouseClick)
  343. ]===]
  344. s8.Parent = o6
  345. o6.Active = true
  346. o6.BackgroundColor3 = Color3.new(0.854902, 0, 0)
  347. o6.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  348. o6.BorderSizePixel = 0
  349. o6.Name = "Stop"
  350. o6.Position = UDim2.new(0.24400000274181, 0, 0.85000002384186, 0)
  351. o6.Size = UDim2.new(0, 70, 0, 30)
  352. o6.ZIndex = 2
  353. o6.Text = "Stop"
  354. o6.TextScaled = true
  355. o6.TextWrapped = true
  356. o6.TextColor3 = Color3.new(1, 1, 1)
  357. o6.Font = Enum.Font.SourceSansBold
  358. o6.FontSize = Enum.FontSize.Size14
  359. o7 = Instance.new("TextBox", o4)
  360. o7.Active = true
  361. o7.BackgroundColor3 = Color3.new(0, 0, 0)
  362. o7.BorderColor3 = Color3.new(0.666667, 0, 0)
  363. o7.BorderSizePixel = 3
  364. o7.Name = "SoundID"
  365. o7.Position = UDim2.new(0.090000003576279, 0, 0.25, 0)
  366. o7.Size = UDim2.new(0, 100, 0, 30)
  367. o7.ZIndex = 2
  368. o7.Text = "Sound ID"
  369. o7.TextScaled = true
  370. o7.TextWrapped = true
  371. o7.TextColor3 = Color3.new(0, 0, 0)
  372. o7.TextStrokeColor3 = Color3.new(1, 1, 1)
  373. o7.TextStrokeTransparency = 0
  374. o7.Font = Enum.Font.SourceSansBold
  375. o7.FontSize = Enum.FontSize.Size14
  376. o8 = Instance.new("TextLabel", o4)
  377. o8.BackgroundColor3 = Color3.new(0, 0, 0)
  378. o8.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  379. o8.BorderSizePixel = 0
  380. o8.Name = "Title"
  381. o8.Size = UDim2.new(0, 300, 0, 30)
  382. o8.ZIndex = 2
  383. o8.Text = "Epic Radio"
  384. o8.TextScaled = true
  385. o8.TextWrapped = true
  386. o8.TextColor3 = Color3.new(1, 0, 0)
  387. o8.TextStrokeTransparency = 0
  388. o8.Font = Enum.Font.SourceSansBold
  389. o8.FontSize = Enum.FontSize.Size14
  390. o9 = Instance.new("ScrollingFrame", o4)
  391. o9.BackgroundColor3 = Color3.new(0, 0, 0)
  392. o9.BackgroundTransparency = 0.5
  393. o9.BorderColor3 = Color3.new(0, 0, 0)
  394. o9.Name = "Info2"
  395. o9.Position = UDim2.new(0.52999997138977, 0, 0.17000000178814, 0)
  396. o9.Size = UDim2.new(0, 140, 0, 130)
  397. o9.ZIndex = 2
  398. o9.ClipsDescendants = true
  399. o10 = Instance.new("TextLabel", o9)
  400. o10.BackgroundColor3 = Color3.new(1, 1, 1)
  401. o10.BackgroundTransparency = 1
  402. o10.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  403. o10.Name = "Info"
  404. o10.Size = UDim2.new(0, 114, 0, 600)
  405. o10.ZIndex = 2
  406. o10.Text = "Thank you for using my Epic Radio. To begin using, copy (CTRL + C) the URL ID code from the audio you want to play, and paste it (CTRL + V) in the \"Sound ID\" box. Then click \"Play\". To customize your radio, click the green + button. And change the numbers of either R,G, or B ( RED , GREEN, BLUE). These will change the actuall radio appearence. You can also change the pitch of your song. The default setting is 1, I would recommend not going any higher than 6. If any higher makes the song too high pitch, and is considered spam. The Volume feature can not go higher than 1. That is the maximum ROBLOX allows. 1 represents 100. Your volume level can range from 0 to 1. If you were to put your Volume at .9 it represents 90. You can also see the name of your audio below. To close the radio box, click the white (-) button. (The same one you used to open it.)"
  407. o10.TextScaled = true
  408. o10.TextWrapped = true
  409. o10.TextColor3 = Color3.new(1, 1, 1)
  410. o10.Font = Enum.Font.ArialBold
  411. o10.FontSize = Enum.FontSize.Size24
  412. o10.TextXAlignment = Enum.TextXAlignment.Left
  413. o10.TextYAlignment = Enum.TextYAlignment.Top
  414. o11 = Instance.new("Frame", o4)
  415. o11.BackgroundColor3 = Color3.new(0, 0, 0)
  416. o11.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  417. o11.BorderSizePixel = 0
  418. o11.Name = "Bar"
  419. o11.Position = UDim2.new(0.47999998927116, 0, 0, 0)
  420. o11.Size = UDim2.new(0, 5, 0, 200)
  421. o11.ZIndex = 2
  422. o12 = Instance.new("TextBox", o4)
  423. s9 = script:clone()
  424. s9.Name = "function"
  425. s9.Disabled = false
  426. so9 = Instance.new("StringValue", s9)
  427. so9.Name = "forCustomRun"
  428. so9.Value = [===[
  429. player = script.Parent.Parent.Parent.Parent.Parent.Character.EpicRadio.Handle
  430.  
  431. while wait() do -- loops so it checks everytime
  432. player.music.Volume = script.Parent.Text
  433. end
  434. ]===]
  435. s9.Parent = o12
  436. o12.Active = true
  437. o12.BackgroundColor3 = Color3.new(1, 1, 1)
  438. o12.BorderColor3 = Color3.new(0, 0, 0)
  439. o12.BorderSizePixel = 3
  440. o12.Name = "Volume"
  441. o12.Position = UDim2.new(0.35600000619888, 0, 0.44999998807907, 0)
  442. o12.Size = UDim2.new(0, 20, 0, 20)
  443. o12.ZIndex = 2
  444. o12.Text = "1"
  445. o12.TextScaled = true
  446. o12.TextWrapped = true
  447. o12.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  448. o12.FontSize = Enum.FontSize.Size14
  449. o13 = Instance.new("TextBox", o4)
  450. s10 = script:clone()
  451. s10.Name = "function"
  452. s10.Disabled = false
  453. so10 = Instance.new("StringValue", s10)
  454. so10.Name = "forCustomRun"
  455. so10.Value = [===[
  456. player = script.Parent.Parent.Parent.Parent.Parent.Character.EpicRadio.Handle
  457.  
  458. while wait() do -- loops so it checks everytime
  459. player.music.Pitch = script.Parent.Text
  460. end
  461. ]===]
  462. s10.Parent = o13
  463. o13.Active = true
  464. o13.BackgroundColor3 = Color3.new(1, 1, 1)
  465. o13.BorderColor3 = Color3.new(0, 0, 0)
  466. o13.BorderSizePixel = 3
  467. o13.Name = "Pitch"
  468. o13.Position = UDim2.new(0.35600000619888, 0, 0.60000002384186, 0)
  469. o13.Size = UDim2.new(0, 20, 0, 20)
  470. o13.ZIndex = 2
  471. o13.Text = "1"
  472. o13.TextScaled = true
  473. o13.TextWrapped = true
  474. o13.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  475. o13.FontSize = Enum.FontSize.Size14
  476. o14 = Instance.new("TextLabel", o4)
  477. o14.BackgroundColor3 = Color3.new(0, 0, 0)
  478. o14.BackgroundTransparency = 1
  479. o14.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  480. o14.BorderSizePixel = 0
  481. o14.Name = "LabelHelp"
  482. o14.Position = UDim2.new(0.12999999523163, 0, 0.44999998807907, 0)
  483. o14.Size = UDim2.new(0, 60, 0, 20)
  484. o14.ZIndex = 2
  485. o14.Text = "Volume:"
  486. o14.TextScaled = true
  487. o14.TextWrapped = true
  488. o14.TextColor3 = Color3.new(1, 0, 0)
  489. o14.TextStrokeTransparency = 0
  490. o14.Font = Enum.Font.SourceSansBold
  491. o14.FontSize = Enum.FontSize.Size14
  492. o15 = Instance.new("TextLabel", o4)
  493. o15.BackgroundColor3 = Color3.new(0, 0, 0)
  494. o15.BackgroundTransparency = 1
  495. o15.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  496. o15.BorderSizePixel = 0
  497. o15.Name = "LabelHelp"
  498. o15.Position = UDim2.new(0.18000000715256, 0, 0.60000002384186, 0)
  499. o15.Size = UDim2.new(0, 45, 0, 20)
  500. o15.ZIndex = 2
  501. o15.Text = "Pitch:"
  502. o15.TextScaled = true
  503. o15.TextWrapped = true
  504. o15.TextColor3 = Color3.new(1, 0, 0)
  505. o15.TextStrokeTransparency = 0
  506. o15.Font = Enum.Font.SourceSansBold
  507. o15.FontSize = Enum.FontSize.Size14
  508. o16 = Instance.new("Frame", o4)
  509. o16.BackgroundColor3 = Color3.new(0, 0, 0)
  510. o16.BackgroundTransparency = 0.5
  511. o16.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  512. o16.BorderSizePixel = 0
  513. o16.Name = "Info"
  514. o16.Position = UDim2.new(0, 0, 1.0499999523163, 0)
  515. o16.Size = UDim2.new(0, 300, 0, 190)
  516. o16.ZIndex = 2
  517. o17 = Instance.new("TextLabel", o16)
  518. o17.BackgroundColor3 = Color3.new(0, 0, 0)
  519. o17.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  520. o17.BorderSizePixel = 0
  521. o17.Name = "Title"
  522. o17.Size = UDim2.new(1, 0, 0, 20)
  523. o17.ZIndex = 2
  524. o17.Text = "Audio Details"
  525. o17.TextScaled = true
  526. o17.TextWrapped = true
  527. o17.TextColor3 = Color3.new(1, 0, 0)
  528. o17.TextStrokeTransparency = 0
  529. o17.Font = Enum.Font.SourceSansBold
  530. o17.FontSize = Enum.FontSize.Size24
  531. o18 = Instance.new("TextLabel", o16)
  532. o18.BackgroundColor3 = Color3.new(0, 0, 0)
  533. o18.BackgroundTransparency = 1
  534. o18.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  535. o18.BorderSizePixel = 0
  536. o18.Name = "NowPlaying"
  537. o18.Position = UDim2.new(0.40000000596046, 0, 0.20000000298023, 0)
  538. o18.Size = UDim2.new(0.20000000298023, 0, 0, 30)
  539. o18.ZIndex = 2
  540. o18.Text = "Now Playing:"
  541. o18.TextColor3 = Color3.new(1, 0, 0)
  542. o18.TextStrokeTransparency = 0
  543. o18.Font = Enum.Font.SourceSansBold
  544. o18.FontSize = Enum.FontSize.Size24
  545. o18.TextYAlignment = Enum.TextYAlignment.Top
  546. o19 = Instance.new("Frame", o16)
  547. s11 = script:clone()
  548. s11.Name = "Dropper"
  549. s11.Disabled = false
  550. so11 = Instance.new("StringValue", s11)
  551. so11.Name = "forCustomRun"
  552. so11.Value = [===[
  553. sp = script.Parent
  554. NUM1 = sp.NUM1
  555. NUM2 = sp.NUM2
  556. NUM3 = sp.NUM3
  557. NUM4 = sp.NUM4
  558. NUM5 = sp.NUM5
  559. NUM6 = sp.NUM6
  560. NUM7 = sp.NUM7
  561. while true do
  562. NUM1:TweenSize(UDim2.new(0, 40,0,math.random(-170,0)),"Out","Linear",0.1,false)
  563. NUM2:TweenSize(UDim2.new(0, 40,0,math.random(-170,0)),"Out","Linear",0.1,false)
  564. NUM3:TweenSize(UDim2.new(0, 40,0,math.random(-170,0)),"Out","Linear",0.1,false)
  565. NUM4:TweenSize(UDim2.new(0, 40,0,math.random(-170,0)),"Out","Linear",0.1,false)
  566. NUM5:TweenSize(UDim2.new(0, 40,0,math.random(-170,0)),"Out","Linear",0.1,false)
  567. NUM6:TweenSize(UDim2.new(0, 40,0,math.random(-170,0)),"Out","Linear",0.1,false)
  568. NUM7:TweenSize(UDim2.new(0, 40,0,math.random(-170,0)),"Out","Linear",0.1,false)
  569. wait(0.05)
  570. end
  571. ]===]
  572. s11.Parent = o19
  573. o19.BackgroundColor3 = Color3.new(1, 1, 1)
  574. o19.BackgroundTransparency = 1
  575. o19.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  576. o19.Name = "DroppingFrame"
  577. o19.Size = UDim2.new(0, 300, 0, 190)
  578. o20 = Instance.new("TextLabel", o19)
  579. o20.BackgroundColor3 = Color3.new(0, 0.952941, 1)
  580. o20.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  581. o20.Name = "NUM1"
  582. o20.Position = UDim2.new(0, 0, 1, 0)
  583. o20.Size = UDim2.new(0, 40, 0, -170)
  584. o20.Text = ""
  585. o20.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  586. o20.Font = Enum.Font.SourceSans
  587. o20.FontSize = Enum.FontSize.Size14
  588. o21 = Instance.new("TextLabel", o19)
  589. o21.BackgroundColor3 = Color3.new(0.917647, 1, 0)
  590. o21.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  591. o21.Name = "NUM2"
  592. o21.Position = UDim2.new(0.14000000059605, 0, 1, 0)
  593. o21.Size = UDim2.new(0, 40, 0, -492)
  594. o21.Text = ""
  595. o21.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  596. o21.Font = Enum.Font.SourceSans
  597. o21.FontSize = Enum.FontSize.Size14
  598. o22 = Instance.new("TextLabel", o19)
  599. o22.BackgroundColor3 = Color3.new(1, 0, 1)
  600. o22.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  601. o22.Name = "NUM3"
  602. o22.Position = UDim2.new(0.28000000119209, 0, 1, 0)
  603. o22.Size = UDim2.new(0, 40, 0, -331)
  604. o22.Text = ""
  605. o22.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  606. o22.Font = Enum.Font.SourceSans
  607. o22.FontSize = Enum.FontSize.Size14
  608. o23 = Instance.new("TextLabel", o19)
  609. o23.BackgroundColor3 = Color3.new(0.266667, 1, 0)
  610. o23.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  611. o23.Name = "NUM4"
  612. o23.Position = UDim2.new(0.41999998688698, 0, 1, 0)
  613. o23.Size = UDim2.new(0, 40, 0, -233)
  614. o23.Text = ""
  615. o23.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  616. o23.Font = Enum.Font.SourceSans
  617. o23.FontSize = Enum.FontSize.Size14
  618. o24 = Instance.new("TextLabel", o19)
  619. o24.BackgroundColor3 = Color3.new(0, 0.0666667, 1)
  620. o24.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  621. o24.Name = "NUM5"
  622. o24.Position = UDim2.new(0.56000000238419, 0, 1, 0)
  623. o24.Size = UDim2.new(0, 40, 0, -353)
  624. o24.Text = ""
  625. o24.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  626. o24.Font = Enum.Font.SourceSans
  627. o24.FontSize = Enum.FontSize.Size14
  628. o25 = Instance.new("TextLabel", o19)
  629. o25.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  630. o25.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  631. o25.Name = "NUM6"
  632. o25.Position = UDim2.new(0.69999998807907, 0, 1, 0)
  633. o25.Size = UDim2.new(0, 40, 0, -430)
  634. o25.Text = ""
  635. o25.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  636. o25.Font = Enum.Font.SourceSans
  637. o25.FontSize = Enum.FontSize.Size14
  638. o26 = Instance.new("TextLabel", o19)
  639. o26.BackgroundColor3 = Color3.new(0.466667, 0, 1)
  640. o26.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  641. o26.Name = "NUM7"
  642. o26.Position = UDim2.new(0.83999997377396, 0, 1, 0)
  643. o26.Size = UDim2.new(0, 40, 0, -178)
  644. o26.Text = ""
  645. o26.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  646. o26.Font = Enum.Font.SourceSans
  647. o26.FontSize = Enum.FontSize.Size14
  648. o27 = Instance.new("TextLabel", o16)
  649. o27.BackgroundColor3 = Color3.new(0, 0, 0)
  650. o27.BackgroundTransparency = 1
  651. o27.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  652. o27.Name = "SongTitle"
  653. o27.Position = UDim2.new(0, 0, 0, 70)
  654. o27.Size = UDim2.new(0, 299, 0, 120)
  655. o27.ZIndex = 2
  656. o27.Text = "N/A"
  657. o27.TextScaled = true
  658. o27.TextWrapped = true
  659. o27.TextColor3 = Color3.new(1, 1, 1)
  660. o27.Font = Enum.Font.SourceSansBold
  661. o27.FontSize = Enum.FontSize.Size24
  662. o27.TextXAlignment = Enum.TextXAlignment.Left
  663. o27.TextYAlignment = Enum.TextYAlignment.Top
  664. o28 = Instance.new("TextButton", o4)
  665. s12 = script:clone()
  666. s12.Name = "func"
  667. s12.Disabled = false
  668. so12 = Instance.new("StringValue", s12)
  669. so12.Name = "forCustomRun"
  670. so12.Value = [===[
  671. -- Created By TehGabeNewell --
  672. -- This allows you to hide/show the gui, sometimes it gets annoying or in your way.
  673.  
  674.  
  675. function MouseClick()
  676.  
  677. if script.Parent.visible.Value == false then
  678. script.Parent.Text = "-"
  679. script.Parent.Parent.SettingsF.Visible = true
  680. script.Parent.visible.Value = true
  681. elseif script.Parent.visible.Value == true then
  682. script.Parent.Text = "+"
  683. script.Parent.Parent.SettingsF.Visible = false
  684. script.Parent.visible.Value = false
  685. end
  686. end
  687.  
  688. script.Parent.MouseButton1Click:connect(MouseClick)
  689. ]===]
  690. s12.Parent = o28
  691. v3 = Instance.new("BoolValue", o28)
  692. v3.Name = "visible"
  693. v3.Value = false
  694. o28.Active = true
  695. o28.BackgroundColor3 = Color3.new(0, 0, 0)
  696. o28.BackgroundTransparency = 0.5
  697. o28.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  698. o28.BorderSizePixel = 0
  699. o28.Name = "Settings"
  700. o28.Position = UDim2.new(0, 0, 0.15000000596046, 0)
  701. o28.Size = UDim2.new(0, 20, 0, 20)
  702. o28.ZIndex = 2
  703. o28.Text = "+"
  704. o28.TextWrapped = true
  705. o28.TextColor3 = Color3.new(0, 1, 0)
  706. o28.TextStrokeTransparency = 0
  707. o28.FontSize = Enum.FontSize.Size24
  708. o29 = Instance.new("Frame", o4)
  709. o29.BackgroundColor3 = Color3.new(0, 0, 0)
  710. o29.BackgroundTransparency = 0.5
  711. o29.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  712. o29.BorderSizePixel = 0
  713. o29.Name = "SettingsF"
  714. o29.Position = UDim2.new(-1.0199999809265, 0, 0, 0)
  715. o29.Size = UDim2.new(0, 300, 0, 200)
  716. o29.Visible = false
  717. o30 = Instance.new("TextLabel", o29)
  718. o30.BackgroundColor3 = Color3.new(0, 0, 0)
  719. o30.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  720. o30.BorderSizePixel = 0
  721. o30.Name = "Title"
  722. o30.Size = UDim2.new(0, 300, 0, 30)
  723. o30.Text = "Radio Appearance Settings"
  724. o30.TextScaled = true
  725. o30.TextWrapped = true
  726. o30.TextColor3 = Color3.new(1, 0, 0)
  727. o30.TextStrokeTransparency = 0
  728. o30.Font = Enum.Font.SourceSansBold
  729. o30.FontSize = Enum.FontSize.Size14
  730. o31 = Instance.new("TextBox", o29)
  731. s13 = script:clone()
  732. s13.Name = "Script"
  733. s13.Disabled = false
  734. so13 = Instance.new("StringValue", s13)
  735. so13.Name = "forCustomRun"
  736. so13.Value = [===[
  737. radio = script.Parent.Parent.Parent.Parent.Parent.Parent.Character.EpicRadio
  738.  
  739. while wait() do
  740. radio.Mesh.Radio.VertexColor = Vector3.new(script.Parent.Text, script.Parent.Parent.ColorRadio2.Text, script.Parent.Parent.ColorRadio3.Text)
  741. end
  742. ]===]
  743. s13.Parent = o31
  744. o31.Active = true
  745. o31.BackgroundColor3 = Color3.new(1, 1, 1)
  746. o31.BorderColor3 = Color3.new(1, 0, 0)
  747. o31.BorderSizePixel = 3
  748. o31.Name = "ColorRadio1"
  749. o31.Position = UDim2.new(0.10000000149012, 0, 0.25, 0)
  750. o31.Size = UDim2.new(0, 30, 0, 30)
  751. o31.Text = "1"
  752. o31.TextScaled = true
  753. o31.TextWrapped = true
  754. o31.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  755. o31.Font = Enum.Font.SourceSans
  756. o31.FontSize = Enum.FontSize.Size14
  757. o32 = Instance.new("TextBox", o29)
  758. o32.Active = true
  759. o32.BackgroundColor3 = Color3.new(1, 1, 1)
  760. o32.BorderColor3 = Color3.new(0.333333, 0.666667, 0)
  761. o32.BorderSizePixel = 3
  762. o32.Name = "ColorRadio2"
  763. o32.Position = UDim2.new(0.43000000715256, 0, 0.25, 0)
  764. o32.Size = UDim2.new(0, 30, 0, 30)
  765. o32.Text = "1"
  766. o32.TextScaled = true
  767. o32.TextWrapped = true
  768. o32.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  769. o32.Font = Enum.Font.SourceSans
  770. o32.FontSize = Enum.FontSize.Size14
  771. o33 = Instance.new("TextBox", o29)
  772. o33.Active = true
  773. o33.BackgroundColor3 = Color3.new(1, 1, 1)
  774. o33.BorderColor3 = Color3.new(0, 0, 1)
  775. o33.BorderSizePixel = 3
  776. o33.Name = "ColorRadio3"
  777. o33.Position = UDim2.new(0.75, 0, 0.25, 0)
  778. o33.Size = UDim2.new(0, 30, 0, 30)
  779. o33.Text = "1"
  780. o33.TextScaled = true
  781. o33.TextWrapped = true
  782. o33.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  783. o33.Font = Enum.Font.SourceSans
  784. o33.FontSize = Enum.FontSize.Size14
  785. o34 = Instance.new("TextLabel", o29)
  786. o34.BackgroundColor3 = Color3.new(1, 1, 1)
  787. o34.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  788. o34.Name = "RED"
  789. o34.Position = UDim2.new(0.15000000596046, 0, 0.5, 0)
  790. o34.Text = "RED"
  791. o34.TextColor3 = Color3.new(1, 0, 0)
  792. o34.Font = Enum.Font.ArialBold
  793. o34.FontSize = Enum.FontSize.Size24
  794. o35 = Instance.new("TextLabel", o29)
  795. o35.BackgroundColor3 = Color3.new(1, 1, 1)
  796. o35.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  797. o35.Name = "GREEN"
  798. o35.Position = UDim2.new(0.47999998927116, 0, 0.5, 0)
  799. o35.Text = "GREEN"
  800. o35.TextColor3 = Color3.new(0.333333, 0.666667, 0)
  801. o35.Font = Enum.Font.ArialBold
  802. o35.FontSize = Enum.FontSize.Size24
  803. o36 = Instance.new("TextLabel", o29)
  804. o36.BackgroundColor3 = Color3.new(1, 1, 1)
  805. o36.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  806. o36.Position = UDim2.new(0.80000001192093, 0, 0.5, 0)
  807. o36.Text = "BLUE"
  808. o36.TextColor3 = Color3.new(0, 0, 1)
  809. o36.Font = Enum.Font.ArialBold
  810. o36.FontSize = Enum.FontSize.Size24
  811. o37 = Instance.new("TextLabel", o4)
  812. s14 = script:clone()
  813. s14.Name = "Script"
  814. s14.Disabled = false
  815. so14 = Instance.new("StringValue", s14)
  816. so14.Name = "forCustomRun"
  817. so14.Value = [===[
  818. while true do
  819. local TextLabel = script.Parent
  820. wait(1)
  821. TextLabel.TextColor3 = BrickColor.random().Color
  822. end
  823. ]===]
  824. s14.Parent = o37
  825. o37.BackgroundColor3 = Color3.new(0, 0, 0)
  826. o37.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  827. o37.Name = "Credit"
  828. o37.Position = UDim2.new(0.55000001192093, 0, 0.86000001430511, 0)
  829. o37.Size = UDim2.new(0, 120, 0, 20)
  830. o37.ZIndex = 2
  831. o37.Text = "Edited by: xXLEGITxMINER106Xx"
  832. o37.TextScaled = true
  833. o37.TextWrapped = true
  834. o37.TextColor3 = Color3.new(1, 1, 1)
  835. o37.Font = Enum.Font.SourceSansBold
  836. o37.FontSize = Enum.FontSize.Size24
  837. m.Parent = game:service("Workspace")
  838. m:MakeJoints()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement