Advertisement
Its_YeBoi

Untitled

Jan 7th, 2018
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.95 KB | None | 0 0
  1. --[[ This script was made by x_Kpax ]]--
  2.  
  3. local plr = game.Players.LocalPlayer
  4. local char = plr.Character
  5. local torso = char.Torso
  6. local head = char.Head
  7.  
  8. function Random(num)
  9. local section=num % 1 * 3;
  10. local secondary=0.5 * math.pi * (section % 1);
  11. if section < 1 then
  12. return 1,1 - math.cos(secondary),1 - math.sin(secondary);
  13. elseif section < 2 then
  14. return 1 - math.sin(secondary),1,1 - math.cos(secondary);
  15. else
  16. return 1 - math.cos(secondary),1 - math.sin(secondary),1;
  17. end
  18. end
  19.  
  20. function custommessage(msg)
  21. local bg = Instance.new("BillboardGui", char)
  22. bg.Adornee = char.Head
  23. bg.Size = UDim2.new(1, 0, 1, 0)
  24. bg.StudsOffset = Vector3.new(0.5, 4, 0)
  25.  
  26. local txt = Instance.new("TextLabel")
  27. txt.Parent = bg
  28. txt.Transparency = 0
  29. txt.BackgroundColor3 = Color3.new(1,1,1)
  30. txt.BackgroundTransparency = 0
  31. txt.BorderSizePixel = 0
  32. txt.Size = UDim2.new(0, 0, 0.05, 0)
  33. txt.Position = UDim2.new(0, 0, 0, 0)
  34. txt:TweenSize(UDim2.new(5,0,0.05,0),"Out","Quart",0.5,true)
  35. txt:TweenPosition(UDim2.new(-2.5,0,0,0),"Out","Quart",0.5,true)
  36. txt.Font = "Code"
  37. txt.FontSize = "Size8"
  38. txt.TextStrokeColor3 = Color3.new(0,0,0)
  39. txt.TextStrokeTransparency = 1
  40. txt.TextScaled = true
  41. txt.BackgroundColor3 = Color3.new(0,0,0)
  42. txt.Text = " "
  43. txt.SizeConstraint = 0
  44. game:service'RunService'.RenderStepped:connect(function()
  45. txt.TextColor3 = Color3.new(Random(tick()))
  46. end)
  47. wait(0.5)
  48. txt:TweenSize(UDim2.new(5,0,2,0),"In","Quart",0.5,true)
  49. txt:TweenPosition(UDim2.new(-2.5,0,0,0),"In","Quart",0.5,true)
  50. wait(0.5)
  51. for i = 0, msg:len(), 1 do
  52. txt.Text = msg:sub(0, i)
  53. texteffect = Instance.new("Sound",char)
  54. texteffect.SoundId = "rbxassetid://156286438"
  55. texteffect.TimePosition = 0
  56. texteffect:Play()
  57. wait(0.02)
  58. end
  59. wait(3)
  60. for i = 0,1,0.1 do
  61. wait()
  62. txt.TextTransparency = i
  63. end
  64. txt:TweenSize(UDim2.new(0,0,2,0),"Out","Quart",0.25,true)
  65. txt:TweenPosition(UDim2.new(0,0,0,0),"Out","Quart",0.25,true)
  66. wait(0.25)
  67. bg:Destroy()
  68. end
  69.  
  70. coroutine.resume(coroutine.create(function()
  71. custommessage("This script was created by x_Kpax.")
  72. custommessage("Enjoy! (:")
  73. end))
  74.  
  75. plr.Chatted:connect(function(message)
  76. custommessage(message)
  77. end)
  78.  
  79. --[[ Headphones ]]--
  80.  
  81. local earright = Instance.new("Part", head)
  82. earright.Size = Vector3.new(.1,.1,.1)
  83. earright.BrickColor = BrickColor.new("Really black")
  84. earright.Material = "SmoothPlastic"
  85. earright.CanCollide = false
  86. earright.TopSurface = 10
  87. earright.BottomSurface = 10
  88. earright.LeftSurface = 10
  89. earright.RightSurface = 10
  90. earright.FrontSurface = 10
  91. earright.BackSurface = 10
  92. mesh = Instance.new("CylinderMesh", earright)
  93. mesh.Scale = Vector3.new(5,1,5)
  94. weld = Instance.new("Weld", earright)
  95. weld.Part0 = head
  96. weld.Part1 = earright
  97. weld.C0 = CFrame.new(0.65,0,0) * CFrame.Angles(0,0,math.rad(90))
  98.  
  99. local earrightdetail = Instance.new("Part", earright)
  100. earrightdetail.Size = Vector3.new(.1,.1,.1)
  101. earrightdetail.BrickColor = BrickColor.new("Really red")
  102. earrightdetail.Material = "SmoothPlastic"
  103. earrightdetail.CanCollide = false
  104. earrightdetail.TopSurface = 10
  105. earrightdetail.BottomSurface = 10
  106. earrightdetail.LeftSurface = 10
  107. earrightdetail.RightSurface = 10
  108. earrightdetail.FrontSurface = 10
  109. earrightdetail.BackSurface = 10
  110. mesh = Instance.new("CylinderMesh", earrightdetail)
  111. mesh.Scale = Vector3.new(5.1,0.1,5.1)
  112. weld = Instance.new("Weld", earrightdetail)
  113. weld.Part0 = earright
  114. weld.Part1 = earrightdetail
  115. weld.C0 = CFrame.new(0,0.05,0) * CFrame.Angles(0,0,0)
  116.  
  117. -- K right
  118. local earrightdetail = Instance.new("Part", earright)
  119. earrightdetail.Size = Vector3.new(.1,.1,.1)
  120. earrightdetail.BrickColor = BrickColor.new("Really red")
  121. earrightdetail.Material = "SmoothPlastic"
  122. earrightdetail.CanCollide = false
  123. earrightdetail.TopSurface = 10
  124. earrightdetail.BottomSurface = 10
  125. earrightdetail.LeftSurface = 10
  126. earrightdetail.RightSurface = 10
  127. earrightdetail.FrontSurface = 10
  128. earrightdetail.BackSurface = 10
  129. mesh = Instance.new("SpecialMesh", earrightdetail)
  130. mesh.MeshType = "Sphere"
  131. mesh.Scale = Vector3.new(3.5,0.07,0.22)
  132. weld = Instance.new("Weld", earrightdetail)
  133. weld.Part0 = earright
  134. weld.Part1 = earrightdetail
  135. weld.C0 = CFrame.new(0,-0.05,0.05) * CFrame.Angles(0,0,0)
  136. game:service'RunService'.RenderStepped:connect(function()
  137. earrightdetail.BrickColor = BrickColor.new(Random(tick()))
  138. end)
  139.  
  140. local earrightdetail = Instance.new("Part", earright)
  141. earrightdetail.Size = Vector3.new(.1,.1,.1)
  142. earrightdetail.BrickColor = BrickColor.new("Really red")
  143. earrightdetail.Material = "SmoothPlastic"
  144. earrightdetail.CanCollide = false
  145. earrightdetail.TopSurface = 10
  146. earrightdetail.BottomSurface = 10
  147. earrightdetail.LeftSurface = 10
  148. earrightdetail.RightSurface = 10
  149. earrightdetail.FrontSurface = 10
  150. earrightdetail.BackSurface = 10
  151. mesh = Instance.new("SpecialMesh", earrightdetail)
  152. mesh.MeshType = "Sphere"
  153. mesh.Scale = Vector3.new(1.5,0.07,0.25)
  154. weld = Instance.new("Weld", earrightdetail)
  155. weld.Part0 = earright
  156. weld.Part1 = earrightdetail
  157. weld.C0 = CFrame.new(-0.025,-0.05,-0.01) * CFrame.Angles(0,math.rad(45),0)
  158. game:service'RunService'.RenderStepped:connect(function()
  159. earrightdetail.BrickColor = BrickColor.new(Random(tick()))
  160. end)
  161.  
  162. local earrightdetail = Instance.new("Part", earright)
  163. earrightdetail.Size = Vector3.new(.1,.1,.1)
  164. earrightdetail.BrickColor = BrickColor.new("Really red")
  165. earrightdetail.Material = "SmoothPlastic"
  166. earrightdetail.CanCollide = false
  167. earrightdetail.TopSurface = 10
  168. earrightdetail.BottomSurface = 10
  169. earrightdetail.LeftSurface = 10
  170. earrightdetail.RightSurface = 10
  171. earrightdetail.FrontSurface = 10
  172. earrightdetail.BackSurface = 10
  173. mesh = Instance.new("SpecialMesh", earrightdetail)
  174. mesh.MeshType = "Sphere"
  175. mesh.Scale = Vector3.new(1.5,0.07,0.25)
  176. weld = Instance.new("Weld", earrightdetail)
  177. weld.Part0 = earright
  178. weld.Part1 = earrightdetail
  179. weld.C0 = CFrame.new(-0.12,-0.05,-0.01) * CFrame.Angles(0,math.rad(-45),0)
  180. game:service'RunService'.RenderStepped:connect(function()
  181. earrightdetail.BrickColor = BrickColor.new(Random(tick()))
  182. end)
  183.  
  184. local earleft = Instance.new("Part", head)
  185. earleft.Size = Vector3.new(.1,.1,.1)
  186. earleft.BrickColor = BrickColor.new("Really black")
  187. earright.Material = "SmoothPlastic"
  188. earleft.CanCollide = false
  189. earleft.TopSurface = 10
  190. earleft.BottomSurface = 10
  191. earleft.LeftSurface = 10
  192. earleft.RightSurface = 10
  193. earleft.FrontSurface = 10
  194. earleft.BackSurface = 10
  195. mesh = Instance.new("CylinderMesh", earleft)
  196. mesh.Scale = Vector3.new(5,1,5)
  197. weld = Instance.new("Weld", earleft)
  198. weld.Part0 = head
  199. weld.Part1 = earleft
  200. weld.C0 = CFrame.new(-0.65,0,0) * CFrame.Angles(0,0,math.rad(90))
  201.  
  202. local earleftdetail = Instance.new("Part", earleft)
  203. earleftdetail.Size = Vector3.new(.1,.1,.1)
  204. earleftdetail.BrickColor = BrickColor.new("Really red")
  205. earleftdetail.Material = "SmoothPlastic"
  206. earleftdetail.CanCollide = false
  207. earleftdetail.TopSurface = 10
  208. earleftdetail.BottomSurface = 10
  209. earleftdetail.LeftSurface = 10
  210. earleftdetail.RightSurface = 10
  211. earleftdetail.FrontSurface = 10
  212. earleftdetail.BackSurface = 10
  213. mesh = Instance.new("CylinderMesh", earleftdetail)
  214. mesh.Scale = Vector3.new(5.1,0.1,5.1)
  215. weld = Instance.new("Weld", earrightdetail)
  216. weld.Part0 = earleft
  217. weld.Part1 = earleftdetail
  218. weld.C0 = CFrame.new(0,-0.05,0) * CFrame.Angles(0,0,0)
  219.  
  220. -- K left
  221. local earleftdetail = Instance.new("Part", earleft)
  222. earleftdetail.Size = Vector3.new(.1,.1,.1)
  223. earleftdetail.BrickColor = BrickColor.new("Really red")
  224. earleftdetail.Material = "SmoothPlastic"
  225. earleftdetail.CanCollide = false
  226. earleftdetail.TopSurface = 10
  227. earleftdetail.BottomSurface = 10
  228. earleftdetail.LeftSurface = 10
  229. earleftdetail.RightSurface = 10
  230. earleftdetail.FrontSurface = 10
  231. earleftdetail.BackSurface = 10
  232. mesh = Instance.new("SpecialMesh", earleftdetail)
  233. mesh.MeshType = "Sphere"
  234. mesh.Scale = Vector3.new(3.5,0.07,0.22)
  235. weld = Instance.new("Weld", earleftdetail)
  236. weld.Part0 = earleft
  237. weld.Part1 = earleftdetail
  238. weld.C0 = CFrame.new(0,0.05,-0.05) * CFrame.Angles(0,0,0)
  239. game:service'RunService'.RenderStepped:connect(function()
  240. earleftdetail.BrickColor = BrickColor.new(Random(tick()))
  241. end)
  242.  
  243. local earleftdetail = Instance.new("Part", earleft)
  244. earleftdetail.Size = Vector3.new(.1,.1,.1)
  245. earleftdetail.BrickColor = BrickColor.new("Really red")
  246. earleftdetail.Material = "SmoothPlastic"
  247. earleftdetail.CanCollide = false
  248. earleftdetail.TopSurface = 10
  249. earleftdetail.BottomSurface = 10
  250. earleftdetail.LeftSurface = 10
  251. earleftdetail.RightSurface = 10
  252. earleftdetail.FrontSurface = 10
  253. earleftdetail.BackSurface = 10
  254. mesh = Instance.new("SpecialMesh", earleftdetail)
  255. mesh.MeshType = "Sphere"
  256. mesh.Scale = Vector3.new(1.5,0.07,0.25)
  257. weld = Instance.new("Weld", earleftdetail)
  258. weld.Part0 = earleft
  259. weld.Part1 = earleftdetail
  260. weld.C0 = CFrame.new(-0.025,0.05,0.01) * CFrame.Angles(0,math.rad(-45),0)
  261. game:service'RunService'.RenderStepped:connect(function()
  262. earleftdetail.BrickColor = BrickColor.new(Random(tick()))
  263. end)
  264.  
  265.  
  266. local earleftdetail = Instance.new("Part", earleft)
  267. earleftdetail.Size = Vector3.new(.1,.1,.1)
  268. earleftdetail.BrickColor = BrickColor.new("Really red")
  269. earleftdetail.Material = "SmoothPlastic"
  270. earleftdetail.CanCollide = false
  271. earleftdetail.TopSurface = 10
  272. earleftdetail.BottomSurface = 10
  273. earleftdetail.LeftSurface = 10
  274. earleftdetail.RightSurface = 10
  275. earleftdetail.FrontSurface = 10
  276. earleftdetail.BackSurface = 10
  277. mesh = Instance.new("SpecialMesh", earleftdetail)
  278. mesh.MeshType = "Sphere"
  279. mesh.Scale = Vector3.new(1.5,0.07,0.25)
  280. weld = Instance.new("Weld", earleftdetail)
  281. weld.Part0 = earleft
  282. weld.Part1 = earleftdetail
  283. weld.C0 = CFrame.new(-0.12,0.05,0.01) * CFrame.Angles(0,math.rad(45),0)
  284. game:service'RunService'.RenderStepped:connect(function()
  285. earleftdetail.BrickColor = BrickColor.new(Random(tick()))
  286. end)
  287.  
  288.  
  289.  
  290. local band = Instance.new("Part", head)
  291. band.Size = Vector3.new(.1,.1,.1)
  292. band.BrickColor = BrickColor.new("Really black")
  293. band.Material = "SmoothPlastic"
  294. band.CanCollide = false
  295. band.TopSurface = 10
  296. band.BottomSurface = 10
  297. band.LeftSurface = 10
  298. band.RightSurface = 10
  299. band.FrontSurface = 10
  300. band.BackSurface = 10
  301. mesh = Instance.new("SpecialMesh", band)
  302. mesh.MeshId = "rbxassetid://10835402"
  303. mesh.Scale = Vector3.new(0.95,0.25,0.3)
  304. weld = Instance.new("Weld", band)
  305. weld.Part0 = head
  306. weld.Part1 = band
  307. weld.C0 = CFrame.new(0,0.25,0) * CFrame.Angles(math.rad(180),0,math.rad(0))
  308.  
  309. local band = Instance.new("Part", head)
  310. band.Size = Vector3.new(.1,.1,.1)
  311. band.BrickColor = BrickColor.new("Really black")
  312. band.Material = "SmoothPlastic"
  313. band.CanCollide = false
  314. band.TopSurface = 10
  315. band.BottomSurface = 10
  316. band.LeftSurface = 10
  317. band.RightSurface = 10
  318. band.FrontSurface = 10
  319. band.BackSurface = 10
  320. mesh = Instance.new("SpecialMesh", band)
  321. mesh.MeshId = "rbxassetid://1185246"
  322. mesh.Scale = Vector3.new(1.86,0.5,0.5)
  323. weld = Instance.new("Weld", band)
  324. weld.Part0 = head
  325. weld.Part1 = band
  326. weld.C0 = CFrame.new(0,0.5,0) * CFrame.Angles(math.rad(180),0,math.rad(0))
  327.  
  328. local sound = Instance.new("Sound",head)
  329. sound.Name = "Mesh"
  330. sound.Looped = true
  331. sound.Volume = 10
  332. sound.EmitterSize = 5
  333.  
  334. local particles = Instance.new("ParticleEmitter", earright)
  335. particles.VelocitySpread = 20
  336. particles.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.1), NumberSequenceKeypoint.new(1, 0.2)})
  337. particles.Rate = 0
  338. particles.Speed = NumberRange.new(2,5)
  339. particles.Lifetime = NumberRange.new(2, 2)
  340. particles.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0), NumberSequenceKeypoint.new(1, 1)})
  341. particles.Rotation = NumberRange.new(0, 0)
  342. particles.LightEmission = 0
  343. particles.Texture = "http://www.roblox.com/asset/?id=324085792"
  344. particles.LockedToPart = false
  345. particles.EmissionDirection = 4
  346. local particles2 = Instance.new("ParticleEmitter", earleft)
  347. particles2.VelocitySpread = 20
  348. particles2.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.1), NumberSequenceKeypoint.new(1, 0.2)})
  349. particles2.Rate = 0
  350. particles2.Speed = NumberRange.new(2,5)
  351. particles2.Lifetime = NumberRange.new(2, 2)
  352. particles2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0), NumberSequenceKeypoint.new(1, 1)})
  353. particles2.Rotation = NumberRange.new(0, 0)
  354. particles2.LightEmission = 0
  355. particles2.EmissionDirection = 1
  356. particles2.Texture = "http://www.roblox.com/asset/?id=324085792"
  357. particles2.LockedToPart = false
  358.  
  359. game:service'RunService'.RenderStepped:connect(function()
  360. if sound.PlaybackLoudness >= 200 then
  361. particles.Rate = sound.PlaybackLoudness/20
  362. particles2.Rate = sound.PlaybackLoudness/20
  363. else
  364. particles.Rate = 0
  365. particles2.Rate = 0
  366. end
  367. end)
  368.  
  369. --[[ Music Gui ]] --
  370.  
  371. local gui = Instance.new("ScreenGui",game.Players.LocalPlayer.PlayerGui)
  372. local hidegui = Instance.new("ScreenGui",game.Players.LocalPlayer.PlayerGui)
  373.  
  374. local frame = Instance.new("Frame",gui)
  375. frame.BackgroundColor3 = Color3.new(30/255,30/255,30/255)
  376. frame.BackgroundTransparency = 0.3
  377. frame.BorderColor3 = Color3.new(0,0,0)
  378. frame.BorderSizePixel = 1
  379. frame.Size = UDim2.new(0,450,0,375)
  380. frame:TweenPosition(UDim2.new(0,75,.5,-100),"Out","Linear",2,true)
  381. frame.Draggable = true
  382.  
  383. local scrollingframe = Instance.new("ScrollingFrame",frame)
  384. scrollingframe.BackgroundColor3 = Color3.new(30/255,30/255,30/255)
  385. scrollingframe.BackgroundTransparency = 0.3
  386. scrollingframe.BorderColor3 = Color3.new(0,0,0)
  387. scrollingframe.BorderSizePixel = 0
  388. scrollingframe.Size = UDim2.new(0,450,0,375)
  389. scrollingframe:TweenPosition(UDim2.new(1,0,0,0),"Out","Linear",2,true)
  390. scrollingframe.Visible = false
  391.  
  392. local song1 = Instance.new("TextButton",scrollingframe)
  393. song1.BackgroundColor3 = Color3.new(0,0,128/255)
  394. song1.BorderColor3 = Color3.new(0,0,0)
  395. song1.BackgroundTransparency = 0.5
  396. song1.BorderSizePixel = 3
  397. song1.Size = UDim2.new(0.97,0,0.1,0)
  398. song1.Position = UDim2.new(0,0,0,0)
  399. song1.Text = "The Chainsmokers - Closer ft. Halsey"
  400. song1.TextColor3 = Color3.new(255,255,255)
  401. song1.Font = "SciFi"
  402. song1.TextScaled = true
  403.  
  404. local song2 = Instance.new("TextButton",scrollingframe)
  405. song2.BackgroundColor3 = Color3.new(0,0,128/255)
  406. song2.BorderColor3 = Color3.new(0,0,0)
  407. song2.BackgroundTransparency = 0.5
  408. song2.BorderSizePixel = 3
  409. song2.Size = UDim2.new(0.97,0,0.1,0)
  410. song2.Position = UDim2.new(0,0,0.1,0)
  411. song2.Text = "Gary Jules - Mad World"
  412. song2.TextColor3 = Color3.new(255,255,255)
  413. song2.Font = "SciFi"
  414. song2.TextScaled = true
  415.  
  416. local song3 = Instance.new("TextButton",scrollingframe)
  417. song3.BackgroundColor3 = Color3.new(0,0,128/255)
  418. song3.BorderColor3 = Color3.new(0,0,0)
  419. song3.BackgroundTransparency = 0.5
  420. song3.BorderSizePixel = 3
  421. song3.Size = UDim2.new(0.97,0,0.1,0)
  422. song3.Position = UDim2.new(0,0,0.2,0)
  423. song3.Text = "Bag Raiders - Shooting Stars"
  424. song3.TextColor3 = Color3.new(255,255,255)
  425. song3.Font = "SciFi"
  426. song3.TextScaled = true
  427.  
  428. local song4 = Instance.new("TextButton",scrollingframe)
  429. song4.BackgroundColor3 = Color3.new(0,0,128/255)
  430. song4.BorderColor3 = Color3.new(0,0,0)
  431. song4.BackgroundTransparency = 0.5
  432. song4.BorderSizePixel = 3
  433. song4.Size = UDim2.new(0.97,0,0.1,0)
  434. song4.Position = UDim2.new(0,0,0.3,0)
  435. song4.Text = "Melanie Martinez - Pacify Her"
  436. song4.TextColor3 = Color3.new(255,255,255)
  437. song4.Font = "SciFi"
  438. song4.TextScaled = true
  439.  
  440. local song5 = Instance.new("TextButton",scrollingframe)
  441. song5.BackgroundColor3 = Color3.new(0,0,128/255)
  442. song5.BorderColor3 = Color3.new(0,0,0)
  443. song5.BackgroundTransparency = 0.5
  444. song5.BorderSizePixel = 3
  445. song5.Size = UDim2.new(0.97,0,0.1,0)
  446. song5.Position = UDim2.new(0,0,0.4,0)
  447. song5.Text = "Calvin Harris - This Is What You Came For"
  448. song5.TextColor3 = Color3.new(255,255,255)
  449. song5.Font = "SciFi"
  450. song5.TextScaled = true
  451.  
  452. local song6 = Instance.new("TextButton",scrollingframe)
  453. song6.BackgroundColor3 = Color3.new(0,0,128/255)
  454. song6.BorderColor3 = Color3.new(0,0,0)
  455. song6.BackgroundTransparency = 0.5
  456. song6.BorderSizePixel = 3
  457. song6.Size = UDim2.new(0.97,0,0.1,0)
  458. song6.Position = UDim2.new(0,0,1,0)
  459. song6.Text = "Life Goes On"
  460. song6.TextColor3 = Color3.new(255,255,255)
  461. song6.Font = "SciFi"
  462. song6.TextScaled = true
  463.  
  464. local song7 = Instance.new("TextButton",scrollingframe)
  465. song7.BackgroundColor3 = Color3.new(0,0,128/255)
  466. song7.BorderColor3 = Color3.new(0,0,0)
  467. song7.BackgroundTransparency = 0.5
  468. song7.BorderSizePixel = 3
  469. song7.Size = UDim2.new(0.97,0,0.1,0)
  470. song7.Position = UDim2.new(0,0,0.5,0)
  471. song7.Text = "ZAYN, Taylor Swift - I Don't Wanna Live Forever"
  472. song7.TextColor3 = Color3.new(255,255,255)
  473. song7.Font = "SciFi"
  474. song7.TextScaled = true
  475.  
  476. local song8 = Instance.new("TextButton",scrollingframe)
  477. song8.BackgroundColor3 = Color3.new(0,0,128/255)
  478. song8.BorderColor3 = Color3.new(0,0,0)
  479. song8.BackgroundTransparency = 0.5
  480. song8.BorderSizePixel = 3
  481. song8.Size = UDim2.new(0.97,0,0.1,0)
  482. song8.Position = UDim2.new(0,0,0.6,0)
  483. song8.Text = "Far East Movement - Like A G6 ft. The Cataracs, DEV"
  484. song8.TextColor3 = Color3.new(255,255,255)
  485. song8.Font = "SciFi"
  486. song8.TextScaled = true
  487.  
  488. local song9 = Instance.new("TextButton",scrollingframe)
  489. song9.BackgroundColor3 = Color3.new(0,0,128/255)
  490. song9.BorderColor3 = Color3.new(0,0,0)
  491. song9.BackgroundTransparency = 0.5
  492. song9.BorderSizePixel = 3
  493. song9.Size = UDim2.new(0.97,0,0.1,0)
  494. song9.Position = UDim2.new(0,0,0.7,0)
  495. song9.Text = "Kodak Black - Tunnel Vision"
  496. song9.TextColor3 = Color3.new(255,255,255)
  497. song9.Font = "SciFi"
  498. song9.TextScaled = true
  499.  
  500. local song10 = Instance.new("TextButton",scrollingframe)
  501. song10.BackgroundColor3 = Color3.new(0,0,128/255)
  502. song10.BorderColor3 = Color3.new(0,0,0)
  503. song10.BackgroundTransparency = 0.5
  504. song10.BorderSizePixel = 3
  505. song10.Size = UDim2.new(0.97,0,0.1,0)
  506. song10.Position = UDim2.new(0,0,0.8,0)
  507. song10.Text = "Kito & Reija Lee - Starting Line"
  508. song10.TextColor3 = Color3.new(255,255,255)
  509. song10.Font = "SciFi"
  510. song10.TextScaled = true
  511.  
  512. local song11 = Instance.new("TextButton",scrollingframe)
  513. song11.BackgroundColor3 = Color3.new(0,0,128/255)
  514. song11.BorderColor3 = Color3.new(0,0,0)
  515. song11.BackgroundTransparency = 0.5
  516. song11.BorderSizePixel = 3
  517. song11.Size = UDim2.new(0.97,0,0.1,0)
  518. song11.Position = UDim2.new(0,0,0.9,0)
  519. song11.Text = "French Montana - Lockjaw ft. Kodak Black"
  520. song11.TextColor3 = Color3.new(255,255,255)
  521. song11.Font = "SciFi"
  522. song11.TextScaled = true
  523.  
  524. local hideframe = Instance.new("Frame",hidegui)
  525. hideframe.BackgroundColor3 = Color3.new(30/255,30/255,30/255)
  526. hideframe.BackgroundTransparency = 1
  527. hideframe.BorderColor3 = Color3.new(0,0,0)
  528. hideframe.BorderSizePixel = 1
  529. hideframe.Size = UDim2.new(0,375,0,75)
  530. hideframe:TweenPosition(UDim2.new(0,75,.5,-100),"Out","Linear",2,true)
  531.  
  532. local hide = Instance.new("TextButton",hideframe)
  533. hide.BackgroundColor3 = Color3.new(0,0,0)
  534. hide.BorderColor3 = Color3.new(0,0,0)
  535. hide.BorderSizePixel = 1
  536. hide.BackgroundTransparency = 0
  537. hide.Size = UDim2.new(1,0,1,0)
  538. hide.Rotation = -90
  539. hide.Position = UDim2.new(-0.6,0,2,0)
  540. hide.Text = "Hide"
  541. hide.TextColor3 = Color3.new(255/255,255/255,255/255)
  542. hide.Font = "SciFi"
  543. hide.TextScaled = true
  544.  
  545.  
  546. local playb = Instance.new("TextButton",frame)
  547. playb.BackgroundColor3 = Color3.new(0,85/255,0)
  548. playb.BorderColor3 = Color3.new(0,0,0)
  549. playb.BorderSizePixel = 1
  550. playb.Size = UDim2.new(.22,0,.12,0)
  551. playb.Position = UDim2.new(.6,0,.7,0)
  552. playb.Text = "Play"
  553. playb.TextColor3 = Color3.new(255,255,255)
  554. playb.Font = "SciFi"
  555. playb.TextScaled = true
  556.  
  557. local stopb = Instance.new("TextButton",frame)
  558. stopb.BackgroundColor3 = Color3.new(170/255,0,0)
  559. stopb.BorderColor3 = Color3.new(0,0,0)
  560. stopb.BorderSizePixel = 1
  561. stopb.Size = UDim2.new(.22,0,.12,0)
  562. stopb.Position = UDim2.new(.6,0,.85,0)
  563. stopb.Text = "Stop"
  564. stopb.TextColor3 = Color3.new(255,255,255)
  565. stopb.Font = "SciFi"
  566. stopb.TextScaled = true
  567.  
  568. local stipb = Instance.new("TextBox",frame)
  569. stipb.BackgroundColor3 = Color3.new(200/255,200/255,200/255)
  570. stipb.BackgroundTransparency = 0.2
  571. stipb.BorderColor3 = Color3.new(0,0,0)
  572. stipb.BorderSizePixel = 2
  573. stipb.Size = UDim2.new(.5,0,.25,0)
  574. stipb.Position = UDim2.new(.25,0,.40,0)
  575. stipb.Text = "Insert Audio ID!"
  576. stipb.TextColor3 = Color3.new(0,0,0)
  577. stipb.TextScaled = true
  578.  
  579. local volb = Instance.new("TextLabel",frame)
  580. volb.BackgroundColor3 = Color3.new(200/255,200/255,200/255)
  581. volb.BackgroundTransparency = 0.2
  582. volb.BorderColor3 = Color3.new(0,0,0)
  583. volb.BorderSizePixel = 2
  584. volb.Size = UDim2.new(.1,0,.1,0)
  585. volb.Position = UDim2.new(.45,0,.25,0)
  586. volb.Text = sound.Volume
  587. volb.TextColor3 = Color3.new(0,0,0)
  588. volb.TextScaled = true
  589.  
  590. local voladd = Instance.new("TextButton",frame)
  591. voladd.BackgroundColor3 = Color3.new(200/255,200/255,200/255)
  592. voladd.BackgroundTransparency = 0.2
  593. voladd.BorderColor3 = Color3.new(0,0,0)
  594. voladd.BorderSizePixel = 2
  595. voladd.Size = UDim2.new(.09,0,.09,0)
  596. voladd.Position = UDim2.new(.57,0,.259,0)
  597. voladd.Text = "+"
  598. voladd.TextColor3 = Color3.new(0,0,0)
  599. voladd.TextScaled = true
  600.  
  601. local volremove = Instance.new("TextButton",frame)
  602. volremove.BackgroundColor3 = Color3.new(200/255,200/255,200/255)
  603. volremove.BackgroundTransparency = 0.2
  604. volremove.BorderColor3 = Color3.new(0,0,0)
  605. volremove.BorderSizePixel = 2
  606. volremove.Size = UDim2.new(.09,0,.09,0)
  607. volremove.Position = UDim2.new(.33,0,.259,0)
  608. volremove.Text = "-"
  609. volremove.TextColor3 = Color3.new(0,0,0)
  610. volremove.TextScaled = true
  611.  
  612. local discoON = Instance.new("TextButton",frame)
  613. discoON.BackgroundColor3 = Color3.new(200/255,200/255,200/255)
  614. discoON.BackgroundTransparency = 0.2
  615. discoON.BorderColor3 = Color3.new(0,0,0)
  616. discoON.BorderSizePixel = 1
  617. discoON.Size = UDim2.new(0.16,0,0.15,0)
  618. discoON.Position = UDim2.new(.77,0,.05,0)
  619. discoON.Text = "Disco ON"
  620. discoON.TextColor3 = Color3.new(0,0,0)
  621. discoON.Font = "SciFi"
  622. discoON.TextScaled = true
  623. discoON.Visible = true
  624.  
  625. local discoOFF = Instance.new("TextButton",frame)
  626. discoOFF.BackgroundColor3 = Color3.new(200/255,200/255,200/255)
  627. discoOFF.BackgroundTransparency = 0.2
  628. discoOFF.BorderColor3 = Color3.new(0,0,0)
  629. discoOFF.BorderSizePixel = 1
  630. discoOFF.Size = UDim2.new(0.16,0,0.15,0)
  631. discoOFF.Position = UDim2.new(.77,0,.22,0)
  632. discoOFF.Text = "Disco OFF"
  633. discoOFF.TextColor3 = Color3.new(0,0,0)
  634. discoOFF.Font = "SciFi"
  635. discoOFF.TextScaled = true
  636. discoOFF.Visible = true
  637.  
  638. local speed = Instance.new("TextButton",frame)
  639. speed.BackgroundColor3 = Color3.new(200/255,200/255,200/255)
  640. speed.BackgroundTransparency = 0.2
  641. speed.BorderColor3 = Color3.new(0,0,0)
  642. speed.BorderSizePixel = 1
  643. speed.Size = UDim2.new(.2,0,.15,0)
  644. speed.Position = UDim2.new(1,0,0,0)
  645. speed.Text = "Speed"
  646. speed.TextColor3 = Color3.new(0,0,0)
  647. speed.TextScaled = true
  648. speed.Font = "SciFi"
  649. speed.Visible = false
  650.  
  651. local speedbox = Instance.new("TextBox",frame)
  652. speedbox.BackgroundColor3 = Color3.new(200/255,200/255,200/255)
  653. speedbox.BackgroundTransparency = 0.2
  654. speedbox.BorderColor3 = Color3.new(0,0,0)
  655. speedbox.BorderSizePixel = 1
  656. speedbox.Size = UDim2.new(.2,0,.15,0)
  657. speedbox.Position = UDim2.new(1,0,0,0)
  658. speedbox.Text = "Speed"
  659. speedbox.TextColor3 = Color3.new(0,0,0)
  660. speedbox.TextScaled = true
  661. speedbox.Font = "SciFi"
  662. speedbox.Visible = false
  663.  
  664. local musiclist = Instance.new("TextButton",frame)
  665. musiclist.BackgroundColor3 = Color3.new(200/255,200/255,200/255)
  666. musiclist.BackgroundTransparency = 0.2
  667. musiclist.BorderColor3 = Color3.new(0,0,0)
  668. musiclist.BorderSizePixel = 1
  669. musiclist.Size = UDim2.new(.2,0,.15,0)
  670. musiclist.Position = UDim2.new(0.05,0,.05,0)
  671. musiclist.Text = "Toggle List"
  672. musiclist.TextColor3 = Color3.new(0,0,0)
  673. musiclist.Font = "SciFi"
  674. musiclist.TextScaled = true
  675.  
  676. local Playing = false
  677.  
  678. musiclist.MouseButton1Click:connect(function()
  679. if scrollingframe.Visible == false then
  680. scrollingframe.Visible = true
  681. else
  682. scrollingframe.Visible = false
  683. end
  684. end)
  685.  
  686. song1.MouseButton1Click:connect(function()
  687. sound:Stop()
  688. sound.SoundId = "rbxassetid://516050206"
  689. sound:Play()
  690. end)
  691.  
  692. song2.MouseButton1Click:connect(function()
  693. sound:Stop()
  694. sound.SoundId = "rbxassetid://184721280"
  695. sound:Play()
  696. end)
  697.  
  698. song3.MouseButton1Click:connect(function()
  699. sound:Stop()
  700. sound.SoundId = "rbxassetid://631841788"
  701. sound:Play()
  702. end)
  703.  
  704. song4.MouseButton1Click:connect(function()
  705. sound:Stop()
  706. sound.SoundId = "rbxassetid://645762103"
  707. sound:Play()
  708. end)
  709.  
  710. song5.MouseButton1Click:connect(function()
  711. sound:Stop()
  712. sound.SoundId = "rbxassetid://413885541"
  713. sound:Play()
  714. end)
  715.  
  716. song6.MouseButton1Click:connect(function()
  717. sound:Stop()
  718. sound.SoundId = "rbxassetid://573853447"
  719. sound:Play()
  720. end)
  721.  
  722. song7.MouseButton1Click:connect(function()
  723. sound:Stop()
  724. sound.SoundId = "rbxassetid://569155608"
  725. sound:Play()
  726. end)
  727.  
  728. song8.MouseButton1Click:connect(function()
  729. sound:Stop()
  730. sound.SoundId = "rbxassetid://449497799"
  731. sound:Play()
  732. end)
  733.  
  734. song9.MouseButton1Click:connect(function()
  735. sound:Stop()
  736. sound.SoundId = "rbxassetid://668971343"
  737. sound:Play()
  738. end)
  739.  
  740. song10.MouseButton1Click:connect(function()
  741. sound:Stop()
  742. sound.SoundId = "rbxassetid://181119184"
  743. sound:Play()
  744. end)
  745.  
  746. song11.MouseButton1Click:connect(function()
  747. sound:Stop()
  748. sound.SoundId = "rbxassetid://433772416"
  749. sound:Play()
  750. end)
  751.  
  752. speed.MouseButton1Click:connect(function()
  753. if speedbox.Visible == false then
  754.  
  755. speed.Text = "[Hide]"
  756. speedbox.Visible = true
  757. speedbox:TweenPosition(UDim2.new(1,0,0.2,0),"Out","Back",1,true)
  758.  
  759. else speedbox.Visible = false
  760. speed.Text = "Speed"
  761. speedbox:TweenPosition(UDim2.new(1,0,0,0),"Out","Back",1,true)
  762. end
  763. end)
  764.  
  765. hide.MouseButton1Click:connect(function()
  766. if frame.Visible == true then
  767. frame:TweenPosition(UDim2.new(0,-500,.5,-100),"In","Back",0.5,true)
  768. hide.Text = "Show"
  769. wait(0.5)
  770. frame.Visible = false
  771.  
  772. else
  773. frame.Visible = true
  774. hide.Text = "Hide"
  775. frame:TweenPosition(UDim2.new(0,75,.5,-100),"Out","Bounce",1,true)
  776. end
  777. end)
  778.  
  779. discoON.MouseButton1Click:connect(function()
  780. local rekt = Instance.new('ColorCorrectionEffect', game.Lighting)
  781. rekt.TintColor = Color3.new(85, 255, 127)
  782. rekt.Brightness = 1
  783. --rekt.Brightness = -0.2
  784. rekt.Contrast = 0
  785. rekt.Saturation = 0.7
  786. coroutine.resume(coroutine.create(function()
  787. while wait() do
  788. rekt.TintColor = Color3.new(math.random(0,255)/255,math.random(0,255)/255,math.random(0,255)/255)
  789. end
  790. end))
  791. end)
  792.  
  793. discoOFF.MouseButton1Down:connect(function()
  794. workspace.Terrain:Clear()
  795. workspace.Gravity = 196.2
  796. workspace.Name = "Workspace"
  797. game:GetService("Lighting").Name = "Lighting"
  798. game:GetService("Lighting").TimeOfDay = 14
  799. game:GetService("Lighting").Ambient = Color3.new(0,0,0)
  800. game:GetService("Lighting").Brightness = 1
  801. game:GetService("Lighting").ColorShift_Bottom = Color3.new(0,0,0)
  802. game:GetService("Lighting").ColorShift_Top = Color3.new(0,0,0)
  803. game:GetService("Lighting").OutdoorAmbient = Color3.fromRGB(127, 127, 127)
  804. game:GetService("Lighting").GeographicLatitude = 41.733
  805. game:GetService("Lighting").FogStart = 0
  806. game:GetService("Lighting").FogEnd = 100000
  807. for i,v in pairs(game:GetService("Lighting"):GetChildren()) do
  808. pcall(function()
  809. v:Remove()
  810. end)
  811. end
  812. end)
  813.  
  814. voladd.MouseButton1Click:connect(function()
  815. sound.Volume = sound.Volume + 1
  816. volb.Text = sound.Volume
  817. end)
  818.  
  819. volremove.MouseButton1Click:connect(function()
  820. sound.Volume = sound.Volume - 1
  821. volb.Text = sound.Volume
  822. end)
  823.  
  824. playb.MouseButton1Click:connect(function()
  825. sound:Stop()
  826. sound.SoundId = "rbxassetid://" .. stipb.Text
  827. sound:Play()
  828. Playing = true
  829. end)
  830.  
  831. stopb.MouseButton1Click:connect(function()
  832. sound:Stop()
  833. Playing = false
  834. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement