Advertisement
EpixFusionBlast

scream beam loud

Jan 22nd, 2018
526
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.84 KB | None | 0 0
  1. ----------------------------------------
  2. -- Originally made by Alfederate :D --
  3. ----------------------------------------
  4.  
  5. -- there's no time to explain! --
  6.  
  7. local new=Instance.new
  8. local rad=math.rad
  9. local cf=CFrame.new
  10. local v3=Vector3.new
  11. local ang=function(x,y,z)
  12. return CFrame.Angles(rad(x),rad(y),rad(z))
  13. end
  14. local player=game:service'Players'.LocalPlayer
  15. local char=player.Character
  16. local cam=workspace.Camera
  17. local mouse=player:GetMouse()
  18. local weld=function(a,b,c0,c1)
  19. m=Instance.new('Motor',a)
  20. m.Part0=a
  21. m.Part1=b
  22. m.C0=c0
  23. m.C1=c1
  24. return m
  25. end
  26.  
  27. snd='rbxassetid://326396715'
  28. beamm=Instance.new('Model',workspace)
  29. beamm.Name='beam'
  30.  
  31. laser=false
  32.  
  33. rs=Instance.new('Part',char)
  34. rs.Transparency=1
  35. rs.CanCollide=false
  36. rs.TopSurface,rs.BottomSurface=0,0
  37. rs.FormFactor=1
  38. rs.Size=Vector3.new(.5,.5,.5)
  39.  
  40. ls=rs:Clone()
  41. ls.Parent=char
  42.  
  43. rsw=weld(rs,char.Torso,cf(-1,-.5,0),cf())
  44. lsw=weld(ls,char.Torso,cf(1,-.5,0),cf())
  45. raw=weld(char['Right Arm'],rs,cf(-.5,.6,-.14),ang(90,0,-8))
  46. law=weld(char['Left Arm'],ls,cf(-.3,1.5,-.14),ang(90,0,43))
  47.  
  48. s1=Instance.new('Sound',char)
  49. s1.Volume=1
  50. s1.Pitch=1
  51. s1.Looped=true
  52. s1.SoundId=snd
  53.  
  54. particles={}
  55.  
  56. local wep=new('Part',char)
  57. wep.FormFactor=1
  58. wep.CanCollide=false
  59. wep.Size=v3(1,3,1)
  60. wep.TopSurface,wep.BottomSurface=0,0
  61. local wepw=weld(wep,char['Right Arm'],cf(.26,.4,.7),ang(0,0,8))
  62.  
  63. local beam=wep:Clone()
  64. beam:ClearAllChildren()
  65. beam.Material='Neon'
  66. beam.BrickColor=BrickColor.new('Hot white')
  67. beam.Size=Vector3.new(3,3,1)
  68. beam.Transparency=.5
  69. beam.Anchored=true
  70. local ms=Instance.new('BlockMesh',beam)
  71. local inner=beam:Clone()
  72. inner.Transparency=0
  73. inner.Material='SmoothPlastic'
  74. inner.BrickColor=BrickColor.new('New Yeller')
  75. local ms2=inner.Mesh
  76.  
  77. local expl=inner:Clone()
  78. expl.Mesh:Destroy()
  79. expl.Material='Neon'
  80. expl.BrickColor=BrickColor.new('Lime green')
  81. expl.Size=Vector3.new(11,11,11)
  82. expl.Transparency=.55
  83. pl=Instance.new('PointLight',expl)
  84. pl.Color=expl.BrickColor.Color
  85. pl.Range=pl.Range*2
  86. pl.Name='light'
  87. local br=pl.Range
  88.  
  89. local exa=expl:Clone()
  90. exa.Size=Vector3.new(4,4,4)
  91. pl2=exa.light
  92.  
  93. local part=exa:Clone()
  94. part.Size=Vector3.new(1.5,1.5,1.5)
  95. pl3=part.light
  96. pms=Instance.new('BlockMesh',part)
  97.  
  98. char.Humanoid.Died:connect(function()
  99. laser=false
  100. beam.Parent=nil
  101. inner.Parent=nil
  102. expl.Parent=nil
  103. exa.Parent=nil
  104. s1:stop()
  105. end)
  106.  
  107. mouse.Button1Down:connect(function() if char.Humanoid.Health~=0 then
  108. laser=true
  109. s1.Volume=1
  110. s1:play()
  111. end end)
  112. mouse.Button1Up:connect(function()
  113. laser=false
  114. beam.Parent=nil
  115. inner.Parent=nil
  116. expl.Parent=nil
  117. exa.Parent=nil
  118. s1:stop()
  119. end)
  120.  
  121. parti=0
  122. game:service'RunService'.Stepped:connect(function()
  123. parti=parti+1
  124. for i,v in pairs(particles) do
  125. v.CFrame=v.CFrame*CFrame.new(0,0,-.3)
  126. v.Transparency=v.Transparency+.08
  127. if v.Transparency >= 1 then
  128. v:Destroy()
  129. table.remove(particles,i)
  130. else
  131. v.Parent=beamm
  132. end
  133. end
  134. a=cam.CoordinateFrame.p
  135. b=mouse.Hit.p
  136. mhitr=Ray.new(a,(b-a).unit*999)
  137. mhit,ps=workspace:FindPartOnRayWithIgnoreList(mhitr,{char,beamm})
  138. raw.C1=ang(90+(mouse.Hit.lookVector.y*90),0,-8)
  139. law.C1=ang(90+(mouse.Hit.lookVector.y*90),0,43)
  140. if not char.Humanoid.Sit and not char.Humanoid.PlatformStand then
  141. char.Torso.CFrame=CFrame.new(char.Torso.CFrame.p,Vector3.new(ps.x,char.Torso.CFrame.p.y,ps.z))
  142. end
  143. if laser then
  144. beamm.Parent=workspace
  145. beam.Parent=beamm
  146. inner.Parent=beamm
  147. expl.Parent=beamm
  148. exa.Parent=beamm
  149. s1.Volume=s1.Volume-.0
  150.  
  151. ray=Ray.new((wep.CFrame*cf(0,-1.5,0)).p,((wep.CFrame*cf(0,-10,0)).p-(wep.CFrame*cf(0,-1.5,0)).p).unit*999)
  152. hit,pos=workspace:FindPartOnRayWithIgnoreList(ray,{char,beamm})
  153.  
  154. if hit and hit.Parent:findFirstChild('Humanoid') and s1.Volume > .3 and parti/8==math.floor(parti/8) then
  155. Instance.new('Explosion',workspace).Position=pos
  156. end
  157. if hit and hit.Parent==workspace.Terrain or hit==workspace.Terrain and parti/8==math.floor(parti/8) then
  158. e=Instance.new('Explosion',workspace)
  159. e.Position=pos
  160. e.BlastRadius=14
  161. e.BlastPressure=1e4
  162. end
  163. if hit and not hit.Anchored and not (hit:GetMass()>1e4) then
  164. hit.Velocity=hit.Velocity+beam.CFrame.lookVector*(1*s1.Volume*hit:GetMass())
  165. end
  166.  
  167. if parti==math.floor(parti) then
  168. par=part:Clone()
  169. table.insert(particles,par)
  170. par.Parent=beamm
  171. par.Transparency=1-s1.Volume
  172. par.light.Range=br*s1.Volume
  173. par.CFrame=cf(pos)*ang(math.random(-180,180),math.random(-180,180),math.random(-180,180))*cf(0,0,-10)
  174. end
  175.  
  176. mag=((wep.CFrame*cf(0,-1.5,0)).p-pos).magnitude
  177. ms.Scale=v3(s1.Volume,s1.Volume,mag)
  178. ms2.Scale=v3(ms.Scale.x/2,ms.Scale.y/2,mag-(.1/mag))
  179. beam.CFrame=cf((wep.CFrame*cf(0,-1.5,0)).p,pos)*cf(0,0,-mag/2)*ang(0,0,math.random(0,180))
  180. inner.CFrame=beam.CFrame
  181. pl.Range=br*s1.Volume
  182. pl2.Range=br*s1.Volume
  183. expl.Size=v3(math.random(9,13),math.random(9,13),math.random(9,13))*s1.Volume
  184. expl.Transparency=math.random(40,60)/100
  185. expl.CFrame=cf(pos)*ang(math.random(0,180),math.random(0,180),math.random(0,180))
  186. exa.Size=v3(4,4,4)*s1.Volume
  187. exa.CFrame=wep.CFrame*cf(0,-1.5,0)*ang(math.random(0,180),math.random(0,180),math.random(0,180))
  188. char.Torso.Velocity=char.Torso.Velocity-beam.CFrame.lookVector*(7*s1.Volume)
  189. end
  190. end)
  191.  
  192.  
  193.  
  194.  
  195. local new=Instance.new
  196. local rad=math.rad
  197. local cf=CFrame.new
  198. local v3=Vector3.new
  199. local ang=function(x,y,z)
  200. return CFrame.Angles(rad(x),rad(y),rad(z))
  201. end
  202. local player=game:service'Players'.LocalPlayer
  203. local char=player.Character
  204. local cam=workspace.Camera
  205. local mouse=player:GetMouse()
  206. local weld=function(a,b,c0,c1)
  207. m=Instance.new('Motor',a)
  208. m.Part0=a
  209. m.Part1=b
  210. m.C0=c0
  211. m.C1=c1
  212. return m
  213. end
  214.  
  215. snd='rbxassetid://1330525452'
  216. beamm=Instance.new('Model',workspace)
  217. beamm.Name='beam'
  218.  
  219. laser=false
  220.  
  221. rs=Instance.new('Part',char)
  222. rs.Transparency=1
  223. rs.CanCollide=false
  224. rs.TopSurface,rs.BottomSurface=0,0
  225. rs.FormFactor=1
  226. rs.Size=Vector3.new(.5,.5,.5)
  227.  
  228. ls=rs:Clone()
  229. ls.Parent=char
  230.  
  231. rsw=weld(rs,char.Torso,cf(-1,-.5,0),cf())
  232. lsw=weld(ls,char.Torso,cf(1,-.5,0),cf())
  233. raw=weld(char['Right Arm'],rs,cf(-.5,.6,-.14),ang(90,0,-8))
  234. law=weld(char['Left Arm'],ls,cf(-.3,1.5,-.14),ang(90,0,43))
  235.  
  236. s1=Instance.new('Sound',char)
  237. s1.Volume=1
  238. s1.Pitch=1
  239. s1.Looped=true
  240. s1.SoundId=snd
  241.  
  242. particles={}
  243.  
  244. local wep=new('Part',char)
  245. wep.FormFactor=1
  246. wep.CanCollide=false
  247. wep.Size=v3(1,3,1)
  248. wep.TopSurface,wep.BottomSurface=0,0
  249. local wepw=weld(wep,char['Right Arm'],cf(.99,.4,1.5),ang(0,0,8))
  250.  
  251. local beam=wep:Clone()
  252. beam:ClearAllChildren()
  253. beam.Material='Neon'
  254. beam.BrickColor=BrickColor.new('Hot white')
  255. beam.Size=Vector3.new(3,3,1)
  256. beam.Transparency=.5
  257. beam.Anchored=true
  258. local ms=Instance.new('BlockMesh',beam)
  259. local inner=beam:Clone()
  260. inner.Transparency=0
  261. inner.Material='SmoothPlastic'
  262. inner.BrickColor=BrickColor.new('New Yeller')
  263. local ms2=inner.Mesh
  264.  
  265. local expl=inner:Clone()
  266. expl.Mesh:Destroy()
  267. expl.Material='Neon'
  268. expl.BrickColor=BrickColor.new('Bright blue')
  269. expl.Size=Vector3.new(11,11,11)
  270. expl.Transparency=.55
  271. pl=Instance.new('PointLight',expl)
  272. pl.Color=expl.BrickColor.Color
  273. pl.Range=pl.Range*2
  274. pl.Name='light'
  275. local br=pl.Range
  276.  
  277. local exa=expl:Clone()
  278. exa.Size=Vector3.new(4,4,4)
  279. pl2=exa.light
  280.  
  281. local part=exa:Clone()
  282. part.Size=Vector3.new(1.5,1.5,1.5)
  283. pl3=part.light
  284. pms=Instance.new('BlockMesh',part)
  285.  
  286. char.Humanoid.Died:connect(function()
  287. laser=false
  288. beam.Parent=nil
  289. inner.Parent=nil
  290. expl.Parent=nil
  291. exa.Parent=nil
  292. s1:stop()
  293. end)
  294.  
  295. mouse.Button1Down:connect(function() if char.Humanoid.Health~=0 then
  296. laser=true
  297. s1.Volume=1
  298. s1:play()
  299. end end)
  300. mouse.Button1Up:connect(function()
  301. laser=false
  302. beam.Parent=nil
  303. inner.Parent=nil
  304. expl.Parent=nil
  305. exa.Parent=nil
  306. s1:stop()
  307. end)
  308.  
  309. parti=0
  310. game:service'RunService'.Stepped:connect(function()
  311. parti=parti+1
  312. for i,v in pairs(particles) do
  313. v.CFrame=v.CFrame*CFrame.new(0,0,-.3)
  314. v.Transparency=v.Transparency+.08
  315. if v.Transparency >= 1 then
  316. v:Destroy()
  317. table.remove(particles,i)
  318. else
  319. v.Parent=beamm
  320. end
  321. end
  322. a=cam.CoordinateFrame.p
  323. b=mouse.Hit.p
  324. mhitr=Ray.new(a,(b-a).unit*999)
  325. mhit,ps=workspace:FindPartOnRayWithIgnoreList(mhitr,{char,beamm})
  326. raw.C1=ang(90+(mouse.Hit.lookVector.y*90),0,-8)
  327. law.C1=ang(90+(mouse.Hit.lookVector.y*90),0,43)
  328. if not char.Humanoid.Sit and not char.Humanoid.PlatformStand then
  329. char.Torso.CFrame=CFrame.new(char.Torso.CFrame.p,Vector3.new(ps.x,char.Torso.CFrame.p.y,ps.z))
  330. end
  331. if laser then
  332. beamm.Parent=workspace
  333. beam.Parent=beamm
  334. inner.Parent=beamm
  335. expl.Parent=beamm
  336. exa.Parent=beamm
  337. s1.Volume=s1.Volume-.0
  338.  
  339. ray=Ray.new((wep.CFrame*cf(0,-1.5,0)).p,((wep.CFrame*cf(0,-10,0)).p-(wep.CFrame*cf(0,-1.5,0)).p).unit*999)
  340. hit,pos=workspace:FindPartOnRayWithIgnoreList(ray,{char,beamm})
  341.  
  342. if hit and hit.Parent:findFirstChild('Humanoid') and s1.Volume > .3 and parti/8==math.floor(parti/8) then
  343. Instance.new('Explosion',workspace).Position=pos
  344. end
  345. if hit and hit.Parent==workspace.Terrain or hit==workspace.Terrain and parti/8==math.floor(parti/8) then
  346. e=Instance.new('Explosion',workspace)
  347. e.Position=pos
  348. e.BlastRadius=14
  349. e.BlastPressure=1e4
  350. end
  351. if hit and not hit.Anchored and not (hit:GetMass()>1e4) then
  352. hit.Velocity=hit.Velocity+beam.CFrame.lookVector*(1*s1.Volume*hit:GetMass())
  353. end
  354.  
  355. if parti==math.floor(parti) then
  356. par=part:Clone()
  357. table.insert(particles,par)
  358. par.Parent=beamm
  359. par.Transparency=1-s1.Volume
  360. par.light.Range=br*s1.Volume
  361. par.CFrame=cf(pos)*ang(math.random(-180,180),math.random(-180,180),math.random(-180,180))*cf(0,0,-10)
  362. end
  363.  
  364. mag=((wep.CFrame*cf(0,-1.5,0)).p-pos).magnitude
  365. ms.Scale=v3(s1.Volume,s1.Volume,mag)
  366. ms2.Scale=v3(ms.Scale.x/2,ms.Scale.y/2,mag-(.1/mag))
  367. beam.CFrame=cf((wep.CFrame*cf(0,-1.5,0)).p,pos)*cf(0,0,-mag/2)*ang(0,0,math.random(0,180))
  368. inner.CFrame=beam.CFrame
  369. pl.Range=br*s1.Volume
  370. pl2.Range=br*s1.Volume
  371. expl.Size=v3(math.random(9,13),math.random(9,13),math.random(9,13))*s1.Volume
  372. expl.Transparency=math.random(40,60)/100
  373. expl.CFrame=cf(pos)*ang(math.random(0,180),math.random(0,180),math.random(0,180))
  374. exa.Size=v3(4,4,4)*s1.Volume
  375. exa.CFrame=wep.CFrame*cf(0,-1.5,0)*ang(math.random(0,180),math.random(0,180),math.random(0,180))
  376. char.Torso.Velocity=char.Torso.Velocity-beam.CFrame.lookVector*(7*s1.Volume)
  377. end
  378. end)
  379.  
  380.  
  381.  
  382.  
  383. --3--
  384.  
  385. local new=Instance.new
  386. local rad=math.rad
  387. local cf=CFrame.new
  388. local v3=Vector3.new
  389. local ang=function(x,y,z)
  390. return CFrame.Angles(rad(x),rad(y),rad(z))
  391. end
  392. local player=game:service'Players'.LocalPlayer
  393. local char=player.Character
  394. local cam=workspace.Camera
  395. local mouse=player:GetMouse()
  396. local weld=function(a,b,c0,c1)
  397. m=Instance.new('Motor',a)
  398. m.Part0=a
  399. m.Part1=b
  400. m.C0=c0
  401. m.C1=c1
  402. return m
  403. end
  404.  
  405. music.Volume = 40
  406. music.SoundId = "rbxassetid://1330525452"
  407. music:Play()
  408. beamm=Instance.new('Model',workspace)
  409. beamm.Name='beam'
  410.  
  411. laser=false
  412.  
  413. rs=Instance.new('Part',char)
  414. rs.Transparency=1
  415. rs.CanCollide=false
  416. rs.TopSurface,rs.BottomSurface=0,0
  417. rs.FormFactor=3
  418. rs.Size=Vector3.new(.5,.5,.5)
  419.  
  420. ls=rs:Clone()
  421. ls.Parent=char
  422.  
  423. rsw=weld(rs,char.Torso,cf(-1,-.5,0),cf())
  424. lsw=weld(ls,char.Torso,cf(1,-.5,0),cf())
  425. raw=weld(char['Right Arm'],rs,cf(-.5,.6,-.14),ang(90,0,-8))
  426. law=weld(char['Left Arm'],ls,cf(-.3,1.5,-.14),ang(90,0,43))
  427.  
  428. s1=Instance.new('Sound',char)
  429. s1.Volume=1
  430. s1.Pitch=1
  431. s1.Looped=true
  432. s1.SoundId=snd
  433.  
  434. particles={}
  435.  
  436. local wep=new('Part',char)
  437. wep.FormFactor=3
  438. wep.CanCollide=false
  439. wep.Size=v3(1,3,1)
  440. wep.TopSurface,wep.BottomSurface=0,0
  441. local wepw=weld(wep,char['Right Arm'],cf(-.48,.4,1.5),ang(0,0,8))
  442.  
  443. local beam=wep:Clone()
  444. beam:ClearAllChildren()
  445. beam.Material='Neon'
  446. beam.BrickColor=BrickColor.new('Hot white')
  447. beam.Size=Vector3.new(3,3,1)
  448. beam.Transparency=.5
  449. beam.Anchored=true
  450. local ms=Instance.new('BlockMesh',beam)
  451. local inner=beam:Clone()
  452. inner.Transparency=0
  453. inner.Material='SmoothPlastic'
  454. inner.BrickColor=BrickColor.new('New Yeller')
  455. local ms2=inner.Mesh
  456.  
  457. local expl=inner:Clone()
  458. expl.Mesh:Destroy()
  459. expl.Material='Neon'
  460. expl.BrickColor=BrickColor.new('Lime green')
  461. expl.Size=Vector3.new(11,11,11)
  462. expl.Transparency=.55
  463. pl=Instance.new('PointLight',expl)
  464. pl.Color=expl.BrickColor.Color
  465. pl.Range=pl.Range*2
  466. pl.Name='light'
  467. local br=pl.Range
  468.  
  469. local exa=expl:Clone()
  470. exa.Size=Vector3.new(4,4,4)
  471. pl2=exa.light
  472.  
  473. local part=exa:Clone()
  474. part.Size=Vector3.new(1.5,1.5,1.5)
  475. pl3=part.light
  476. pms=Instance.new('BlockMesh',part)
  477.  
  478. char.Humanoid.Died:connect(function()
  479. laser=false
  480. beam.Parent=nil
  481. inner.Parent=nil
  482. expl.Parent=nil
  483. exa.Parent=nil
  484. s1:stop()
  485. end)
  486.  
  487. mouse.Button1Down:connect(function() if char.Humanoid.Health~=0 then
  488. laser=true
  489. s1.Volume=1
  490. s1:play()
  491. end end)
  492. mouse.Button1Up:connect(function()
  493. laser=false
  494. beam.Parent=nil
  495. inner.Parent=nil
  496. expl.Parent=nil
  497. exa.Parent=nil
  498. s1:stop()
  499. end)
  500.  
  501. parti=0
  502. game:service'RunService'.Stepped:connect(function()
  503. parti=parti+1
  504. for i,v in pairs(particles) do
  505. v.CFrame=v.CFrame*CFrame.new(0,0,-.3)
  506. v.Transparency=v.Transparency+.08
  507. if v.Transparency >= 1 then
  508. v:Destroy()
  509. table.remove(particles,i)
  510. else
  511. v.Parent=beamm
  512. end
  513. end
  514. a=cam.CoordinateFrame.p
  515. b=mouse.Hit.p
  516. mhitr=Ray.new(a,(b-a).unit*999)
  517. mhit,ps=workspace:FindPartOnRayWithIgnoreList(mhitr,{char,beamm})
  518. raw.C1=ang(90+(mouse.Hit.lookVector.y*90),0,-8)
  519. law.C1=ang(90+(mouse.Hit.lookVector.y*90),0,43)
  520. if not char.Humanoid.Sit and not char.Humanoid.PlatformStand then
  521. char.Torso.CFrame=CFrame.new(char.Torso.CFrame.p,Vector3.new(ps.x,char.Torso.CFrame.p.y,ps.z))
  522. end
  523. if laser then
  524. beamm.Parent=workspace
  525. beam.Parent=beamm
  526. inner.Parent=beamm
  527. expl.Parent=beamm
  528. exa.Parent=beamm
  529. s1.Volume=s1.Volume-.0
  530.  
  531. ray=Ray.new((wep.CFrame*cf(0,-1.5,0)).p,((wep.CFrame*cf(0,-10,0)).p-(wep.CFrame*cf(0,-1.5,0)).p).unit*999)
  532. hit,pos=workspace:FindPartOnRayWithIgnoreList(ray,{char,beamm})
  533.  
  534. if hit and hit.Parent:findFirstChild('Humanoid') and s1.Volume > .3 and parti/8==math.floor(parti/8) then
  535. Instance.new('Explosion',workspace).Position=pos
  536. end
  537. if hit and hit.Parent==workspace.Terrain or hit==workspace.Terrain and parti/8==math.floor(parti/8) then
  538. e=Instance.new('Explosion',workspace)
  539. e.Position=pos
  540. e.BlastRadius=14
  541. e.BlastPressure=1e4
  542. end
  543. if hit and not hit.Anchored and not (hit:GetMass()>1e4) then
  544. hit.Velocity=hit.Velocity+beam.CFrame.lookVector*(1*s1.Volume*hit:GetMass())
  545. end
  546.  
  547. if parti==math.floor(parti) then
  548. par=part:Clone()
  549. table.insert(particles,par)
  550. par.Parent=beamm
  551. par.Transparency=1-s1.Volume
  552. par.light.Range=br*s1.Volume
  553. par.CFrame=cf(pos)*ang(math.random(-180,180),math.random(-180,180),math.random(-180,180))*cf(0,0,-10)
  554. end
  555.  
  556. mag=((wep.CFrame*cf(0,-1.5,0)).p-pos).magnitude
  557. ms.Scale=v3(s1.Volume,s1.Volume,mag)
  558. ms2.Scale=v3(ms.Scale.x/2,ms.Scale.y/2,mag-(.1/mag))
  559. beam.CFrame=cf((wep.CFrame*cf(0,-1.5,0)).p,pos)*cf(0,0,-mag/2)*ang(0,0,math.random(0,180))
  560. inner.CFrame=beam.CFrame
  561. pl.Range=br*s1.Volume
  562. pl2.Range=br*s1.Volume
  563. expl.Size=v3(math.random(9,13),math.random(9,13),math.random(9,13))*s1.Volume
  564. expl.Transparency=math.random(40,60)/100
  565. expl.CFrame=cf(pos)*ang(math.random(0,180),math.random(0,180),math.random(0,180))
  566. exa.Size=v3(4,4,4)*s1.Volume
  567. exa.CFrame=wep.CFrame*cf(0,-1.5,0)*ang(math.random(0,180),math.random(0,180),math.random(0,180))
  568. char.Torso.Velocity=char.Torso.Velocity-beam.CFrame.lookVector*(7*s1.Volume)
  569. end
  570. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement