dylan12312

Untitled

Apr 3rd, 2018
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.05 KB | None | 0 0
  1. local plr = game:GetService('Players').LocalPlayer;
  2. local char = plr.Character;
  3. function cycle(num)
  4. local section=num % 1 * 3;
  5. local secondary=0.5 * math.pi * (section % 1);
  6. if section < 1 then
  7. return 1,1 - math.cos(secondary),1 - math.sin(secondary);
  8. elseif section < 2 then
  9. return 1 - math.sin(secondary),1,1 - math.cos(secondary);
  10. else
  11. return 1 - math.cos(secondary),1 - math.sin(secondary),1;
  12. end
  13. end
  14. wait(1)
  15. local play = true
  16. local Pause = false
  17. o81 = Instance.new("Sound")
  18. o81.Parent = plr.Character.Torso
  19. o81.SoundId = "rbxassetid://"
  20. o81.Volume = 10
  21. o81.Looped = false
  22. local Sound=plr.Character.Torso.Sound
  23. --function chat end--
  24. local Songs = {
  25. {SongName = 'Trigger', SongDesc = 'Nil', Creator = 'Ayeekillerpro', ID = 301999080};
  26. {SongName = 'Lindsey Sterling - Crystallize', SongDesc = 'Nil', Creator = 'Nil', ID = 165000427};
  27. {SongName = 'jojo2', Creator ='Nil', ID = 193424165};
  28. {SongName = 'jojo3', Creator ='Nil', ID = 238225411};
  29. {SongName = 'Burnt Rice - Shawn Wasabi', SongDesc = 'Nil', Creator = 'Nil', ID = 327095350};
  30. {SongName = 'jojo', Creator ='Nil', ID = 215717985};
  31. {SongName = 'Condemnation Wings', Creator ='Nil', ID = 379881622};
  32. {SongName = 'Fall Out Boy - Centuries', SongDesc = 'Nil', Creator = 'Nil', ID = 181547615};
  33. {SongName = 'Black Beatles', SongDesc = 'Nil', Creator = 'Nil', ID = 492272696};
  34. {SongName = 'Tristam & Braken - Frame of Mind', Creator = 'Nil', ID = 453388373};
  35. {SongName = 'Tristam - Crave', Creator = 'Nil', ID = 453400867};
  36. {SongName = 'Kent - Don\'t Mind', Creator = 'Nil', ID = 400157162};
  37. {SongName = 'Pegboard Nerds - Disconnected', Creator = 'Nil', ID = 146006186};
  38. {SongName = 'Stairs of time', Creator ='Nil', ID = 262343262};
  39. {SongName = 'Mumen', Creator ='Nil', ID = 337732102};
  40. {SongName = 'Crossing Field', Creator ='Nil', ID = 155183751};
  41. {SongName = 'Courage', Creator ='Nil', ID = 202462405};
  42. {SongName = 'Tristam & Braken - Flight', Creator ='Nil', ID = 326260126};
  43. {SongName = 'Tristam & Rogue - Rewel', Creator= 'Nil', ID = 202972804};
  44. {SongName = 'Tristam - Before We Fade', Creator= 'Nil', ID = 457004310};
  45. {SongName = 'Tristam - The Vine', Creator ='Nil', ID = 332854144};
  46. {SongName = 'Dialga', Creator ='Nil', ID = 183889292};
  47. {SongName = 'Simple and Clean', Creator ='Nil', ID = 201584441};
  48. {SongName = 'Tristam - Till It\'s Over', Creator ='Nil', ID = 186430325};
  49. {SongName = 'Tokyo Machine - Party', Creator= 'Nil', ID = 499446130};
  50. {SongName = 'Ignite', Creator ='Nil', ID = 164833056};
  51. {SongName = 'Echobo', Creator ='Nil', ID = 472381158};
  52. }
  53. function PlayList()
  54. local sng = Songs[math.random(1,#Songs)]
  55. Sound.SoundId = 'rbxassetid://'..sng.ID
  56. Sound:Play()
  57. repeat wait() until Sound.IsPaused == true
  58. if play == false then return end
  59. if Pause == true then return end
  60. PlayList()
  61. end
  62. local Loop = false
  63. local Locked
  64. p = game:GetService('Players').LocalPlayer
  65. p.Chatted:connect(function(msg)
  66. if msg:sub(1,5):lower()=='play/' then
  67. play = true
  68. local val = Instance.new("NumberValue", p.Character)
  69. val.Name = "SongID"
  70. val.Value = tonumber(msg:sub(6))
  71. local id = val.Value
  72. Sound:Stop()
  73. Sound.SoundId='rbxassetid://'..id
  74. Sound:Play()
  75. wait(1)
  76. val:Remove()
  77. elseif msg:sub(1,4):lower()=='vol/' then
  78. local val = Instance.new("NumberValue", p.Character)
  79. val.Name = "VolID"
  80. val.Value = tonumber(msg:sub(5))
  81. if val.Value > 10 then val.Value = 10
  82. end
  83. local id = val.Value
  84. Sound.Volume = id
  85. val:Remove()
  86.  
  87. elseif msg:sub(1,6) == 'start/' then
  88. play = true
  89. PlayList()
  90.  
  91. elseif msg:sub(1,5) == 'loop/' and Loop == false then
  92. Loop = true
  93. game.Players.LocalPlayer.Character.Torso.Sound.Looped = true
  94.  
  95. elseif msg:sub(1,5) == 'loop/' and Loop == true then
  96. Loop = false
  97. game.Players.LocalPlayer.Character.Torso.Sound.Looped = false
  98.  
  99. elseif msg:sub(1,6) == 'pause/' and Pause == false then
  100. Pause = true
  101. game.Players.LocalPlayer.Character.Torso.Sound:Pause()
  102.  
  103. elseif msg:sub(1,6) == 'pause/' and Pause == true then
  104. Pause = false
  105. game.Players.LocalPlayer.Character.Torso.Sound:Resume()
  106.  
  107. elseif msg:sub(1,5) == 'skip/' then
  108. play = false
  109. Sound:Stop()
  110. play = true
  111. PlayList()
  112.  
  113. elseif msg:sub(1,5) == 'stop/' then
  114. play = false
  115. Sound:Stop()
  116. end
  117.  
  118. end)
  119.  
  120. --Visulisers
  121. local Feedback = Instance.new("Part",char)
  122. Feedback.Anchored = true
  123. Feedback.TopSurface='Smooth'
  124. Feedback.BrickColor=BrickColor.new("Bright red")
  125. Feedback.Material = Enum.Material.Neon
  126. local Feedback1 = Instance.new("Part")
  127. Feedback1.Anchored = true
  128. Feedback1.TopSurface='Smooth'
  129. Feedback1.BrickColor=BrickColor.new("Bright red")
  130. Feedback1.Material = Enum.Material.Neon
  131. local Feedback2 = Instance.new("Part",char)
  132. Feedback2.Anchored = true
  133. Feedback2.TopSurface='Smooth'
  134. Feedback2.BrickColor=BrickColor.new("Bright red")
  135. Feedback2.Material = Enum.Material.Neon
  136. local Feedback3 = Instance.new("Part",char)
  137. Feedback3.Anchored = true
  138. Feedback3.TopSurface='Smooth'
  139. Feedback3.BrickColor=BrickColor.new("Bright red")
  140. Feedback3.Material = Enum.Material.Neon
  141. local Feedback4 = Instance.new("Part",char)
  142. Feedback4.Anchored = true
  143. Feedback4.TopSurface='Smooth'
  144. Feedback4.BrickColor=BrickColor.new("Bright red")
  145. Feedback4.Material = Enum.Material.Neon
  146. local Feedback5 = Instance.new("Part",char)
  147. Feedback5.Anchored = true
  148. Feedback5.TopSurface='Smooth'
  149. Feedback5.BrickColor=BrickColor.new("Bright red")
  150. Feedback5.Material = Enum.Material.Neon
  151. local Feedback6 = Instance.new("Part",char)
  152. Feedback6.Anchored = true
  153. Feedback6.TopSurface='Smooth'
  154. Feedback6.BrickColor=BrickColor.new("Bright red")
  155. Feedback6.Material = Enum.Material.Neon
  156. local Feedback7 = Instance.new("Part",char)
  157. Feedback7.Anchored = true
  158. Feedback7.TopSurface='Smooth'
  159. Feedback7.BrickColor=BrickColor.new("Bright red")
  160. Feedback7.Material = Enum.Material.Neon
  161. local Feedback8 = Instance.new("Part",char)
  162. Feedback8.Anchored = true
  163. Feedback8.TopSurface='Smooth'
  164. Feedback8.BrickColor=BrickColor.new("Bright red")
  165. Feedback8.Material = Enum.Material.Neon
  166. local Feedback9 = Instance.new("Part",char)
  167. Feedback9.Anchored = true
  168. Feedback9.TopSurface='Smooth'
  169. Feedback9.BrickColor=BrickColor.new("Bright red")
  170. Feedback9.Material = Enum.Material.Neon
  171. local Feedback10 = Instance.new("Part",char)
  172. Feedback10.Anchored = true
  173. Feedback10.TopSurface='Smooth'
  174. Feedback10.BrickColor=BrickColor.new("Bright red")
  175. Feedback10.Material = Enum.Material.Neon
  176. local Feedback11 = Instance.new("Part",char)
  177. Feedback11.Anchored = true
  178. Feedback11.TopSurface='Smooth'
  179. Feedback11.BrickColor=BrickColor.new("Bright red")
  180. Feedback11.Material = Enum.Material.Neon
  181. local Feedback12 = Instance.new("Part",char)
  182. Feedback12.Anchored = true
  183. Feedback12.TopSurface='Smooth'
  184. Feedback12.BrickColor=BrickColor.new("Bright red")
  185. Feedback12.Material = Enum.Material.Neon
  186. local Feedback13 = Instance.new("Part",char)
  187. Feedback13.Anchored = true
  188. Feedback13.TopSurface='Smooth'
  189. Feedback13.BrickColor=BrickColor.new("Bright red")
  190. Feedback13.Material = Enum.Material.Neon
  191. local Feedback14 = Instance.new("Part",char)
  192. Feedback14.Anchored = true
  193. Feedback14.TopSurface='Smooth'
  194. Feedback14.BrickColor=BrickColor.new("Bright red")
  195. Feedback14.Material = Enum.Material.Neon
  196. local Feedback15 = Instance.new("Part",char)
  197. Feedback15.Anchored = true
  198. Feedback15.TopSurface='Smooth'
  199. Feedback15.BrickColor=BrickColor.new("Bright red")
  200. Feedback15.Material = Enum.Material.Neon
  201. local Feedback16 = Instance.new("Part",char)
  202. Feedback16.Anchored = true
  203. Feedback16.TopSurface='Smooth'
  204. Feedback16.BrickColor=BrickColor.new("Bright red")
  205. Feedback16.Material = Enum.Material.Neon
  206. local Feedback17 = Instance.new("Part",char)
  207. Feedback17.Anchored = true
  208. Feedback17.TopSurface='Smooth'
  209. Feedback17.BrickColor=BrickColor.new("Bright red")
  210. Feedback17.Material = Enum.Material.Neon
  211. local Feedback18 = Instance.new("Part",char)
  212. Feedback18.Anchored = true
  213. Feedback18.TopSurface='Smooth'
  214. Feedback18.BrickColor=BrickColor.new("Bright red")
  215. Feedback18.Material = Enum.Material.Neon
  216. local Feedback19 = Instance.new("Part",char)
  217. Feedback19.Anchored = true
  218. Feedback19.TopSurface='Smooth'
  219. Feedback19.BrickColor=BrickColor.new("Bright red")
  220. Feedback19.Material = Enum.Material.Neon
  221. local Feedback20 = Instance.new("Part",char)
  222. Feedback20.Anchored = true
  223. Feedback20.TopSurface='Smooth'
  224. Feedback20.BrickColor=BrickColor.new("Bright red")
  225. Feedback20.Material = Enum.Material.Neon
  226. local Feedback21 = Instance.new("Part",char)
  227. Feedback21.Anchored = true
  228. Feedback21.TopSurface='Smooth'
  229. Feedback21.BrickColor=BrickColor.new("Bright red")
  230. Feedback21.Material = Enum.Material.Neon
  231. local Feedback22 = Instance.new("Part",char)
  232. Feedback22.Anchored = true
  233. Feedback22.TopSurface='Smooth'
  234. Feedback22.BrickColor=BrickColor.new("Bright red")
  235. Feedback22.Material = Enum.Material.Neon
  236. local Feedback23 = Instance.new("Part",char)
  237. Feedback23.Anchored = true
  238. Feedback23.TopSurface='Smooth'
  239. Feedback23.BrickColor=BrickColor.new("Bright red")
  240. Feedback23.Material = Enum.Material.Neon
  241. -------------------------------------------------PlatForm----------------
  242. local plat1 = Instance.new("Part",char)
  243. plat1.Anchored=true
  244. plat1.Size = Vector3.new(74,3,6)
  245. plat1.BrickColor=BrickColor.new("Black")
  246. plat1.TopSurface='Smooth'
  247. plat1.CFrame = CFrame.new(33,0,-80)
  248. plat1.Material = Enum.Material.Marble
  249.  
  250. local plat2 = Instance.new("Part",char)
  251. plat2.Anchored=true
  252. plat2.Size = Vector3.new(74,47,2)
  253. plat2.CFrame = CFrame.new(33,23,-82)
  254. plat2.BrickColor=BrickColor.new("Black")
  255. plat2.Material = Enum.Material.Marble
  256.  
  257. local plat3 = Instance.new("Part",char)
  258. plat3.Anchored=true
  259. plat3.Size = Vector3.new(2,47,4)
  260. plat3.CFrame = CFrame.new(-3,23,-79)
  261. plat3.BrickColor=BrickColor.new("Black")
  262. plat3.Material = Enum.Material.Marble
  263.  
  264. local plat4 = Instance.new("Part",char)
  265. plat4.Anchored=true
  266. plat4.Size = Vector3.new(2,47,4)
  267. plat4.CFrame = CFrame.new(69,23,-79)
  268. plat4.BrickColor=BrickColor.new("Black")
  269. plat4.Material = Enum.Material.Marble
  270.  
  271. local plat5 = Instance.new("Part",char)
  272. plat5.Anchored=true
  273. plat5.Size = Vector3.new(70,44,2)
  274. plat5.CFrame = CFrame.new(33,23.5,-78)
  275. plat5.Transparency=.9
  276. local plat6 = Instance.new("Part",char)
  277. plat6.Anchored=true
  278. plat6.Size = Vector3.new(74,1,6)
  279. plat6.CFrame = CFrame.new(33,46,-80)
  280. plat6.BrickColor=BrickColor.new("Black")
  281. plat6.Material = Enum.Material.Marble
  282.  
  283. local BaseCFrame = CFrame.new(5,0,5)
  284.  
  285.  
  286. --Scripting---------------------
  287. Sound.Parent = char
  288. Feedback.Parent = char
  289. Feedback1.Parent = char
  290. Feedback2.Parent = char
  291. Feedback3.Parent = char
  292. Feedback4.Parent = char
  293. Feedback5.Parent = char
  294. Feedback6.Parent = char
  295. Feedback7.Parent = char
  296. Feedback8.Parent = char
  297. Feedback9.Parent = char
  298. Feedback10.Parent = char
  299. Feedback11.Parent = char
  300. Feedback12.Parent = char
  301. Feedback13.Parent = char
  302. Feedback14.Parent = char
  303. Feedback15.Parent = char
  304. Feedback16.Parent = char
  305. Feedback17.Parent = char
  306. Feedback18.Parent = char
  307. Feedback19.Parent = char
  308. Feedback20.Parent = char
  309. Feedback21.Parent = char
  310. Feedback22.Parent = char
  311. Feedback23.Parent = char
  312. --------------Platform Parent------------------------------------
  313. plat1.Parent = char
  314. plat2.Parent = char
  315. plat3.Parent = char
  316. plat4.Parent = char
  317. plat5.Parent = char
  318. plat6.Parent = char
  319.  
  320. local MaxHeight = 1.5
  321.  
  322.  
  323. while wait() do
  324. Feedback.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  325. Feedback1.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  326. Feedback2.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  327. Feedback3.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  328. Feedback4.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  329. Feedback5.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  330. Feedback6.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  331. Feedback7.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  332. Feedback8.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  333. Feedback9.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  334. Feedback10.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  335. Feedback11.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  336. Feedback12.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  337. Feedback13.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  338. Feedback14.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  339. Feedback15.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  340. Feedback16.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  341. Feedback17.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  342. Feedback18.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  343. Feedback19.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  344. Feedback20.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  345. Feedback21.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  346. Feedback22.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  347. Feedback23.BrickColor = BrickColor.new(Color3.new(cycle(tick())));
  348. local Height = Sound.PlaybackLoudness/10 * MaxHeight
  349. local Height2 = Sound.PlaybackLoudness/20 * MaxHeight
  350. local Height3 = Sound.PlaybackLoudness/30 * MaxHeight
  351. local Height4 = Sound.PlaybackLoudness/40 * MaxHeight
  352. local Height5 = Sound.PlaybackLoudness/50 * MaxHeight
  353. local Height6 = Sound.PlaybackLoudness/60 * MaxHeight
  354. local Height7 = Sound.PlaybackLoudness/70 * MaxHeight
  355. local Height8 = Sound.PlaybackLoudness/100 * MaxHeight
  356. local Height9 = Sound.PlaybackLoudness/150 * MaxHeight
  357. local Height10 = Sound.PlaybackLoudness/200 * MaxHeight
  358. local Height11 = Sound.PlaybackLoudness/250 * MaxHeight
  359. local Height12 = Sound.PlaybackLoudness/300 * MaxHeight
  360. local Height13 = Sound.PlaybackLoudness/350 * MaxHeight
  361. local Height14 = Sound.PlaybackLoudness/400 * MaxHeight
  362. local Height15 = Sound.PlaybackLoudness/450 * MaxHeight
  363. local Height16 = Sound.PlaybackLoudness/500 * MaxHeight
  364. local Height17 = Sound.PlaybackLoudness/550 * MaxHeight
  365. local Height18 = Sound.PlaybackLoudness/600 * MaxHeight
  366. local Height19 = Sound.PlaybackLoudness/650 * MaxHeight
  367. local Height20 = Sound.PlaybackLoudness/700 * MaxHeight
  368. local Height21 = Sound.PlaybackLoudness/760 * MaxHeight
  369. local Height22 = Sound.PlaybackLoudness/800 * MaxHeight
  370. local Height23 = Sound.PlaybackLoudness/950 * MaxHeight
  371. local Height24 = Sound.PlaybackLoudness/1000 * MaxHeight
  372.  
  373. Feedback.Size = Vector3.new(2, (Height ~= 0 and Height or 1), 2)
  374. Feedback.CFrame = CFrame.new(0,1.5,-80) +Vector3.new(0,(Height == 0 and 0 or Height/2),0)
  375.  
  376. Feedback1.Size = Vector3.new(2, (Height2/10 ~= 0 and Height2 or 1), 2)
  377. Feedback1.CFrame = CFrame.new(3,1.5,-80) +Vector3.new(0,(Height2 == 0 and 0 or Height2/2),0)
  378.  
  379. Feedback2.Size = Vector3.new(2, (Height3/4 ~= 0 and Height3 or 1), 2)
  380. Feedback2.CFrame = CFrame.new(6,1.5,-80) +Vector3.new(0,(Height3 == 0 and 0 or Height3/2),0)
  381.  
  382. Feedback3.Size = Vector3.new(2, (Height4 ~= 0 and Height4 or 1), 2)
  383. Feedback3.CFrame = CFrame.new(9,1.5,-80) +Vector3.new(0,(Height4 == 0 and 0 or Height4/2),0)
  384.  
  385. Feedback4.Size = Vector3.new(2, (Height5 ~= 0 and Height5 or 1), 2)
  386. Feedback4.CFrame = CFrame.new(12,1.5,-80) +Vector3.new(0,(Height5 == 0 and 0 or Height5/2),0)
  387.  
  388. Feedback5.Size = Vector3.new(2, (Height6 ~= 0 and Height6 or 1), 2)
  389. Feedback5.CFrame = CFrame.new(15,1.5,-80) +Vector3.new(0,(Height6 == 0 and 0 or Height6/2),0)
  390.  
  391. Feedback6.Size = Vector3.new(2, (Height7 ~= 0 and Height7 or 1), 2)
  392. Feedback6.CFrame = CFrame.new(18,1.5,-80) +Vector3.new(0,(Height7 == 0 and 0 or Height7/2),0)
  393.  
  394. Feedback7.Size = Vector3.new(2, (Height8 ~= 0 and Height8 or 1), 2)
  395. Feedback7.CFrame = CFrame.new(21,1.5,-80) +Vector3.new(0,(Height8 == 0 and 0 or Height8/2),0)
  396.  
  397. Feedback8.Size = Vector3.new(2, (Height9 ~= 0 and Height9 or 1), 2)
  398. Feedback8.CFrame = CFrame.new(24,1.5,-80) +Vector3.new(0,(Height9 == 0 and 0 or Height9/2),0)
  399.  
  400. Feedback9.Size = Vector3.new(2, (Height10 ~= 0 and Height10 or 1), 2)
  401. Feedback9.CFrame = CFrame.new(27,1.5,-80) +Vector3.new(0,(Height10 == 0 and 0 or Height10/2),0)
  402.  
  403. Feedback10.Size = Vector3.new(2, (Height11 ~= 0 and Height11 or 1), 2)
  404. Feedback10.CFrame = CFrame.new(30,1.5,-80) +Vector3.new(0,(Height11 == 0 and 0 or Height11/2),0)
  405.  
  406. Feedback11.Size = Vector3.new(2, (Height12 ~= 0 and Height12 or 1), 2)
  407. Feedback11.CFrame = CFrame.new(33,1.5,-80) +Vector3.new(0,(Height12 == 0 and 0 or Height12/2),0)
  408.  
  409. Feedback12.Size = Vector3.new(2, (Height13 ~= 0 and Height13 or 1), 2)
  410. Feedback12.CFrame = CFrame.new(36,1.5,-80) +Vector3.new(0,(Height13 == 0 and 0 or Height13/2),0)
  411.  
  412. Feedback13.Size = Vector3.new(2, (Height14 ~= 0 and Height14 or 1), 2)
  413. Feedback13.CFrame = CFrame.new(39,1.5,-80) +Vector3.new(0,(Height14 == 0 and 0 or Height14/2),0)
  414.  
  415. Feedback14.Size = Vector3.new(2, (Height15 ~= 0 and Height15 or 1), 2)
  416. Feedback14.CFrame = CFrame.new(42,1.5,-80) +Vector3.new(0,(Height15 == 0 and 0 or Height15/2),0)
  417.  
  418. Feedback15.Size = Vector3.new(2, (Height16 ~= 0 and Height16 or 1), 2)
  419. Feedback15.CFrame = CFrame.new(45,1.5,-80) +Vector3.new(0,(Height16 == 0 and 0 or Height16/2),0)
  420.  
  421. Feedback16.Size = Vector3.new(2, (Height17 ~= 0 and Height17 or 1), 2)
  422. Feedback16.CFrame = CFrame.new(18,1.5,-80) +Vector3.new(0,(Height17 == 0 and 0 or Height17/2),0)
  423.  
  424. Feedback17.Size = Vector3.new(2, (Height18 ~= 0 and Height18 or 1), 2)
  425. Feedback17.CFrame = CFrame.new(48,1.5,-80) +Vector3.new(0,(Height18 == 0 and 0 or Height18/2),0)
  426.  
  427. Feedback18.Size = Vector3.new(2, (Height19 ~= 0 and Height19 or 1), 2)
  428. Feedback18.CFrame = CFrame.new(51,1.5,-80) +Vector3.new(0,(Height19 == 0 and 0 or Height19/2),0)
  429.  
  430. Feedback19.Size = Vector3.new(2, (Height20 ~= 0 and Height20 or 1), 2)
  431. Feedback19.CFrame = CFrame.new(54,1.5,-80) +Vector3.new(0,(Height20 == 0 and 0 or Height20/2),0)
  432.  
  433. Feedback20.Size = Vector3.new(2, (Height21 ~= 0 and Height21 or 1), 2)
  434. Feedback20.CFrame = CFrame.new(57,1.5,-80) +Vector3.new(0,(Height21 == 0 and 0 or Height21/2),0)
  435.  
  436. Feedback21.Size = Vector3.new(2, (Height22 ~= 0 and Height22 or 1), 2)
  437. Feedback21.CFrame = CFrame.new(60,1.5,-80) +Vector3.new(0,(Height22 == 0 and 0 or Height22/2),0)
  438.  
  439. Feedback22.Size = Vector3.new(2, (Height23 ~= 0 and Height23 or 1), 2)
  440. Feedback22.CFrame = CFrame.new(63,1.5,-80) +Vector3.new(0,(Height23 == 0 and 0 or Height23/2),0)
  441.  
  442. Feedback23.Size = Vector3.new(2, (Height24 ~= 0 and Height24 or 1), 2)
  443. Feedback23.CFrame = CFrame.new(66,1.5,-80) +Vector3.new(0,(Height24 == 0 and 0 or Height24/2),0)
  444.  
  445. end
  446. --- Working 100%
Add Comment
Please, Sign In to add comment