Advertisement
McRoblox132

Untitled

Jul 13th, 2018
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 37.19 KB | None | 0 0
  1. plr = game:GetService("Players").LocalPlayer
  2. char = plr.Character
  3. hum = char.Humanoid
  4. local cam = game.Workspace.CurrentCamera
  5. local Controller = plr.PlayerScripts:WaitForChild("ControlScript")
  6. Camera = cam
  7. local CamInterrupt = false
  8. local TwoD = false
  9. local TargetInfo = {nil, nil}
  10. cam.CameraType = "Custom"
  11. t = char.Torso
  12. h = char.Head
  13. ra = char["Right Arm"]
  14. la = char["Left Arm"]
  15. rl = char["Right Leg"]
  16. ll = char["Left Leg"]
  17. tors = char.Torso
  18. lleg = char["Left Leg"]
  19. root = char.HumanoidRootPart
  20. hed = char.Head
  21. rleg = char["Right Leg"]
  22. rarm = char["Right Arm"]
  23. larm = char["Left Arm"]
  24. radian = math.rad
  25. random = math.random
  26. Vec3 = Vector3.new
  27. Inst = Instance.new
  28. cFrame = CFrame.new
  29. Euler = CFrame.fromEulerAnglesXYZ
  30. vt = Vector3.new
  31. bc = BrickColor.new
  32. br = BrickColor.random
  33. it = Instance.new
  34. cf = CFrame.new
  35. local eff = true
  36. local shielding = false
  37.  
  38. local Booleans = {
  39. CamFollow = true,
  40. GyroUse = true
  41. }
  42.  
  43. function lerp(object, newCFrame, alpha)
  44. return object:lerp(newCFrame, alpha)
  45. end
  46.  
  47. local Directer = Inst("BodyGyro", root)
  48. Directer.MaxTorque = Vec3(0, 0, 0)
  49. Directer.P = 600000
  50. local CPart = Inst("Part")
  51. CPart.Anchored = true
  52. CPart.CanCollide = false
  53. CPart.Locked = true
  54. CPart.Transparency = 1
  55.  
  56. local rainbowmode = false
  57. local chaosmode = false
  58.  
  59. kan = Instance.new("Sound",char)
  60. kan.Volume = 1.25
  61. kan.TimePosition = 0
  62. kan.PlaybackSpeed = 1
  63. kan.Pitch = 1
  64. kan.SoundId = "rbxassetid://614032233"
  65. kan.Name = "wrecked"
  66. kan.Looped = true
  67. kan:Play()
  68.  
  69. local dom = Instance.new("SpecialMesh", game.Players.LocalPlayer.Character.Head)
  70. dom.MeshId = "rbxassetid://21057410"
  71. dom.MeshType = "FileMesh"
  72. dom.Name = "Dominus"
  73. dom.Parent = Head
  74. dom.TextureId = "rbxassetid://48545806"
  75.  
  76. function newTheme(ID,timepos,pitch,vol)
  77. local kanz = kan
  78. --kanz:Stop()
  79. --kanz.Volume = vol
  80. --kanz.TimePosition = timepos
  81. kanz.PlaybackSpeed = pitch
  82. kanz.Pitch = pitch
  83. kanz.SoundId = ID
  84. kanz.Name = "wrecked"
  85. kanz.Looped = true
  86. kanz.Volume = 0.3
  87. --kanz:Play()
  88. --coroutine.resume(coroutine.create(function()
  89. --wait(0.05)
  90. --end))
  91. end
  92.  
  93. function newThemeCust(ID,timepos,pitch,vol)
  94. local kanz = kan
  95. kanz:Stop()
  96. kanz.Volume = vol
  97. kanz.TimePosition = timepos
  98. kanz.PlaybackSpeed = pitch
  99. kanz.Pitch = pitch
  100. kanz.SoundId = ID
  101. kanz.Name = "wrecked"
  102. kanz.Looped = true
  103. kanz:Play()
  104. coroutine.resume(coroutine.create(function()
  105. wait(0.05)
  106. end))
  107. end
  108.  
  109.  
  110.  
  111. function CameraShake(Times, Power, PlayerTarget)
  112. coroutine.resume(coroutine.create(function()
  113. FV = Instance.new("BoolValue", PlayerTarget)
  114. FV.Name = "CameraShake"
  115. for ShakeNum=1,Times do
  116. swait()
  117. local ef=Power
  118. if ef>=1 then
  119. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef),math.random(-ef,ef),math.random(-ef,ef))
  120. else
  121. ef=Power*10
  122. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef)/10,math.random(-ef,ef)/10,math.random(-ef,ef)/10)
  123. end
  124. end
  125. Humanoid.CameraOffset = Vector3.new(0,0,0)
  126. FV:Destroy()
  127. end))
  128. end
  129.  
  130. function CameraEnshaking(Length,Intensity)
  131. coroutine.resume(coroutine.create(function()
  132. local intensity = 1*Intensity
  133. local rotM = 0.01*Intensity
  134. for i = 0, Length, 0.1 do
  135. swait()
  136. intensity = intensity - 0.05*Intensity/Length
  137. rotM = rotM - 0.0005*Intensity/Length
  138. hum.CameraOffset = Vec3(radian(random(-intensity, intensity)), radian(random(-intensity, intensity)), radian(random(-intensity, intensity)))
  139. cam.CFrame = cam.CFrame * cFrame(radian(random(-intensity, intensity)), radian(random(-intensity, intensity)), radian(random(-intensity, intensity))) * Euler(radian(random(-intensity, intensity)) * rotM, radian(random(-intensity, intensity)) * rotM, radian(random(-intensity, intensity)) * rotM)
  140. end
  141. Humanoid.CameraOffset = Vec3(0, 0, 0)
  142. end))
  143. end
  144. CamShake=function(Part,Distan,Power,Times)
  145. local de=Part.Position
  146. for i,v in pairs(workspace:children()) do
  147. if v:IsA("Model") and v:findFirstChild("Humanoid") then
  148. for _,c in pairs(v:children()) do
  149. if c.ClassName=="Part" and (c.Position - de).magnitude < Distan then
  150. local Noob=v.Humanoid
  151. if Noob~=nil then
  152. coroutine.resume(coroutine.create(function()
  153. FV = Instance.new("BoolValue", Noob)
  154. FV.Name = "CameraShake"
  155. for ShakeNum=1,Times do
  156. swait()
  157. local ef=Power
  158. if ef>=1 then
  159. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef),math.random(-ef,ef),math.random(-ef,ef))
  160. else
  161. ef=Power*10
  162. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef)/10,math.random(-ef,ef)/10,math.random(-ef,ef)/10)
  163. end
  164. end
  165. Humanoid.CameraOffset = Vector3.new(0,0,0)
  166. FV:Destroy()
  167. end))
  168. CameraShake(Times, Power, Noob)
  169. end
  170. end
  171. end
  172. end
  173. end
  174. end
  175.  
  176. function chatfunc(text,color)
  177. local chat = coroutine.wrap(function()
  178. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  179. Character:FindFirstChild("TalkingBillBoard"):destroy()
  180. end
  181. local naeeym2 = Instance.new("BillboardGui",Character)
  182. naeeym2.Size = UDim2.new(0,100,0,40)
  183. naeeym2.StudsOffset = Vector3.new(0,3,0)
  184. naeeym2.Adornee = Character.Head
  185. naeeym2.Name = "TalkingBillBoard"
  186. local tecks2 = Instance.new("TextLabel",naeeym2)
  187. tecks2.BackgroundTransparency = 1
  188. tecks2.BorderSizePixel = 0
  189. tecks2.Text = ""
  190. tecks2.Font = "SciFi"
  191. tecks2.TextSize = 30
  192. tecks2.TextStrokeTransparency = 0
  193. tecks2.TextColor3 = color
  194. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  195. tecks2.Size = UDim2.new(1,0,0.5,0)
  196. local tecks3 = Instance.new("TextLabel",naeeym2)
  197. tecks3.BackgroundTransparency = 1
  198. tecks3.BorderSizePixel = 0
  199. tecks3.Text = ""
  200. tecks3.Font = "SciFi"
  201. tecks3.TextSize = 30
  202. tecks3.TextStrokeTransparency = 0
  203. tecks3.TextColor3 = Color3.new(0,0,0)
  204. tecks3.TextStrokeColor3 = color
  205. tecks3.Size = UDim2.new(1,0,0.5,0)
  206. coroutine.resume(coroutine.create(function()
  207. while true do
  208. swait(1)
  209. plr.Character.wrecked.Volume = 0.3
  210. if chaosmode == true then
  211. tecks2.TextColor3 = BrickColor.random().Color
  212. tecks3.TextStrokeColor3 = BrickColor.random().Color
  213. end
  214. tecks2.Position = UDim2.new(0,math.random(-5,5),0,math.random(-5,5))
  215. tecks3.Position = UDim2.new(0,math.random(-5,5),0,math.random(-5,5))
  216. tecks2.Rotation = math.random(-5,5)
  217. tecks3.Rotation = math.random(-5,5)
  218. end
  219. end))
  220. for i = 1,string.len(text),1 do
  221. CFuncs["Sound"].Create("rbxassetid://274118116", char, 0.25, 0.115)
  222. tecks2.Text = string.sub(text,1,i)
  223. tecks3.Text = string.sub(text,1,i)
  224. swait(1)
  225. end
  226. wait(1)
  227. local randomrot = math.random(1,2)
  228. if randomrot == 1 then
  229. for i = 1, 50 do
  230. swait()
  231. tecks2.Rotation = tecks2.Rotation - .75
  232. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  233. tecks2.TextTransparency = tecks2.TextTransparency + .04
  234. tecks3.Rotation = tecks2.Rotation + .75
  235. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  236. tecks3.TextTransparency = tecks2.TextTransparency + .04
  237. end
  238. elseif randomrot == 2 then
  239. for i = 1, 50 do
  240. swait()
  241. tecks2.Rotation = tecks2.Rotation + .75
  242. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  243. tecks2.TextTransparency = tecks2.TextTransparency + .04
  244. tecks3.Rotation = tecks2.Rotation - .75
  245. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  246. tecks3.TextTransparency = tecks2.TextTransparency + .04
  247. end
  248. end
  249. naeeym2:Destroy()
  250. end)
  251. chat()
  252. end
  253.  
  254.  
  255. local Create = LoadLibrary("RbxUtility").Create
  256.  
  257. CFuncs = {
  258. ["Part"] = {
  259. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  260. local Part = Create("Part"){
  261. Parent = Parent,
  262. Reflectance = Reflectance,
  263. Transparency = Transparency,
  264. CanCollide = false,
  265. Locked = true,
  266. BrickColor = BrickColor.new(tostring(BColor)),
  267. Name = Name,
  268. Size = Size,
  269. Material = Material,
  270. }
  271. RemoveOutlines(Part)
  272. return Part
  273. end;
  274. };
  275.  
  276. ["Mesh"] = {
  277. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  278. local Msh = Create(Mesh){
  279. Parent = Part,
  280. Offset = OffSet,
  281. Scale = Scale,
  282. }
  283. if Mesh == "SpecialMesh" then
  284. Msh.MeshType = MeshType
  285. Msh.MeshId = MeshId
  286. end
  287. return Msh
  288. end;
  289. };
  290.  
  291. ["Mesh"] = {
  292. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  293. local Msh = Create(Mesh){
  294. Parent = Part,
  295. Offset = OffSet,
  296. Scale = Scale,
  297. }
  298. if Mesh == "SpecialMesh" then
  299. Msh.MeshType = MeshType
  300. Msh.MeshId = MeshId
  301. end
  302. return Msh
  303. end;
  304. };
  305.  
  306. ["Weld"] = {
  307. Create = function(Parent, Part0, Part1, C0, C1)
  308. local Weld = Create("Weld"){
  309. Parent = Parent,
  310. Part0 = Part0,
  311. Part1 = Part1,
  312. C0 = C0,
  313. C1 = C1,
  314. }
  315. return Weld
  316. end;
  317. };
  318.  
  319. ["Sound"] = {
  320. Create = function(id, par, vol, pit)
  321. coroutine.resume(coroutine.create(function()
  322. local S = Create("Sound"){
  323. Volume = vol,
  324. Name = "EffectSoundo",
  325. Pitch = pit or 1,
  326. SoundId = id,
  327. Parent = par or workspace,
  328. }
  329. wait()
  330. S:play()
  331. game:GetService("Debris"):AddItem(S, 10)
  332. end))
  333. end;
  334. };
  335.  
  336. ["LongSound"] = {
  337. Create = function(id, par, vol, pit)
  338. coroutine.resume(coroutine.create(function()
  339. local S = Create("Sound"){
  340. Volume = vol,
  341. Pitch = pit or 1,
  342. SoundId = id,
  343. Parent = par or workspace,
  344. }
  345. wait()
  346. S:play()
  347. game:GetService("Debris"):AddItem(S, 30)
  348. end))
  349. end;
  350. };
  351.  
  352. ["ParticleEmitter"] = {
  353. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  354. local fp = Create("ParticleEmitter"){
  355. Parent = Parent,
  356. Color = ColorSequence.new(Color1, Color2),
  357. LightEmission = LightEmission,
  358. Size = Size,
  359. Texture = Texture,
  360. Transparency = Transparency,
  361. ZOffset = ZOffset,
  362. Acceleration = Accel,
  363. Drag = Drag,
  364. LockedToPart = LockedToPart,
  365. VelocityInheritance = VelocityInheritance,
  366. EmissionDirection = EmissionDirection,
  367. Enabled = Enabled,
  368. Lifetime = LifeTime,
  369. Rate = Rate,
  370. Rotation = Rotation,
  371. RotSpeed = RotSpeed,
  372. Speed = Speed,
  373. VelocitySpread = VelocitySpread,
  374. }
  375. return fp
  376. end;
  377. };
  378.  
  379. CreateTemplate = {
  380.  
  381. };
  382. }
  383.  
  384.  
  385.  
  386. New = function(Object, Parent, Name, Data)
  387. local Object = Instance.new(Object)
  388. for Index, Value in pairs(Data or {}) do
  389. Object[Index] = Value
  390. end
  391. Object.Parent = Parent
  392. Object.Name = Name
  393. return Object
  394. end
  395. local halocolor = BrickColor.new("Pastel light blue")
  396. local halocolor2 = BrickColor.new("Cool yellow")
  397. local starcolor = BrickColor.new("Bright yellow")
  398. local lunacolor = BrickColor.new("Really red")
  399. local lunacolor2 = BrickColor.new("Bright blue")
  400. local wepcolor = BrickColor.new("Really black")
  401. local maincolor = BrickColor.new("Really black")
  402. local m = Instance.new("Model",char)
  403. local m2 = Instance.new("Model",char)
  404. local m3 = Instance.new("Model",char)
  405. local mw1 = Instance.new("Model",char)
  406. local mw2 = Instance.new("Model",char)
  407.  
  408. local extrawingmod1 = Instance.new("Model",char)
  409. local extrawingmod2 = Instance.new("Model",char)
  410.  
  411. function CreateParta(parent,transparency,reflectance,material,brickcolor)
  412. local p = Instance.new("Part")
  413. p.TopSurface = 0
  414. p.BottomSurface = 0
  415. p.Parent = parent
  416. p.Size = Vector3.new(0.1,0.1,0.1)
  417. p.Transparency = transparency
  418. p.Reflectance = reflectance
  419. p.CanCollide = false
  420. p.Locked = true
  421. p.BrickColor = brickcolor
  422. p.Material = material
  423. return p
  424. end
  425.  
  426. function CreateMesh(parent,meshtype,x1,y1,z1)
  427. local mesh = Instance.new("SpecialMesh",parent)
  428. mesh.MeshType = meshtype
  429. mesh.Scale = Vector3.new(x1*10,y1*10,z1*10)
  430. return mesh
  431. end
  432.  
  433. function CreateSpecialMesh(parent,meshid,x1,y1,z1)
  434. local mesh = Instance.new("SpecialMesh",parent)
  435. mesh.MeshType = "FileMesh"
  436. mesh.MeshId = meshid
  437. mesh.Scale = Vector3.new(x1,y1,z1)
  438. return mesh
  439. end
  440.  
  441.  
  442. function CreateSpecialGlowMesh(parent,meshid,x1,y1,z1)
  443. local mesh = Instance.new("SpecialMesh",parent)
  444. mesh.MeshType = "FileMesh"
  445. mesh.MeshId = meshid
  446. mesh.TextureId = "http://www.roblox.com/asset/?id=269748808"
  447. mesh.Scale = Vector3.new(x1,y1,z1)
  448. mesh.VertexColor = Vector3.new(parent.BrickColor.r, parent.BrickColor.g, parent.BrickColor.b)
  449. return mesh
  450. end
  451.  
  452. function CreateWeld(parent,part0,part1,C1X,C1Y,C1Z,C1Xa,C1Ya,C1Za,C0X,C0Y,C0Z,C0Xa,C0Ya,C0Za)
  453. local weld = Instance.new("Weld")
  454. weld.Parent = parent
  455. weld.Part0 = part0
  456. weld.Part1 = part1
  457. weld.C1 = CFrame.new(C1X,C1Y,C1Z)*CFrame.Angles(C1Xa,C1Ya,C1Za)
  458. weld.C0 = CFrame.new(C0X,C0Y,C0Z)*CFrame.Angles(C0Xa,C0Ya,C0Za)
  459. return weld
  460. end
  461.  
  462.  
  463. --------------
  464. local secondchar = Instance.new("Model",char)
  465. local GhostCol = BrickColor.new("Really red")
  466. local sectors = CreateParta(secondchar,1,0,"Neon",GhostCol)
  467. CreateMesh(sectors,"Brick",2*8,2*8,1*8)
  468. local torsweld = CreateWeld(sectors,root,sectors,1,-1,-2,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  469.  
  470. local seclarm = CreateParta(secondchar,1,0,"Neon",GhostCol)
  471. CreateMesh(seclarm,"Brick",1*8,2*8,1*8)
  472. local larmsweld = CreateWeld(seclarm,sectors,seclarm,1.5,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  473.  
  474. local secrarm = CreateParta(secondchar,1,0,"Neon",GhostCol)
  475. CreateMesh(secrarm,"Brick",1*8,2*8,1*8)
  476. local rarmsweld = CreateWeld(secrarm,sectors,secrarm,-1.5,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  477.  
  478. local seclleg = CreateParta(secondchar,1,0,"Neon",GhostCol)
  479. CreateMesh(seclleg,"Brick",1*8,2*8,1*8)
  480. local llegsweld = CreateWeld(seclleg,sectors,seclleg,0.5,2,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  481.  
  482. local secrleg = CreateParta(secondchar,1,0,"Neon",GhostCol)
  483. CreateMesh(secrleg,"Brick",1*8,2*8,1*8)
  484. local rlegsweld = CreateWeld(secrleg,sectors,secrleg,-0.5,2,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  485.  
  486. local seched = CreateParta(secondchar,1,0,"Neon",GhostCol)
  487. CreateMesh(seched,"Brick",1*8,1*8,1*8)
  488. local hedsweld = CreateWeld(seched,sectors,seched,0,-1.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  489. --------------
  490. local sorb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.random())
  491. CreateWeld(sorb,rarm,sorb,0,1,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  492. local sorb2 = CreateParta(m,1,1,"SmoothPlastic",BrickColor.random())
  493. CreateWeld(sorb2,larm,sorb2,0,1,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  494.  
  495. local handlex = CreateParta(mw2,1,1,"Neon",maincolor)
  496. CreateMesh(handle,"Brick",0,0,0)
  497. local handlexweld = CreateWeld(handlex,tors,handlex,0,-1.5,-1.05,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  498. local valuaring = 10
  499. for i = 0, 49 do
  500. valuaring = valuaring + 10
  501. rn = CreateParta(mw2,0,0,"Neon",halocolor)
  502. CreateMesh(rn,"Brick",0.25,0.1,0.1)
  503. CreateWeld(rn,handlex,rn,0,1,0,math.rad(0),math.rad(0),math.rad(valuaring),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  504. end
  505.  
  506. handlex = CreateParta(mw2,1,1,"Neon",maincolor)
  507. CreateMesh(handle,"Brick",0,0,0)
  508. CreateWeld(handlex,tors,handlex,0,-3,-2.1,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  509. local valuaring = 10
  510. for i = 0, 49 do
  511. valuaring = valuaring + 10
  512. rn = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  513. CreateMesh(rn,"Brick",0.5,0.2,0.2)
  514. CreateWeld(rn,handlex,rn,0,2,0,math.rad(0),math.rad(0),math.rad(valuaring),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  515. end
  516.  
  517.  
  518. local handle = CreateParta(m,1,1,"Neon",maincolor)
  519. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  520. local handleweld = CreateWeld(handle,tors,handle,0,-1.5,-1.05,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  521.  
  522. --- Left wing.
  523.  
  524. local lwing1 = CreateParta(m,1,1,"Neon",maincolor)
  525. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  526. local lwing1weld = CreateWeld(lwing1,handle,lwing1,3,0,0,math.rad(5),math.rad(0),math.rad(12.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  527.  
  528. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  529. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  530. CreateWeld(wed,lwing1,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  531. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  532. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  533. CreateWeld(wed,lwing1,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  534. A0 = Instance.new('Attachment',wed)
  535. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  536. CreateMesh(wed,"Wedge",0.05,0.5,3)
  537. CreateWeld(wed,lwing1,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  538. A1 = Instance.new('Attachment',wed)
  539. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  540. CreateMesh(wed,"Wedge",0.05,3,0.5)
  541. CreateWeld(wed,lwing1,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  542.  
  543. tl1 = Instance.new('Trail',wed)
  544. tl1.Attachment0 = A0
  545. tl1.Attachment1 = A1
  546. --tl1.Texture = "http://www.roblox.com/asset/?id=1049219073"
  547. tl1.LightEmission = 1
  548. tl1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  549. tl1.Color = ColorSequence.new(BrickColor.new('Really red').Color)
  550. tl1.Lifetime = 0.6
  551.  
  552.  
  553. local lwing2 = CreateParta(m,1,1,"Neon",maincolor)
  554. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  555. local lwing2weld = CreateWeld(lwing2,handle,lwing2,4,1,0,math.rad(10),math.rad(0),math.rad(25),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  556.  
  557. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  558. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  559. CreateWeld(wed,lwing2,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  560. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  561. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  562. CreateWeld(wed,lwing2,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  563. A0 = Instance.new('Attachment',wed)
  564. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  565. CreateMesh(wed,"Wedge",0.05,0.5,3)
  566. CreateWeld(wed,lwing2,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  567. A1 = Instance.new('Attachment',wed)
  568. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  569. CreateMesh(wed,"Wedge",0.05,3,0.5)
  570. CreateWeld(wed,lwing2,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  571.  
  572. tl2 = Instance.new('Trail',wed)
  573. tl2.Attachment0 = A0
  574. tl2.Attachment1 = A1
  575. --tl2.Texture = "http://www.roblox.com/asset/?id=1049219073"
  576. tl2.LightEmission = 1
  577. tl2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  578. tl2.Color = ColorSequence.new(BrickColor.new('Really red').Color)
  579. tl2.Lifetime = 0.6
  580.  
  581. local lwing3 = CreateParta(m,1,1,"Neon",maincolor)
  582. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  583. local lwing3weld = CreateWeld(lwing3,handle,lwing3,4.75,2,0,math.rad(15),math.rad(0),math.rad(37.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  584.  
  585. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  586. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  587. CreateWeld(wed,lwing3,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  588. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  589. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  590. CreateWeld(wed,lwing3,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  591. A0 = Instance.new('Attachment',wed)
  592. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  593. CreateMesh(wed,"Wedge",0.05,0.5,3)
  594. CreateWeld(wed,lwing3,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  595. A1 = Instance.new('Attachment',wed)
  596. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  597. CreateMesh(wed,"Wedge",0.05,3,0.5)
  598. CreateWeld(wed,lwing3,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  599.  
  600. tl3 = Instance.new('Trail',wed)
  601. tl3.Attachment0 = A0
  602. tl3.Attachment1 = A1
  603. --tl3.Texture = "http://www.roblox.com/asset/?id=1049219073"
  604. tl3.LightEmission = 1
  605. tl3.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  606. tl3.Color = ColorSequence.new(BrickColor.new('Really red').Color)
  607. tl3.Lifetime = 0.6
  608.  
  609. tl1.Enabled = true
  610. tl2.Enabled = true
  611. tl3.Enabled = true
  612. local lwing4 = CreateParta(m,1,1,"Neon",maincolor)
  613. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  614. local lwing4weld = CreateWeld(lwing4,handle,lwing4,5.75,3,0,math.rad(20),math.rad(0),math.rad(50),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  615.  
  616. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  617. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  618. CreateWeld(wed,lwing4,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  619. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  620. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  621. CreateWeld(wed,lwing4,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  622. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  623. CreateMesh(wed,"Wedge",0.05,0.5,3)
  624. CreateWeld(wed,lwing4,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  625. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  626. CreateMesh(wed,"Wedge",0.05,3,0.5)
  627. CreateWeld(wed,lwing4,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  628.  
  629. local lwing5 = CreateParta(m,1,1,"Neon",maincolor)
  630. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  631. local lwing5weld = CreateWeld(lwing5,handle,lwing5,6.75,4,0,math.rad(25),math.rad(0),math.rad(62.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  632.  
  633. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  634. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  635. CreateWeld(wed,lwing5,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  636. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  637. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  638. CreateWeld(wed,lwing5,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  639. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  640. CreateMesh(wed,"Wedge",0.05,0.5,3)
  641. CreateWeld(wed,lwing5,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  642. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  643. CreateMesh(wed,"Wedge",0.05,3,0.5)
  644. CreateWeld(wed,lwing5,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  645.  
  646. local lwing6 = CreateParta(m,1,1,"Neon",maincolor)
  647. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  648. local lwing6weld = CreateWeld(lwing6,handle,lwing6,7.75,5,0,math.rad(30),math.rad(0),math.rad(75),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  649.  
  650. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  651. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  652. CreateWeld(wed,lwing6,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  653. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  654. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  655. CreateWeld(wed,lwing6,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  656. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  657. CreateMesh(wed,"Wedge",0.05,0.5,3)
  658. CreateWeld(wed,lwing6,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  659. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  660. CreateMesh(wed,"Wedge",0.05,3,0.5)
  661. CreateWeld(wed,lwing6,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  662.  
  663. -- Right wing.
  664.  
  665. local rwing1 = CreateParta(m,1,1,"Neon",maincolor)
  666. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  667. local rwing1weld = CreateWeld(rwing1,handle,rwing1,-3,0,0,math.rad(5),math.rad(0),math.rad(-12.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  668.  
  669. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  670. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  671. CreateWeld(wed,rwing1,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  672. A0 = Instance.new('Attachment',wed)
  673. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  674. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  675. CreateWeld(wed,rwing1,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  676. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  677. CreateMesh(wed,"Wedge",0.05,0.5,3)
  678. CreateWeld(wed,rwing1,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  679. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  680. CreateMesh(wed,"Wedge",0.05,3,0.5)
  681. CreateWeld(wed,rwing1,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  682. A1 = Instance.new('Attachment',wed)
  683.  
  684. tr1 = Instance.new('Trail',wed)
  685. tr1.Attachment0 = A0
  686. tr1.Attachment1 = A1
  687. --tr1.Texture = "http://www.roblox.com/asset/?id=1049219073"
  688. tr1.LightEmission = 1
  689. tr1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  690. tr1.Color = ColorSequence.new(BrickColor.new('Really red').Color)
  691. tr1.Lifetime = 0.6
  692.  
  693. local rwing2 = CreateParta(m,1,1,"Neon",maincolor)
  694. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  695. local rwing2weld = CreateWeld(rwing2,handle,rwing2,-4,1,0,math.rad(10),math.rad(0),math.rad(-25),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  696.  
  697. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  698. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  699. CreateWeld(wed,rwing2,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  700. A0 = Instance.new('Attachment',wed)
  701. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  702. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  703. CreateWeld(wed,rwing2,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  704. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  705. CreateMesh(wed,"Wedge",0.05,0.5,3)
  706. CreateWeld(wed,rwing2,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  707. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  708. CreateMesh(wed,"Wedge",0.05,3,0.5)
  709. CreateWeld(wed,rwing2,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  710. A1 = Instance.new('Attachment',wed)
  711.  
  712. tr2 = Instance.new('Trail',wed)
  713. tr2.Attachment0 = A0
  714. tr2.Attachment1 = A1
  715. --tr2.Texture = "http://www.roblox.com/asset/?id=1049219073"
  716. tr2.LightEmission = 1
  717. tr2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  718. tr2.Color = ColorSequence.new(BrickColor.new('Really red').Color)
  719. tr2.Lifetime = 0.6
  720.  
  721. local rwing3 = CreateParta(m,1,1,"Neon",maincolor)
  722. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  723. local rwing3weld = CreateWeld(rwing3,handle,rwing3,-4.75,2,0,math.rad(15),math.rad(0),math.rad(-37.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  724.  
  725. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  726. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  727. CreateWeld(wed,rwing3,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  728. A0 = Instance.new('Attachment',wed)
  729. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  730. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  731. CreateWeld(wed,rwing3,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  732. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  733. CreateMesh(wed,"Wedge",0.05,0.5,3)
  734. CreateWeld(wed,rwing3,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  735. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  736. CreateMesh(wed,"Wedge",0.05,3,0.5)
  737. CreateWeld(wed,rwing3,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  738. A1 = Instance.new('Attachment',wed)
  739.  
  740. tr3 = Instance.new('Trail',wed)
  741. tr3.Attachment0 = A0
  742. tr3.Attachment1 = A1
  743. --tr3.Texture = "http://www.roblox.com/asset/?id=1049219073"
  744. tr3.LightEmission = 1
  745. tr3.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  746. tr3.Color = ColorSequence.new(BrickColor.new('Really red').Color)
  747. tr3.Lifetime = 0.6
  748.  
  749.  
  750. local rwing4 = CreateParta(m,1,1,"Neon",maincolor)
  751. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  752. local rwing4weld = CreateWeld(rwing4,handle,rwing4,-5.75,3,0,math.rad(20),math.rad(0),math.rad(-50),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  753.  
  754. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  755. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  756. CreateWeld(wed,rwing4,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  757. A0 = Instance.new('Attachment',wed)
  758. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  759. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  760. CreateWeld(wed,rwing4,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  761. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  762. CreateMesh(wed,"Wedge",0.05,0.5,3)
  763. CreateWeld(wed,rwing4,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  764. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  765. CreateMesh(wed,"Wedge",0.05,3,0.5)
  766. CreateWeld(wed,rwing4,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  767. A1 = Instance.new('Attachment',wed)
  768.  
  769. tew1 = Instance.new('Trail',wed)
  770. tew1.Attachment0 = A0
  771. tew1.Attachment1 = A1
  772. --tew1.Texture = "http://www.roblox.com/asset/?id=1049219073"
  773. tew1.LightEmission = 1
  774. tew1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  775. tew1.Color = ColorSequence.new(BrickColor.new('Really red').Color)
  776. tew1.Lifetime = 0.6
  777.  
  778. local rwing5 = CreateParta(m,1,1,"Neon",maincolor)
  779. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  780. local rwing5weld = CreateWeld(rwing5,handle,rwing5,-6.75,4,0,math.rad(25),math.rad(0),math.rad(-62.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  781.  
  782. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  783. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  784. CreateWeld(wed,rwing5,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  785. A0 = Instance.new('Attachment',wed)
  786. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  787. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  788. CreateWeld(wed,rwing5,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  789. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  790. CreateMesh(wed,"Wedge",0.05,0.5,3)
  791. CreateWeld(wed,rwing5,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  792. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  793. CreateMesh(wed,"Wedge",0.05,3,0.5)
  794. CreateWeld(wed,rwing5,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  795. A1 = Instance.new('Attachment',wed)
  796.  
  797. tew2 = Instance.new('Trail',wed)
  798. tew2.Attachment0 = A0
  799. tew2.Attachment1 = A1
  800. --tew2.Texture = "http://www.roblox.com/asset/?id=1049219073"
  801. tew2.LightEmission = 1
  802. tew2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  803. tew2.Color = ColorSequence.new(BrickColor.new('Really red').Color)
  804. tew2.Lifetime = 0.6
  805.  
  806. local rwing6 = CreateParta(m,1,1,"Neon",maincolor)
  807. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  808. local rwing6weld = CreateWeld(rwing6,handle,rwing6,-7.75,3,0,math.rad(30),math.rad(0),math.rad(-75),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  809.  
  810. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  811. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  812. CreateWeld(wed,rwing6,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  813. A0 = Instance.new('Attachment',wed)
  814. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  815. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  816. CreateWeld(wed,rwing6,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  817. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  818. CreateMesh(wed,"Wedge",0.05,0.5,3)
  819. CreateWeld(wed,rwing6,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  820. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  821. CreateMesh(wed,"Wedge",0.05,3,0.5)
  822. CreateWeld(wed,rwing6,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  823. A1 = Instance.new('Attachment',wed)
  824.  
  825. tew3 = Instance.new('Trail',wed)
  826. tew3.Attachment0 = A0
  827. tew3.Attachment1 = A1
  828. --tew3.Texture = "http://www.roblox.com/asset/?id=1049219073"
  829. tew3.LightEmission = 1
  830. tew3.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  831. tew3.Color = ColorSequence.new(BrickColor.new('Really red').Color)
  832. tew3.Lifetime = 0.6
  833.  
  834. ---- HERES THE RING
  835.  
  836.  
  837. --[[ran = CreateParta(m2,0,0,"SmoothPlastic",wepcolor)
  838. CreateMesh(ran,"Wedge",1.02,1.02,1.02)
  839. CreateWeld(ran,larm,ran,0,0.15,0,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  840. ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  841. CreateMesh(ran,"Wedge",0.9,0.9,1.025)
  842. CreateWeld(ran,larm,ran,0,0.155,0,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  843. ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  844. CreateMesh(ran,"Wedge",1.025,0.9,0.9)
  845. CreateWeld(ran,larm,ran,0,0.155,-0.025,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  846.  
  847.  
  848. gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  849. CreateMesh(gan,"Brick",1.075,0.1,1.075)
  850. CreateWeld(gan,larm,gan,0,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  851.  
  852. gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  853. CreateMesh(gan,"Brick",1.075,0.1,1.075)
  854. CreateWeld(gan,larm,gan,0,0.75,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  855.  
  856.  
  857.  
  858. gan = CreateParta(m2,0,0,"Neon",halocolor2)
  859. CreateMesh(gan,"Brick",1.095,0.035,1.095)
  860. CreateWeld(gan,larm,gan,0,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  861.  
  862. gan = CreateParta(m2,0,0,"Neon",halocolor2)
  863. CreateMesh(gan,"Brick",1.095,0.035,1.095)
  864. CreateWeld(gan,larm,gan,0,0.75,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  865.  
  866. gane = CreateParta(m3,0,0,"SmoothPlastic",lunacolor2)
  867. CreateMesh(gane,"Brick",1.0625,0.2,1.0625)
  868. CreateWeld(gane,larm,gane,0,0.6,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  869.  
  870. star = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  871. CreateSpecialMesh(star,"http://www.roblox.com/asset/?id=45428961",2.5,2.5,2.5)
  872. CreateWeld(star,larm,star,0,0.475,0.6,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  873. starl = CreateParta(m3,0,0,"SmoothPlastic",starcolor)
  874. CreateSpecialMesh(starl,"http://www.roblox.com/asset/?id=45428961",1.95,2.55,1.95)
  875. CreateWeld(starl,larm,starl,0,0.475,0.6,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  876.  
  877. --- second ring
  878.  
  879. ran = CreateParta(m2,0,0,"SmoothPlastic",wepcolor)
  880. CreateMesh(ran,"Wedge",1.02,1.02,1.02)
  881. CreateWeld(ran,rarm,ran,0,0.15,0,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  882. ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  883. CreateMesh(ran,"Wedge",0.9,0.9,1.025)
  884. CreateWeld(ran,rarm,ran,0,0.155,0,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  885. ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  886. CreateMesh(ran,"Wedge",1.025,0.9,0.9)
  887. CreateWeld(ran,rarm,ran,0,0.155,-0.025,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  888.  
  889. gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  890. CreateMesh(gan,"Brick",1.075,0.1,1.075)
  891. CreateWeld(gan,rarm,gan,0,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  892.  
  893. gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  894. CreateMesh(gan,"Brick",1.075,0.1,1.075)
  895. CreateWeld(gan,rarm,gan,0,0.75,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  896.  
  897.  
  898.  
  899. gan = CreateParta(m2,0,0,"Neon",halocolor2)
  900. CreateMesh(gan,"Brick",1.095,0.035,1.095)
  901. CreateWeld(gan,rarm,gan,0,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  902.  
  903. gan = CreateParta(m2,0,0,"Neon",halocolor2)
  904. CreateMesh(gan,"Brick",1.095,0.035,1.095)
  905. CreateWeld(gan,rarm,gan,0,0.75,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  906.  
  907. gane = CreateParta(m3,0,0,"SmoothPlastic",lunacolor2)
  908. CreateMesh(gane,"Brick",1.0625,0.2,1.0625)
  909. CreateWeld(gane,rarm,gane,0,0.6,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  910.  
  911. star = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  912. CreateSpecialMesh(star,"http://www.roblox.com/asset/?id=45428961",2.5,2.5,2.5)
  913. CreateWeld(star,rarm,star,0,-0.475,0.6,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  914. starl = CreateParta(m3,0,0,"SmoothPlastic",starcolor)
  915. CreateSpecialMesh(starl,"http://www.roblox.com/asset/?id=45428961",1.95,2.55,1.95)
  916. CreateWeld(starl,rarm,starl,0,-0.475,0.6,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))]]--
  917.  
  918.  
  919.  
  920. for i, v in pairs(m:GetChildren()) do
  921. if v:IsA("Part") then
  922. v.BrickColor = BrickColor.new("Really black")
  923. v.Material = "Glass"
  924. end
  925. end
  926. for i, v in pairs(m2:GetChildren()) do
  927. if v:IsA("Part") then
  928. v.BrickColor = BrickColor.new("Really red")
  929. v.Material = "Granite"
  930. end
  931. end
  932. for i, v in pairs(m3:GetChildren()) do
  933. if v:IsA("Part") then
  934. v.BrickColor = BrickColor.new("Really red")
  935. v.Material = "Neon"
  936. end
  937. end
  938. for i, v in pairs(mw2:GetChildren()) do
  939. if v:IsA("Part") then
  940. v.BrickColor = BrickColor.new("Really red")
  941. v.Material = "Neon"
  942. end
  943. end
  944. for i, v in pairs(mw1:GetChildren()) do
  945. if v:IsA("Part") then
  946. v.Transparency = 0
  947. v.BrickColor = BrickColor.new("Really red")
  948. v.Material = "Neon"
  949. end
  950. end
  951. for i, v in pairs(extrawingmod1:GetChildren()) do
  952. if v:IsA("Part") then
  953. v.Transparency = 0
  954. v.BrickColor = BrickColor.new("Really red")
  955. v.Material = "Neon"
  956. end
  957. end
  958. for i, v in pairs(extrawingmod2:GetChildren()) do
  959. if v:IsA("Part") then
  960. v.Transparency = 0
  961. v.BrickColor = BrickColor.new("Really red")
  962. v.Material = "Neon"
  963. end
  964. end
  965. local MAINRUINCOLOR = BrickColor.new("Really red")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement