Advertisement
Hmm465_Gaming

u wot

Jun 21st, 2018
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 284.74 KB | None | 0 0
  1. -----------------------
  2. --[[ Organization : Insanity ]]--
  3. --[[ Name : Ender (Thou who collects the souls of innocents) ]]--
  4. --[[ Creator / Captain : DATA RESTRICTED ]]--
  5. -------------------------------------------------------
  6. --A script By makhail07
  7.  
  8. --Discord Creterisk#2958
  9.  
  10. --This script is a fucking mistake have fun skids
  11. -------------------------------------------------------
  12.  
  13. local FavIDs = {
  14.     340106355, --Nefl Crystals
  15.     927529620, --Dimension
  16.     876981900, --Fantasy
  17.     398987889, --Ordinary Days
  18.     1117396305, --Oh wait, it's you.
  19.     885996042, --Action Winter Journey
  20.     919231299, --Sprawling Idiot Effigy
  21.     743466274, --Good Day Sunshine
  22.     727411183, --Knife Fight
  23.     1402748531, --The Earth Is Counting On You!
  24.     595230126 --Robot Language
  25.     }
  26.  
  27.  
  28.  
  29. --The reality of my life isn't real but a Universe -makhail07
  30. wait()
  31. local plr = game.Players.LocalPlayer
  32. print('Local User is '..plr.Name)
  33. local char = plr.Character
  34. local hum = char.Humanoid
  35. local ra = char["Right Arm"]
  36. local la= char["Left Arm"]
  37. local rl= char["Right Leg"]
  38. local ll = char["Left Leg"]
  39. local hed = char.Head
  40. local root = char.HumanoidRootPart
  41. local rootj = root.RootJoint
  42. local tors = char.Torso
  43. local mouse = plr:GetMouse()
  44. local RootCF = CFrame.fromEulerAnglesXYZ(-1.57, 0, 3.14)
  45. local RHCF = CFrame.fromEulerAnglesXYZ(0, 1.6, 0)
  46. local LHCF = CFrame.fromEulerAnglesXYZ(0, -1.6, 0)
  47. pressed1 = false
  48. pressed2 = false
  49. -------------------------------------------------------
  50. --Start Good Stuff--
  51. -------------------------------------------------------
  52. CF = CFrame.new
  53. angles = CFrame.Angles
  54. attack = false
  55. Euler = CFrame.fromEulerAnglesXYZ
  56. Rad = math.rad
  57. IT = Instance.new
  58. BrickC = BrickColor.new
  59. Cos = math.cos
  60. Acos = math.acos
  61. Sin = math.sin
  62. Asin = math.asin
  63. Abs = math.abs
  64. Mrandom = math.random
  65. Floor = math.floor
  66. -------------------------------------------------------
  67. --End Good Stuff--
  68. -------------------------------------------------------
  69. necko = CF(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  70. RSH, LSH = nil, nil
  71. RW = Instance.new("Weld")
  72. LW = Instance.new("Weld")
  73. RH = tors["Right Hip"]
  74. LH = tors["Left Hip"]
  75. RSH = tors["Right Shoulder"]
  76. LSH = tors["Left Shoulder"]
  77. RSH.Parent = nil
  78. LSH.Parent = nil
  79. RW.Name = "RW"
  80. RW.Part0 = tors
  81. RW.C0 = CF(1.5, 0.5, 0)
  82. RW.C1 = CF(0, 0.5, 0)
  83. RW.Part1 = ra
  84. RW.Parent = tors
  85. LW.Name = "LW"
  86. LW.Part0 = tors
  87. LW.C0 = CF(-1.5, 0.5, 0)
  88. LW.C1 = CF(0, 0.5, 0)
  89. LW.Part1 = la
  90. LW.Parent = tors
  91. Effects = {}
  92.  
  93. -------------------------------------------------------
  94. --Start HeartBeat--
  95. -------------------------------------------------------
  96. ArtificialHB = Instance.new("BindableEvent", script)
  97. ArtificialHB.Name = "Heartbeat"
  98. script:WaitForChild("Heartbeat")
  99.  
  100. frame = 1 / 60
  101. tf = 0
  102. allowframeloss = false
  103. tossremainder = false
  104.  
  105.  
  106. lastframe = tick()
  107. script.Heartbeat:Fire()
  108.  
  109.  
  110. game:GetService("RunService").Heartbeat:connect(function(s, p)
  111.     tf = tf + s
  112.     if tf >= frame then
  113.         if allowframeloss then
  114.             script.Heartbeat:Fire()
  115.             lastframe = tick()
  116.         else
  117.             for i = 1, math.floor(tf / frame) do
  118.                 script.Heartbeat:Fire()
  119.             end
  120.             lastframe = tick()
  121.         end
  122.         if tossremainder then
  123.             tf = 0
  124.         else
  125.             tf = tf - frame * math.floor(tf / frame)
  126.         end
  127.     end
  128. end)
  129. -------------------------------------------------------
  130. --End HeartBeat--
  131. -------------------------------------------------------
  132.  
  133. -------------------------------------------------------
  134. --Start Important Functions--
  135. -------------------------------------------------------
  136. function swait(num)
  137.     if num == 0 or num == nil then
  138.         game:service("RunService").Stepped:wait(0)
  139.     else
  140.         for i = 0, num do
  141.             game:service("RunService").Stepped:wait(0)
  142.         end
  143.     end
  144. end
  145. function thread(f)
  146.     coroutine.resume(coroutine.create(f))
  147. end
  148. function clerp(a, b, t)
  149.     local qa = {
  150.         QuaternionFromCFrame(a)
  151.     }
  152.     local qb = {
  153.         QuaternionFromCFrame(b)
  154.     }
  155.     local ax, ay, az = a.x, a.y, a.z
  156.     local bx, by, bz = b.x, b.y, b.z
  157.     local _t = 1 - t
  158.     return QuaternionToCFrame(_t * ax + t * bx, _t * ay + t * by, _t * az + t * bz, QuaternionSlerp(qa, qb, t))
  159. end
  160. function QuaternionFromCFrame(cf)
  161.     local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  162.     local trace = m00 + m11 + m22
  163.     if trace > 0 then
  164.         local s = math.sqrt(1 + trace)
  165.         local recip = 0.5 / s
  166.         return (m21 - m12) * recip, (m02 - m20) * recip, (m10 - m01) * recip, s * 0.5
  167.     else
  168.         local i = 0
  169.         if m00 < m11 then
  170.             i = 1
  171.         end
  172.         if m22 > (i == 0 and m00 or m11) then
  173.             i = 2
  174.         end
  175.         if i == 0 then
  176.             local s = math.sqrt(m00 - m11 - m22 + 1)
  177.             local recip = 0.5 / s
  178.             return 0.5 * s, (m10 + m01) * recip, (m20 + m02) * recip, (m21 - m12) * recip
  179.         elseif i == 1 then
  180.             local s = math.sqrt(m11 - m22 - m00 + 1)
  181.             local recip = 0.5 / s
  182.             return (m01 + m10) * recip, 0.5 * s, (m21 + m12) * recip, (m02 - m20) * recip
  183.         elseif i == 2 then
  184.             local s = math.sqrt(m22 - m00 - m11 + 1)
  185.             local recip = 0.5 / s
  186.             return (m02 + m20) * recip, (m12 + m21) * recip, 0.5 * s, (m10 - m01) * recip
  187.         end
  188.     end
  189. end
  190. function QuaternionToCFrame(px, py, pz, x, y, z, w)
  191.     local xs, ys, zs = x + x, y + y, z + z
  192.     local wx, wy, wz = w * xs, w * ys, w * zs
  193.     local xx = x * xs
  194.     local xy = x * ys
  195.     local xz = x * zs
  196.     local yy = y * ys
  197.     local yz = y * zs
  198.     local zz = z * zs
  199.     return CFrame.new(px, py, pz, 1 - (yy + zz), xy - wz, xz + wy, xy + wz, 1 - (xx + zz), yz - wx, xz - wy, yz + wx, 1 - (xx + yy))
  200. end
  201. function QuaternionSlerp(a, b, t)
  202.     local cosTheta = a[1] * b[1] + a[2] * b[2] + a[3] * b[3] + a[4] * b[4]
  203.     local startInterp, finishInterp
  204.     if cosTheta >= 1.0E-4 then
  205.         if 1 - cosTheta > 1.0E-4 then
  206.             local theta = math.acos(cosTheta)
  207.             local invSinTheta = 1 / Sin(theta)
  208.             startInterp = Sin((1 - t) * theta) * invSinTheta
  209.             finishInterp = Sin(t * theta) * invSinTheta
  210.         else
  211.             startInterp = 1 - t
  212.             finishInterp = t
  213.         end
  214.     elseif 1 + cosTheta > 1.0E-4 then
  215.         local theta = math.acos(-cosTheta)
  216.         local invSinTheta = 1 / Sin(theta)
  217.         startInterp = Sin((t - 1) * theta) * invSinTheta
  218.         finishInterp = Sin(t * theta) * invSinTheta
  219.     else
  220.         startInterp = t - 1
  221.         finishInterp = t
  222.     end
  223.     return a[1] * startInterp + b[1] * finishInterp, a[2] * startInterp + b[2] * finishInterp, a[3] * startInterp + b[3] * finishInterp, a[4] * startInterp + b[4] * finishInterp
  224. end
  225. function rayCast(Position, Direction, Range, Ignore)
  226.     return game:service("Workspace"):FindPartOnRay(Ray.new(Position, Direction.unit * (Range or 999.999)), Ignore)
  227. end
  228. local RbxUtility = LoadLibrary("RbxUtility")
  229. local Create = RbxUtility.Create
  230.  
  231. -------------------------------------------------------
  232. --Start Damage Function--
  233. -------------------------------------------------------
  234. function Damage(Part, hit, minim, maxim, knockback, Type, Property, Delay, HitSound, HitPitch)
  235.     if hit.Parent == nil then
  236.         return
  237.     end
  238.     local h = hit.Parent:FindFirstChildOfClass("Humanoid")
  239.     for _, v in pairs(hit.Parent:children()) do
  240.         if v:IsA("Humanoid") then
  241.             h = v
  242.         end
  243.     end
  244.          if h ~= nil and hit.Parent.Name ~= char.Name and hit.Parent:FindFirstChild("UpperTorso") ~= nil then
  245.    
  246.          hit.Parent:FindFirstChild("Head"):BreakJoints()
  247.          end
  248.  
  249.     if h ~= nil and hit.Parent.Name ~= char.Name and hit.Parent:FindFirstChild("Torso") ~= nil then
  250.         if hit.Parent:findFirstChild("DebounceHit") ~= nil then
  251.             if hit.Parent.DebounceHit.Value == true then
  252.                 return
  253.             end
  254.         end
  255.          if insta == true then
  256.          hit.Parent:FindFirstChild("Head"):BreakJoints()
  257.          end
  258.         local c = Create("ObjectValue"){
  259.             Name = "creator",
  260.             Value = game:service("Players").LocalPlayer,
  261.             Parent = h,
  262.         }
  263.         game:GetService("Debris"):AddItem(c, .5)
  264.         if HitSound ~= nil and HitPitch ~= nil then
  265.             CFuncs.Sound.Create(HitSound, hit, 1, HitPitch)
  266.         end
  267.         local Damage = math.random(minim, maxim)
  268.         local blocked = false
  269.         local block = hit.Parent:findFirstChild("Block")
  270.         if block ~= nil then
  271.             if block.className == "IntValue" then
  272.                 if block.Value > 0 then
  273.                     blocked = true
  274.                     block.Value = block.Value - 1
  275.                     print(block.Value)
  276.                 end
  277.             end
  278.         end
  279.         if blocked == false then
  280.             h.Health = h.Health - Damage
  281.             ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, tors.BrickColor.Color)
  282.         else
  283.             h.Health = h.Health - (Damage / 2)
  284.             ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, tors.BrickColor.Color)
  285.         end
  286.         if Type == "Knockdown" then
  287.             local hum = hit.Parent.Humanoid
  288.             hum.PlatformStand = true
  289.             coroutine.resume(coroutine.create(function(HHumanoid)
  290.                 swait(1)
  291.                 HHumanoid.PlatformStand = false
  292.             end), hum)
  293.             local angle = (hit.Position - (Property.Position + Vector3.new(0, 0, 0))).unit
  294.             local bodvol = Create("BodyVelocity"){
  295.                 velocity = angle * knockback,
  296.                 P = 5000,
  297.                 maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  298.                 Parent = hit,
  299.             }
  300.             local rl = Create("BodyAngularVelocity"){
  301.                 P = 3000,
  302.                 maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000,
  303.                 angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)),
  304.                 Parent = hit,
  305.             }
  306.             game:GetService("Debris"):AddItem(bodvol, .5)
  307.             game:GetService("Debris"):AddItem(rl, .5)
  308.         elseif Type == "Normal" then
  309.             local vp = Create("BodyVelocity"){
  310.                 P = 500,
  311.                 maxForce = Vector3.new(math.huge, 0, math.huge),
  312.                 velocity = Property.CFrame.lookVector * knockback + Property.Velocity / 1.05,
  313.             }
  314.             if knockback > 0 then
  315.                 vp.Parent = hit.Parent.Torso
  316.             end
  317.             game:GetService("Debris"):AddItem(vp, .5)
  318.         elseif Type == "Up" then
  319.             local bodyVelocity = Create("BodyVelocity"){
  320.                 velocity = Vector3.new(0, 20, 0),
  321.                 P = 5000,
  322.                 maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  323.                 Parent = hit,
  324.             }
  325.             game:GetService("Debris"):AddItem(bodyVelocity, .5)
  326.         elseif Type == "DarkUp" then
  327.             coroutine.resume(coroutine.create(function()
  328.                 for i = 0, 1, 0.1 do
  329.                     swait()
  330.                     Effects.Block.Create(BrickColor.new("Black"), hit.Parent.Torso.CFrame, 5, 5, 5, 1, 1, 1, .08, 1)
  331.                 end
  332.             end))
  333.             local bodyVelocity = Create("BodyVelocity"){
  334.                 velocity = Vector3.new(0, 20, 0),
  335.                 P = 5000,
  336.                 maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  337.                 Parent = hit,
  338.             }
  339.             game:GetService("Debris"):AddItem(bodyVelocity, 1)
  340.         elseif Type == "Snare" then
  341.             local bp = Create("BodyPosition"){
  342.                 P = 2000,
  343.                 D = 100,
  344.                 maxForce = Vector3.new(math.huge, math.huge, math.huge),
  345.                 position = hit.Parent.Torso.Position,
  346.                 Parent = hit.Parent.Torso,
  347.             }
  348.             game:GetService("Debris"):AddItem(bp, 1)
  349.         elseif Type == "Freeze" then
  350.             local BodPos = Create("BodyPosition"){
  351.                 P = 50000,
  352.                 D = 1000,
  353.                 maxForce = Vector3.new(math.huge, math.huge, math.huge),
  354.                 position = hit.Parent.Torso.Position,
  355.                 Parent = hit.Parent.Torso,
  356.             }
  357.             local BodGy = Create("BodyGyro") {
  358.                 maxTorque = Vector3.new(4e+005, 4e+005, 4e+005) * math.huge ,
  359.                 P = 20e+003,
  360.                 Parent = hit.Parent.Torso,
  361.                 cframe = hit.Parent.Torso.CFrame,
  362.             }
  363.             hit.Parent.Torso.Anchored = true
  364.             coroutine.resume(coroutine.create(function(Part)
  365.                 swait(1.5)
  366.                 Part.Anchored = false
  367.             end), hit.Parent.Torso)
  368.             game:GetService("Debris"):AddItem(BodPos, 3)
  369.             game:GetService("Debris"):AddItem(BodGy, 3)
  370.         end
  371.         local debounce = Create("BoolValue"){
  372.             Name = "DebounceHit",
  373.             Parent = hit.Parent,
  374.             Value = true,
  375.         }
  376.         game:GetService("Debris"):AddItem(debounce, Delay)
  377.         c = Create("ObjectValue"){
  378.             Name = "creator",
  379.             Value = Player,
  380.             Parent = h,
  381.         }
  382.         game:GetService("Debris"):AddItem(c, .5)
  383.     end
  384. end
  385. -------------------------------------------------------
  386. --End Damage Function--
  387. -------------------------------------------------------
  388.  
  389. -------------------------------------------------------
  390. --Start Damage Function Customization--
  391. -------------------------------------------------------
  392. function ShowDamage(Pos, Text, Time, Color)
  393.     local Rate = (1 / 30)
  394.     local Pos = (Pos or Vector3.new(0, 0, 0))
  395.     local Text = (Text or "")
  396.     local Time = (Time or 2)
  397.     local Color = (Color or Color3.new(1, 0, 1))
  398.     local EffectPart = CFuncs.Part.Create(workspace, "SmoothPlastic", 0, 1, BrickColor.new(Color), "Effect", Vector3.new(0, 0, 0))
  399.     EffectPart.Anchored = true
  400.     local BillboardGui = Create("BillboardGui"){
  401.         Size = UDim2.new(3, 0, 3, 0),
  402.         Adornee = EffectPart,
  403.         Parent = EffectPart,
  404.     }
  405.     local TextLabel = Create("TextLabel"){
  406.         BackgroundTransparency = 1,
  407.         Size = UDim2.new(1, 0, 1, 0),
  408.         Text = Text,
  409.         Font = "Bodoni",
  410.         TextColor3 = Color,
  411.         TextScaled = true,
  412.         TextStrokeColor3 = Color3.fromRGB(0,0,0),
  413.         Parent = BillboardGui,
  414.     }
  415.     game.Debris:AddItem(EffectPart, (Time))
  416.     EffectPart.Parent = game:GetService("Workspace")
  417.     delay(0, function()
  418.         local Frames = (Time / Rate)
  419.         for Frame = 1, Frames do
  420.             wait(Rate)
  421.             local Percent = (Frame / Frames)
  422.             EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  423.             TextLabel.TextTransparency = Percent
  424.         end
  425.         if EffectPart and EffectPart.Parent then
  426.             EffectPart:Destroy()
  427.         end
  428.     end)
  429. end
  430. -------------------------------------------------------
  431. --End Damage Function Customization--
  432. -------------------------------------------------------
  433.  
  434. function MagniDamage(Part, magni, mindam, maxdam, knock, Type)
  435.   for _, c in pairs(workspace:children()) do
  436.     local hum = c:findFirstChild("Humanoid")
  437.     if hum ~= nil then
  438.       local head = c:findFirstChild("Head")
  439.       if head ~= nil then
  440.         local targ = head.Position - Part.Position
  441.         local mag = targ.magnitude
  442.         if magni >= mag and c.Name ~= plr.Name then
  443.           Damage(head, head, mindam, maxdam, knock, Type, root, 0.1, "http://www.roblox.com/asset/?id=0", 1.2)
  444.         end
  445.       end
  446.     end
  447.   end
  448. end
  449.  
  450.  
  451. CFuncs = {
  452.     Part = {
  453.         Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  454.             local Part = Create("Part")({
  455.                 Parent = Parent,
  456.                 Reflectance = Reflectance,
  457.                 Transparency = Transparency,
  458.                 CanCollide = false,
  459.                 Locked = true,
  460.                 BrickColor = BrickColor.new(tostring(BColor)),
  461.                 Name = Name,
  462.                 Size = Size,
  463.                 Material = Material
  464.             })
  465.             RemoveOutlines(Part)
  466.             return Part
  467.         end
  468.     },
  469.     Mesh = {
  470.         Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  471.             local Msh = Create(Mesh)({
  472.                 Parent = Part,
  473.                 Offset = OffSet,
  474.                 Scale = Scale
  475.             })
  476.             if Mesh == "SpecialMesh" then
  477.                 Msh.MeshType = MeshType
  478.                 Msh.MeshId = MeshId
  479.             end
  480.             return Msh
  481.         end
  482.     },
  483.     Mesh = {
  484.         Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  485.             local Msh = Create(Mesh)({
  486.                 Parent = Part,
  487.                 Offset = OffSet,
  488.                 Scale = Scale
  489.             })
  490.             if Mesh == "SpecialMesh" then
  491.                 Msh.MeshType = MeshType
  492.                 Msh.MeshId = MeshId
  493.             end
  494.             return Msh
  495.         end
  496.     },
  497.     Weld = {
  498.         Create = function(Parent, Part0, Part1, C0, C1)
  499.             local Weld = Create("Weld")({
  500.                 Parent = Parent,
  501.                 Part0 = Part0,
  502.                 Part1 = Part1,
  503.                 C0 = C0,
  504.                 C1 = C1
  505.             })
  506.             return Weld
  507.         end
  508.     },
  509.     Sound = {
  510.         Create = function(id, par, vol, pit)
  511.             coroutine.resume(coroutine.create(function()
  512.                 local S = Create("Sound")({
  513.                     Volume = vol,
  514.                     Pitch = pit or 1,
  515.                     SoundId = id,
  516.                     Parent = par or workspace
  517.                 })
  518.                 wait()
  519.                 S:play()
  520.                 game:GetService("Debris"):AddItem(S, 6)
  521.             end))
  522.         end
  523.     },
  524.     ParticleEmitter = {
  525.         Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  526.             local fp = Create("ParticleEmitter")({
  527.                 Parent = Parent,
  528.                 Color = ColorSequence.new(Color1, Color2),
  529.                 LightEmission = LightEmission,
  530.                 Size = Size,
  531.                 Texture = Texture,
  532.                 Transparency = Transparency,
  533.                 ZOffset = ZOffset,
  534.                 Acceleration = Accel,
  535.                 Drag = Drag,
  536.                 LockedToPart = LockedToPart,
  537.                 VelocityInheritance = VelocityInheritance,
  538.                 EmissionDirection = EmissionDirection,
  539.                 Enabled = Enabled,
  540.                 Lifetime = LifeTime,
  541.                 Rate = Rate,
  542.                 Rotation = Rotation,
  543.                 RotSpeed = RotSpeed,
  544.                 Speed = Speed,
  545.                 VelocitySpread = VelocitySpread
  546.             })
  547.             return fp
  548.         end
  549.     }
  550. }
  551. function RemoveOutlines(part)
  552.     part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  553. end
  554. function CreatePart(FormFactor, Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  555.     local Part = Create("Part")({
  556.         formFactor = FormFactor,
  557.         Parent = Parent,
  558.         Reflectance = Reflectance,
  559.         Transparency = Transparency,
  560.         CanCollide = false,
  561.         Locked = true,
  562.         BrickColor = BrickColor.new(tostring(BColor)),
  563.         Name = Name,
  564.         Size = Size,
  565.         Material = Material
  566.     })
  567.     RemoveOutlines(Part)
  568.     return Part
  569. end
  570. function CreateMesh(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  571.     local Msh = Create(Mesh)({
  572.         Parent = Part,
  573.         Offset = OffSet,
  574.         Scale = Scale
  575.     })
  576.     if Mesh == "SpecialMesh" then
  577.         Msh.MeshType = MeshType
  578.         Msh.MeshId = MeshId
  579.     end
  580.     return Msh
  581. end
  582. function CreateWeld(Parent, Part0, Part1, C0, C1)
  583.     local Weld = Create("Weld")({
  584.         Parent = Parent,
  585.         Part0 = Part0,
  586.         Part1 = Part1,
  587.         C0 = C0,
  588.         C1 = C1
  589.     })
  590.     return Weld
  591. end
  592.  
  593.  
  594. -------------------------------------------------------
  595. --Start Effect Function--
  596. -------------------------------------------------------
  597. EffectModel = Instance.new("Model", char)
  598. Effects = {
  599.   Block = {
  600.     Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, Type)
  601.       local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  602.       prt.Anchored = true
  603.       prt.CFrame = cframe
  604.       local msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  605.       game:GetService("Debris"):AddItem(prt, 10)
  606.       if Type == 1 or Type == nil then
  607.         table.insert(Effects, {
  608.           prt,
  609.           "Block1",
  610.           delay,
  611.           x3,
  612.           y3,
  613.           z3,
  614.           msh
  615.         })
  616.       elseif Type == 2 then
  617.         table.insert(Effects, {
  618.           prt,
  619.           "Block2",
  620.           delay,
  621.           x3,
  622.           y3,
  623.           z3,
  624.           msh
  625.         })
  626.       else
  627.         table.insert(Effects, {
  628.           prt,
  629.           "Block3",
  630.           delay,
  631.           x3,
  632.           y3,
  633.           z3,
  634.           msh
  635.         })
  636.       end
  637.     end
  638.   },
  639.   Sphere = {
  640.     Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  641.       local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  642.       prt.Anchored = true
  643.       prt.CFrame = cframe
  644.       local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  645.       game:GetService("Debris"):AddItem(prt, 10)
  646.       table.insert(Effects, {
  647.         prt,
  648.         "Cylinder",
  649.         delay,
  650.         x3,
  651.         y3,
  652.         z3,
  653.         msh
  654.       })
  655.     end
  656.   },
  657.   Cylinder = {
  658.     Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  659.       local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  660.       prt.Anchored = true
  661.       prt.CFrame = cframe
  662.       local msh = CFuncs.Mesh.Create("CylinderMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  663.       game:GetService("Debris"):AddItem(prt, 10)
  664.       table.insert(Effects, {
  665.         prt,
  666.         "Cylinder",
  667.         delay,
  668.         x3,
  669.         y3,
  670.         z3,
  671.         msh
  672.       })
  673.     end
  674.   },
  675.   Wave = {
  676.     Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  677.       local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  678.       prt.Anchored = true
  679.       prt.CFrame = cframe
  680.       local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://20329976", Vector3.new(0, 0, 0), Vector3.new(x1 / 60, y1 / 60, z1 / 60))
  681.       game:GetService("Debris"):AddItem(prt, 10)
  682.       table.insert(Effects, {
  683.         prt,
  684.         "Cylinder",
  685.         delay,
  686.         x3 / 60,
  687.         y3 / 60,
  688.         z3 / 60,
  689.         msh
  690.       })
  691.     end
  692.   },
  693.   Ring = {
  694.     Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  695.       local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  696.       prt.Anchored = true
  697.       prt.CFrame = cframe
  698.       local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://3270017", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  699.       game:GetService("Debris"):AddItem(prt, 10)
  700.       table.insert(Effects, {
  701.         prt,
  702.         "Cylinder",
  703.         delay,
  704.         x3,
  705.         y3,
  706.         z3,
  707.         msh
  708.       })
  709.     end
  710.   },
  711.   Break = {
  712.     Create = function(brickcolor, cframe, x1, y1, z1)
  713.       local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  714.       prt.Anchored = true
  715.       prt.CFrame = cframe * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  716.       local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  717.       local num = math.random(10, 50) / 1000
  718.       game:GetService("Debris"):AddItem(prt, 10)
  719.       table.insert(Effects, {
  720.         prt,
  721.         "Shatter",
  722.         num,
  723.         prt.CFrame,
  724.         math.random() - math.random(),
  725.         0,
  726.         math.random(50, 100) / 100
  727.       })
  728.     end
  729.   },
  730. Spiral = {
  731.     Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  732.       local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  733.       prt.Anchored = true
  734.       prt.CFrame = cframe
  735.       local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://1051557", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  736.       game:GetService("Debris"):AddItem(prt, 10)
  737.       table.insert(Effects, {
  738.         prt,
  739.         "Cylinder",
  740.         delay,
  741.         x3,
  742.         y3,
  743.         z3,
  744.         msh
  745.       })
  746.     end
  747.   },
  748. Push = {
  749.     Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  750.       local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  751.       prt.Anchored = true
  752.       prt.CFrame = cframe
  753.       local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://437347603", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  754.       game:GetService("Debris"):AddItem(prt, 10)
  755.       table.insert(Effects, {
  756.         prt,
  757.         "Cylinder",
  758.         delay,
  759.         x3,
  760.         y3,
  761.         z3,
  762.         msh
  763.       })
  764.     end
  765.   }
  766. }
  767. -------------------------------------------------------
  768. --End Effect Function--
  769. -------------------------------------------------------
  770.  
  771. function CreateSound(ID, PARENT, VOLUME, PITCH)
  772.     local NSound = nil
  773.     coroutine.resume(coroutine.create(function()
  774.         NSound = Instance.new("Sound", PARENT)
  775.         NSound.Volume = VOLUME
  776.         NSound.Pitch = PITCH
  777.         NSound.SoundId = "http://www.roblox.com/asset/?id="..ID
  778.         swait()
  779.         NSound:play()
  780.         game:GetService("Debris"):AddItem(NSound, 10)
  781.     end))
  782.     return NSound
  783. end
  784.  
  785. function Eviscerate(dude)
  786.     if dude.Name ~= char and dude.Name ~= "Hmm465" and dude.Name ~= "Kir0ki" then
  787.         local bgf = IT("BodyGyro", dude.Head)
  788.         bgf.CFrame = bgf.CFrame * CFrame.fromEulerAnglesXYZ(Rad(-90), 0, 0)
  789.         local val = IT("BoolValue", dude)
  790.         val.Name = "IsHit"
  791.         local ds = coroutine.wrap(function()
  792.             dude:WaitForChild("Head"):BreakJoints()
  793.             wait(0.5)
  794.             target = nil
  795.             coroutine.resume(coroutine.create(function()
  796.                 for i, v in pairs(dude:GetChildren()) do
  797.                     if v:IsA("Accessory") then
  798.                         v:Destroy()
  799.                     end
  800.                     if v:IsA("Humanoid") then
  801.                         v:Destroy()
  802.                     end
  803.                     if v:IsA("CharacterMesh") then
  804.                         v:Destroy()
  805.                     end
  806.                     if v:IsA("Model") then
  807.                         v:Destroy()
  808.                     end
  809.                     if v:IsA("Part") or v:IsA("MeshPart") then
  810.                         for x, o in pairs(v:GetChildren()) do
  811.                             if o:IsA("Decal") then
  812.                                 o:Destroy()
  813.                             end
  814.                         end
  815.                         coroutine.resume(coroutine.create(function()
  816.                             v.Material = "Neon"
  817.                             v.CanCollide = false
  818.                             local PartEmmit1 = IT("ParticleEmitter", v)
  819.                             PartEmmit1.LightEmission = 1
  820.                             PartEmmit1.Texture = "rbxassetid://284205403"
  821.                             PartEmmit1.Color = ColorSequence.new(maincolor.Color)
  822.                             PartEmmit1.Rate = 150
  823.                             PartEmmit1.Lifetime = NumberRange.new(1)
  824.                             PartEmmit1.Size = NumberSequence.new({
  825.                                 NumberSequenceKeypoint.new(0, 0.75, 0),
  826.                                 NumberSequenceKeypoint.new(1, 0, 0)
  827.                             })
  828.                             PartEmmit1.Transparency = NumberSequence.new({
  829.                                 NumberSequenceKeypoint.new(0, 0, 0),
  830.                                 NumberSequenceKeypoint.new(1, 1, 0)
  831.                             })
  832.                             PartEmmit1.Speed = NumberRange.new(0, 0)
  833.                             PartEmmit1.VelocitySpread = 30000
  834.                             PartEmmit1.Rotation = NumberRange.new(-500, 500)
  835.                             PartEmmit1.RotSpeed = NumberRange.new(-500, 500)
  836.                             local BodPoss = IT("BodyPosition", v)
  837.                             BodPoss.P = 3000
  838.                             BodPoss.D = 1000
  839.                             BodPoss.maxForce = Vector3.new(50000000000, 50000000000, 50000000000)
  840.                             BodPoss.position = v.Position + Vector3.new(Mrandom(-15, 15), Mrandom(-15, 15), Mrandom(-15, 15))
  841.                             v.Color = maincolor.Color
  842.                             coroutine.resume(coroutine.create(function()
  843.                                 for i = 0, 49 do
  844.                                     swait(1)
  845.                                     v.Transparency = v.Transparency + 0.08
  846.                                 end
  847.                                 wait(0.5)
  848.                                 PartEmmit1.Enabled = false
  849.                                 wait(3)
  850.                                 v:Destroy()
  851.                                 dude:Destroy()
  852.                             end))
  853.                         end))
  854.                     end
  855.                 end
  856.             end))
  857.         end)
  858.         ds()
  859.     end
  860. end
  861. function SphereAura(bonuspeed, FastSpeed, type, pos, x1, y1, z1, value, color, outerpos)
  862.     local type = type
  863.     local rng = Instance.new("Part", char)
  864.     rng.Anchored = true
  865.     rng.BrickColor = color
  866.     rng.CanCollide = false
  867.     rng.FormFactor = 3
  868.     rng.Name = "Ring"
  869.     rng.Material = "Neon"
  870.     rng.Size = Vector3.new(1, 1, 1)
  871.     rng.Transparency = 0
  872.     rng.TopSurface = 0
  873.     rng.BottomSurface = 0
  874.     rng.CFrame = pos
  875.     rng.CFrame = rng.CFrame + rng.CFrame.lookVector * outerpos
  876.     local rngm = Instance.new("SpecialMesh", rng)
  877.     rngm.MeshType = "Sphere"
  878.     rngm.Scale = Vector3.new(x1, y1, z1)
  879.     local scaler2 = 1
  880.     local speeder = FastSpeed
  881.     if type == "Add" then
  882.         scaler2 = 1 * value
  883.     elseif type == "Divide" then
  884.         scaler2 = 1 / value
  885.     end
  886.     coroutine.resume(coroutine.create(function()
  887.         for i = 0, 10 / bonuspeed, 0.1 do
  888.             swait()
  889.             if type == "Add" then
  890.                 scaler2 = scaler2 - 0.01 * value / bonuspeed
  891.             elseif type == "Divide" then
  892.                 scaler2 = scaler2 - 0.01 / value * bonuspeed
  893.             end
  894.                         rng.BrickColor = BrickColor.random()
  895.             speeder = speeder - 0.01 * FastSpeed * bonuspeed
  896.             rng.CFrame = rng.CFrame + rng.CFrame.lookVector * speeder * bonuspeed
  897.             rng.Transparency = rng.Transparency + 0.01 * bonuspeed
  898.             rngm.Scale = rngm.Scale + Vector3.new(scaler2 * bonuspeed, scaler2 * bonuspeed, 0)
  899.         end
  900.         rng:Destroy()
  901.     end))
  902. end
  903.  
  904. function FindNearestHead(Position, Distance, SinglePlayer)
  905.     if SinglePlayer then
  906.         return Distance > (SinglePlayer.Torso.CFrame.p - Position).magnitude
  907.     end
  908.     local List = {}
  909.     for i, v in pairs(workspace:GetChildren()) do
  910.         if v:IsA("Model") and v:findFirstChild("Head") and v ~= char and Distance >= (v.Head.Position - Position).magnitude then
  911.             table.insert(List, v)
  912.         end
  913.     end
  914.     return List
  915. end
  916. function SoulSteal(dude)
  917. if dude.Name ~= char and dude.Name ~= "Hmm465" and dude.Name ~= "Kir0ki" then
  918. local bgf = IT("BodyGyro", dude.Head)
  919. bgf.CFrame = bgf.CFrame * CFrame.fromEulerAnglesXYZ(Rad(-90), 0, 0)
  920. local val = IT("BoolValue", dude)
  921. val.Name = "IsHit"
  922. local torso = (dude:FindFirstChild'Head' or dude:FindFirstChild'Torso' or dude:FindFirstChild'UpperTorso' or dude:FindFirstChild'LowerTorso' or dude:FindFirstChild'HumanoidRootPart')
  923. local soulst = coroutine.wrap(function()
  924. local soul = Instance.new("Part",dude)
  925. soul.Size = Vector3.new(1,1,1)
  926. soul.CanCollide = false
  927. soul.Anchored = false
  928. soul.Position = torso.Position
  929. soul.Transparency = 1
  930. local PartEmmit1 = IT("ParticleEmitter", soul)
  931. PartEmmit1.LightEmission = 1
  932. PartEmmit1.Texture = "rbxassetid://569507414"
  933. PartEmmit1.Color = ColorSequence.new(maincolor.Color)
  934. PartEmmit1.Rate = 250
  935. PartEmmit1.Lifetime = NumberRange.new(1.6)
  936. PartEmmit1.Size = NumberSequence.new({
  937.     NumberSequenceKeypoint.new(0, 1, 0),
  938.     NumberSequenceKeypoint.new(1, 0, 0)
  939. })
  940. PartEmmit1.Transparency = NumberSequence.new({
  941.     NumberSequenceKeypoint.new(0, 0, 0),
  942.     NumberSequenceKeypoint.new(1, 1, 0)
  943. })
  944. PartEmmit1.Speed = NumberRange.new(0, 0)
  945. PartEmmit1.VelocitySpread = 30000
  946. PartEmmit1.Rotation = NumberRange.new(-360, 360)
  947. PartEmmit1.RotSpeed = NumberRange.new(-360, 360)
  948. local BodPoss = IT("BodyPosition", soul)
  949. BodPoss.P = 3000
  950. BodPoss.D = 1000
  951. BodPoss.maxForce = Vector3.new(50000000000, 50000000000, 50000000000)
  952. BodPoss.position = torso.Position + Vector3.new(Mrandom(-15, 15), Mrandom(-15, 15), Mrandom(-15, 15))
  953. wait(1.6)
  954. soul.Touched:connect(function(hit)
  955.     if hit.Parent == char then
  956.     soul:Destroy()
  957.     end
  958. end)
  959. wait(1.2)
  960. while soul do
  961.     swait()
  962.     PartEmmit1.Color = ColorSequence.new(maincolor.Color)
  963.     BodPoss.Position = tors.Position
  964. end
  965. end)
  966.     soulst()
  967.     end
  968. end
  969. function FaceMouse()
  970. local   Cam = workspace.CurrentCamera
  971.     return {
  972.         CFrame.new(char.Torso.Position, Vector3.new(mouse.Hit.p.x, char.Torso.Position.y, mouse.Hit.p.z)),
  973.         Vector3.new(mouse.Hit.p.x, mouse.Hit.p.y, mouse.Hit.p.z)
  974.     }
  975. end
  976. -------------------------------------------------------
  977. --End Important Functions--
  978. -------------------------------------------------------
  979. --[[
  980.         Thanks for using Build-To-Lua by jarredbcv.
  981. ]]--
  982.  
  983. New = function(Object, Parent, Name, Data)
  984.     local Object = Instance.new(Object)
  985.     for Index, Value in pairs(Data or {}) do
  986.         Object[Index] = Value
  987.     end
  988.     Object.Parent = Parent
  989.     Object.Name = Name
  990.     return Object
  991. end
  992.    
  993. Gaunty = New("Model",char,"Gaunty",{})
  994. Handle = New("Part",Gaunty,"Handle",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1, 1.26999998, 1),CFrame = CFrame.new(-5.67319345, 3.02064276, -77.6615906, 0.999894261, 0.010924357, 0.00963267777, -0.0110270018, 0.999882579, 0.0106679145, -0.00951499958, -0.0107729975, 0.999897003),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  995. Mesh = New("BlockMesh",Handle,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  996. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.82765579, 3.62595344, -77.6579285, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  997. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(-0.161155701, 0.603512526, 0.00862884521, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  998. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-6.13765526, 3.62595367, -77.6579285, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  999. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(-0.471122265, 0.600126028, 0.00564575195, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1000. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.5176549, 3.62595415, -77.6579285, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1001. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(0.148812294, 0.606899738, 0.0116195679, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1002. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.21765471, 3.62595463, -77.6579285, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1003. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(0.448780537, 0.610177517, 0.014503479, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1004. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-6.13765526, 2.53595448, -77.6579285, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1005. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(-0.459102631, -0.489744425, -0.00598144531, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1006. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.82765627, 2.53595448, -77.6579285, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1007. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(-0.149136543, -0.486357927, -0.00299835205, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1008. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.51765537, 2.53595448, -77.6579361, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1009. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(0.160831451, -0.48297143, -1.52587891e-05, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1010. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.21765566, 2.53595424, -77.6579361, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1011. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(0.460799217, -0.479694128, 0.00286865234, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1012. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.07999992, 0.279999971, 1.06999993),CFrame = CFrame.new(-5.66865063, 3.64553881, -77.6613617, 0.999894857, 0.0109243635, 0.00963268708, -0.0110270083, 0.999883175, 0.0106679257, -0.00951500144, -0.0107729994, 0.999897599),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1013. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  1014. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),C1 = CFrame.new(-0.00235080719, 0.624869347, 0.00694274902, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1015. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.08999991, 0.0599999577, 1.07999992),CFrame = CFrame.new(-5.66490126, 3.73544312, -77.6652145, 0.999894857, 0.0109243635, 0.00963268708, -0.0110270083, 0.999883175, 0.0106679257, -0.00951500144, -0.0107729994, 0.999897599),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1016. Mesh = New("BlockMesh",NeonPart,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  1017. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),C1 = CFrame.new(0.000443935394, 0.714845657, 0.00408172607, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1018. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.08999991, 0.0599999577, 1.07999992),CFrame = CFrame.new(-5.66480446, 3.52554965, -77.65522, 0.999894857, 0.0109243635, 0.00963268708, -0.0110270083, 0.999883175, 0.0106679257, -0.00951500144, -0.0107729994, 0.999897599),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1019. Mesh = New("BlockMesh",NeonPart,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  1020. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),C1 = CFrame.new(0.00275993347, 0.504870415, 0.0118331909, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1021. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.07999992, 0.279999971, 1.06999993),CFrame = CFrame.new(-5.6686511, 2.55553746, -77.6613541, 0.999894857, 0.0109243635, 0.00963268708, -0.0110270083, 0.999883175, 0.0106679257, -0.00951500144, -0.0107729994, 0.999897599),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1022. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  1023. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),C1 = CFrame.new(0.00966835022, -0.465003252, -0.00468444824, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1024. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.08999991, 0.0599999577, 1.07999992),CFrame = CFrame.new(-5.66490126, 2.64544272, -77.6652145, 0.999894857, 0.0109243635, 0.00963268708, -0.0110270083, 0.999883175, 0.0106679257, -0.00951500144, -0.0107729994, 0.999897599),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1025. Mesh = New("BlockMesh",NeonPart,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  1026. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),C1 = CFrame.new(0.0124630928, -0.375026226, -0.00754547119, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1027. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.08999991, 0.0599999577, 1.07999992),CFrame = CFrame.new(-5.66480494, 2.43554902, -77.65522, 0.999894857, 0.0109243635, 0.00963268708, -0.0110270083, 0.999883175, 0.0106679257, -0.00951500144, -0.0107729994, 0.999897599),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1028. Mesh = New("BlockMesh",NeonPart,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  1029. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),C1 = CFrame.new(0.0147790909, -0.585001707, 0.000205993652, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1030. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.12999988, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.67265606, 3.62595463, -78.1079407, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1031. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C1 = CFrame.new(-0.0018901825, 0.61005497, -0.439842224, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1032. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.12999988, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.67265606, 3.62595558, -77.8179321, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1033. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C1 = CFrame.new(-0.00464963913, 0.606931448, -0.149864197, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1034. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.66765547, 3.62595606, -77.4879303, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1035. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C1 = CFrame.new(-0.00278997421, 0.603431463, 0.180152893, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1036. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.66765547, 3.62595654, -77.1979294, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1037. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C1 = CFrame.new(-0.00554895401, 0.600307703, 0.470123291, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1038. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.66765547, 2.53595638, -77.1979294, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1039. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C1 = CFrame.new(0.0064702034, -0.489563704, 0.458496094, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1040. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.66765547, 2.53595614, -77.4879303, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1041. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C1 = CFrame.new(0.00922966003, -0.486439705, 0.168525696, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1042. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.12999988, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.67265558, 2.53595638, -77.8179245, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1043. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C1 = CFrame.new(0.00736999512, -0.482939243, -0.161483765, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1044. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.12999988, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.67265606, 2.53595614, -78.1079254, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1045. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C1 = CFrame.new(0.0101289749, -0.479815245, -0.451454163, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1046. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765547, 3.62595677, -77.1979218, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1047. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(-0.00554943085, 0.600307941, 0.47013092, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1048. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765499, 3.62595701, -77.4879303, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1049. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(-0.00278949738, 0.603432655, 0.180152893, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1050. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765451, 3.62595749, -77.8179321, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1051. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0.000350952148, 0.606987953, -0.149810791, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1052. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765451, 3.62595749, -78.107933, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1053. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0.00311040878, 0.61011219, -0.439788818, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1054. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765499, 2.53595734, -78.107933, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1055. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0.0151295662, -0.479759216, -0.451416016, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1056. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765499, 2.5359571, -77.8179245, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1057. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0.0123701096, -0.482883692, -0.161437988, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1058. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765499, 2.5359571, -77.4879227, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1059. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0.00923013687, -0.48643899, 0.168533325, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1060. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765499, 2.53595686, -77.1979218, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1061. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0.00647068024, -0.489563227, 0.458503723, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1062. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-6.13765478, 3.62595701, -77.6579132, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1063. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(-0.471121788, 0.600129128, 0.00566101074, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1064. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.82765484, 3.62595725, -77.6579132, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1065. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(-0.161154747, 0.603516102, 0.008644104, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1066. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.51765442, 3.62595773, -77.6579132, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1067. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(0.148812771, 0.606903076, 0.0116348267, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1068. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.21765375, 3.6259582, -77.6579132, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1069. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(0.44878149, 0.610180855, 0.0145187378, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1070. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.21765327, 2.53595781, -77.6579132, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1071. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(0.460801125, -0.47969079, 0.00289154053, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1072. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.51765299, 2.53595757, -77.6579208, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1073. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(0.160833359, -0.48296833, 0, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1074. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.82765341, 2.53595734, -77.6579208, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1075. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(-0.149133682, -0.486355066, -0.00299072266, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1076. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-6.13765383, 2.53595734, -77.6579208, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1077. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(-0.4591012, -0.489741802, -0.00597381592, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1078. NeonPart = New("WedgePart",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(1.14999998, 0.640000045, 0.25000003),CFrame = CFrame.new(-5.66203499, 3.4509573, -77.7865677, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1079. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C1 = CFrame.new(0.00760126114, 0.431732178, -0.120269775, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1080. NeonPart = New("WedgePart",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(1.14999998, 0.640000045, 0.280000031),CFrame = CFrame.new(-5.66203451, 3.45095778, -77.5215683, -1.0000006, -6.18456397e-10, -9.12696123e-08, 6.18456397e-10, 1.0000006, -4.65661287e-09, 8.38190317e-08, 4.65661287e-09, -1.0000006),BottomSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1081. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),C1 = CFrame.new(0.00508022308, 0.428877592, 0.144706726, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1082. NeonPart = New("WedgePart",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(1.14999998, 0.640000045, 0.25000003),CFrame = CFrame.new(-5.66203403, 2.81095791, -77.7865601, -1.0000006, 8.81700544e-08, 3.7252903e-09, -8.69331416e-08, -1.0000006, 4.65661287e-09, -3.7252903e-09, -4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1083. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -1, -8.74227766e-08, 0, 8.74227766e-08, -1, 0, 0, 0, 1),C1 = CFrame.new(0.0146594048, -0.208191872, -0.127082825, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1084. NeonPart = New("WedgePart",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(1.14999998, 0.640000045, 0.280000031),CFrame = CFrame.new(-5.66203356, 2.8209579, -77.5215607, 1.0000006, -8.69331416e-08, 8.38190317e-08, -8.81700544e-08, -1.0000006, -4.65661287e-09, 9.12696123e-08, -4.65661287e-09, -1.0000006),BottomSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1085. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 1, -8.74227766e-08, 8.74227766e-08, -8.74227766e-08, -1, -7.64274186e-15, 8.74227766e-08, 0, -1),C1 = CFrame.new(0.0120282173, -0.201047897, 0.137992859, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1086. Wedge = New("WedgePart",Gaunty,"Wedge",{BrickColor = BrickColor.new("Black"),Size = Vector3.new(1.1099999, 0.569999993, 1.13),CFrame = CFrame.new(-5.6508193, 4.06113148, -77.6620178, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1087. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(0.0109024048, 1.04061508, 0.010887146, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1088.  
  1089. Gaunty2 = New("Model",char,"Gaunty2",{})
  1090. Handle2 = New("Part",Gaunty2,"Handle2",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1, 1.26999998, 1),CFrame = CFrame.new(-5.67319345, 3.02064276, -77.6615906, 0.999894261, 0.010924357, 0.00963267777, -0.0110270018, 0.999882579, 0.0106679145, -0.00951499958, -0.0107729975, 0.999897003),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1091. Mesh = New("BlockMesh",Handle2,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  1092. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.82765579, 3.62595367, -77.6579285, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1093. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(-0.161155701, 0.603512764, 0.00862884521, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1094. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-6.13765526, 3.62595439, -77.6579285, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1095. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(-0.471122265, 0.600126743, 0.00564575195, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1096. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.51765394, 3.6259551, -77.6579285, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1097. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(0.148813248, 0.606900692, 0.0116195679, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1098. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.21765375, 3.62595558, -77.6579285, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1099. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(0.44878149, 0.610178471, 0.014503479, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1100. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-6.13765621, 2.535954, -77.6579285, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1101. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(-0.459103584, -0.489744902, -0.00598144531, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1102. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.82765722, 2.535954, -77.6579285, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1103. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(-0.149137497, -0.486358404, -0.00299835205, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1104. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.5176549, 2.53595448, -77.6579514, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1105. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(0.160831928, -0.482971191, -3.05175781e-05, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1106. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.21765566, 2.535954, -77.6579361, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1107. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(0.460799217, -0.479694366, 0.00286865234, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1108. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.07999992, 0.279999971, 1.06999993),CFrame = CFrame.new(-5.66865063, 3.64554, -77.661377, 0.999896049, 0.0109243765, 0.00963270571, -0.0110270213, 0.999884367, 0.010667949, -0.0095150033, -0.0107730031, 0.999898791),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1109. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  1110. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 0.999895453, -0.0110270148, -0.00951500237, 0.01092437, 0.999883771, -0.0107730012, 0.0096326964, 0.0106679378, 0.999898195),C1 = CFrame.new(-0.00235033035, 0.624870777, 0.00692749023, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1111. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.08999991, 0.0599999577, 1.07999992),CFrame = CFrame.new(-5.6649003, 3.73544407, -77.6652145, 0.999896049, 0.0109243765, 0.00963270571, -0.0110270213, 0.999884367, 0.010667949, -0.0095150033, -0.0107730031, 0.999898791),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1112. Mesh = New("BlockMesh",NeonPart,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  1113. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 0.999895453, -0.0110270148, -0.00951500237, 0.01092437, 0.999883771, -0.0107730012, 0.0096326964, 0.0106679378, 0.999898195),C1 = CFrame.new(0.000444412231, 0.714846611, 0.00408172607, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1114. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.08999991, 0.0599999577, 1.07999992),CFrame = CFrame.new(-5.66480446, 3.5255506, -77.65522, 0.999896049, 0.0109243765, 0.00963270571, -0.0110270213, 0.999884367, 0.010667949, -0.0095150033, -0.0107730031, 0.999898791),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1115. Mesh = New("BlockMesh",NeonPart,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  1116. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 0.999895453, -0.0110270148, -0.00951500237, 0.01092437, 0.999883771, -0.0107730012, 0.0096326964, 0.0106679378, 0.999898195),C1 = CFrame.new(0.00275993347, 0.504871368, 0.0118331909, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1117. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.07999992, 0.279999971, 1.06999993),CFrame = CFrame.new(-5.6686511, 2.55553699, -77.6613541, 0.999896049, 0.0109243765, 0.00963270571, -0.0110270213, 0.999884367, 0.010667949, -0.0095150033, -0.0107730031, 0.999898791),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1118. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  1119. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 0.999895453, -0.0110270148, -0.00951500237, 0.01092437, 0.999883771, -0.0107730012, 0.0096326964, 0.0106679378, 0.999898195),C1 = CFrame.new(0.00966835022, -0.465003729, -0.00468444824, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1120. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.08999991, 0.0599999577, 1.07999992),CFrame = CFrame.new(-5.66490126, 2.64544272, -77.6652145, 0.999896049, 0.0109243765, 0.00963270571, -0.0110270213, 0.999884367, 0.010667949, -0.0095150033, -0.0107730031, 0.999898791),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1121. Mesh = New("BlockMesh",NeonPart,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  1122. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 0.999895453, -0.0110270148, -0.00951500237, 0.01092437, 0.999883771, -0.0107730012, 0.0096326964, 0.0106679378, 0.999898195),C1 = CFrame.new(0.0124630928, -0.375026226, -0.00754547119, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1123. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.08999991, 0.0599999577, 1.07999992),CFrame = CFrame.new(-5.66480589, 2.43554854, -77.65522, 0.999896049, 0.0109243765, 0.00963270571, -0.0110270213, 0.999884367, 0.010667949, -0.0095150033, -0.0107730031, 0.999898791),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1124. Mesh = New("BlockMesh",NeonPart,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  1125. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 0.999895453, -0.0110270148, -0.00951500237, 0.01092437, 0.999883771, -0.0107730012, 0.0096326964, 0.0106679378, 0.999898195),C1 = CFrame.new(0.0147781372, -0.585002184, 0.000205993652, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1126. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.12999988, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.67265606, 3.62595463, -78.1079407, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1127. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(-0.0018901825, 0.61005497, -0.439842224, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1128. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.12999988, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.67265511, 3.6259563, -77.8179169, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1129. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(-0.00464916229, 0.606932163, -0.149848938, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1130. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.66765451, 3.62595701, -77.4879303, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1131. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(-0.00278902054, 0.603432655, 0.180152893, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1132. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.66765547, 3.62595749, -77.1979294, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1133. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(-0.00554895401, 0.600308895, 0.470123291, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1134. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.66765547, 2.53595638, -77.1979294, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1135. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.0064702034, -0.489563704, 0.458496094, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1136. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.66765547, 2.53595614, -77.4879303, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1137. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.00922966003, -0.486439705, 0.168525696, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1138. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.12999988, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.67265558, 2.53595638, -77.8179092, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1139. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.00736999512, -0.482939243, -0.161468506, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1140. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.12999988, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.67265606, 2.53595567, -78.1079254, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1141. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.0101289749, -0.479815722, -0.451454163, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1142. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765451, 3.62595749, -77.1979218, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1143. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(-0.00554847717, 0.600308895, 0.47013092, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1144. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765404, 3.62595797, -77.4879303, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1145. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(-0.0027885437, 0.603433609, 0.180152893, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1146. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765356, 3.6259594, -77.8179321, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1147. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.000351905823, 0.606989861, -0.149810791, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1148. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765356, 3.62595844, -78.107933, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1149. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.00311136246, 0.610113144, -0.439788818, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1150. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765499, 2.53595734, -78.107933, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1151. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.0151295662, -0.479759216, -0.451416016, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1152. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765499, 2.5359571, -77.8179092, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1153. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.0123701096, -0.48288393, -0.161422729, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1154. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765499, 2.5359571, -77.4879227, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1155. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.00923013687, -0.48643899, 0.168533325, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1156. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765499, 2.53595662, -77.1979218, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1157. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.00647068024, -0.489563465, 0.458503723, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1158. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-6.13765478, 3.62595797, -77.6579132, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1159. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(-0.471121788, 0.600130081, 0.00566101074, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1160. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.82765484, 3.6259582, -77.6579132, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1161. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(-0.161154747, 0.603517056, 0.008644104, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1162. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.51765347, 3.62595868, -77.6579132, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1163. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(0.148813725, 0.60690403, 0.0116348267, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1164. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.2176528, 3.62595916, -77.6579132, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1165. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(0.448782444, 0.610181808, 0.0145187378, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1166. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.21765327, 2.53595757, -77.6579132, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1167. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(0.460801601, -0.479691029, 0.00289154053, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1168. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.51765299, 2.53595757, -77.6579361, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1169. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(0.160833836, -0.48296833, -1.52587891e-05, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1170. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.82765436, 2.5359571, -77.6579208, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1171. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(-0.149134636, -0.486355305, -0.00299072266, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1172. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-6.13765478, 2.53595734, -77.6579208, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1173. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(-0.459102154, -0.489741802, -0.00597381592, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1174. NeonPart = New("WedgePart",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(1.14999998, 0.640000045, 0.25000003),CFrame = CFrame.new(-5.66203403, 3.45095801, -77.7865524, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1175. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.00760221481, 0.431732655, -0.120254517, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1176. NeonPart = New("WedgePart",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(1.14999998, 0.640000045, 0.280000031),CFrame = CFrame.new(-5.66203356, 3.45095849, -77.521553, -1.00000179, -2.26282282e-09, -9.87201929e-08, 2.28465069e-09, 1.00000179, -1.39698386e-08, 7.63684511e-08, 1.39698386e-08, -1.00000179),BottomSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1177. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -1.00000119, 1.45519152e-09, 8.00937414e-08, -1.44063961e-09, 1.00000119, 9.31322575e-09, -9.49949026e-08, -9.31322575e-09, -1.00000119),C1 = CFrame.new(0.00508117676, 0.428878307, 0.144721985, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1178. NeonPart = New("WedgePart",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(1.14999998, 0.640000045, 0.25000003),CFrame = CFrame.new(-5.66203308, 2.81095791, -77.7865601, -1.00000179, 8.98216967e-08, 1.11758709e-08, -8.52742232e-08, -1.00000179, 1.39698386e-08, -1.11758709e-08, -1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1179. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -1.00000119, -8.61036824e-08, -7.4505806e-09, 8.89922376e-08, -1.00000119, -9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.0146603584, -0.208191872, -0.127082825, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1180. NeonPart = New("WedgePart",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(1.14999998, 0.640000045, 0.280000031),CFrame = CFrame.new(-5.6620326, 2.82095814, -77.5215454, 1.00000179, -8.52887752e-08, 7.63684511e-08, -8.98362487e-08, -1.00000179, -1.39698386e-08, 9.87201929e-08, -1.39698386e-08, -1.00000179),BottomSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1181. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -8.89995135e-08, 9.49949026e-08, -8.61109584e-08, -1.00000119, -9.31322575e-09, 8.00937414e-08, -9.31322575e-09, -1.00000119),C1 = CFrame.new(0.012029171, -0.201047897, 0.138008118, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1182. Wedge = New("WedgePart",Gaunty2,"Wedge",{BrickColor = BrickColor.new("Black"),Size = Vector3.new(1.1099999, 0.569999993, 1.13),CFrame = CFrame.new(-5.6508193, 4.06113243, -77.6620178, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  1183. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(0.0109024048, 1.04061604, 0.010887146, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  1184.  
  1185.  
  1186. NewInstance = function(instance,parent,properties)
  1187.     local inst = Instance.new(instance,parent)
  1188.     if(properties)then
  1189.         for i,v in next, properties do
  1190.             pcall(function() inst[i] = v end)
  1191.         end
  1192.     end
  1193.     return inst;
  1194. end
  1195.  
  1196. local HW = NewInstance('Motor', char, {Part0 = ra, Part1 = Handle, C0 = CF(0,-.51,0)})
  1197. local HW2 = NewInstance('Motor', char, {Part0 = la, Part1 = Handle2, C0 = CF(0,-.51,0) * angles(Rad(0),Rad(180),Rad(0))})
  1198.  
  1199. for _,v in next, Gaunty:children() do
  1200.     v.CanCollide = false
  1201. end
  1202. for _,v in next, Gaunty2:children() do
  1203.     v.CanCollide = false
  1204. end
  1205. local all, last = {}, nil
  1206. ArmourParts = {}
  1207. NeonParts = {}
  1208. function scan(p)
  1209.   for _, v in pairs(p:GetChildren()) do
  1210.     if v:IsA("BasePart") then
  1211.       if v.BrickColor == BrickColor.new("Black") then
  1212.         table.insert(ArmourParts, v)
  1213.       end
  1214.       if v.BrickColor == BrickColor.new("Institutional white") then
  1215.         table.insert(NeonParts, v)
  1216.       end
  1217.       if last then
  1218.         local w = Instance.new("Weld")
  1219.         w.Part0, w.Part1 = last, v
  1220.         w.C0 = v.CFrame:toObjectSpace(last.CFrame):inverse()
  1221.         w.Parent = last
  1222.       end
  1223.       table.insert(all, v)
  1224.       last = v
  1225.     end
  1226.     scan(v)
  1227.   end
  1228. end
  1229. scan(Gaunty)
  1230. local all2, last2 = {}, nil
  1231. ArmourParts2 = {}
  1232. NeonParts2 = {}
  1233. function scan2(p)
  1234.   for _, v in pairs(p:GetChildren()) do
  1235.     if v:IsA("BasePart") then
  1236.       if v.BrickColor == BrickColor.new("Black") then
  1237.         table.insert(ArmourParts2, v)
  1238.       end
  1239.       if v.BrickColor == BrickColor.new("Institutional white") then
  1240.         table.insert(NeonParts2, v)
  1241.       end
  1242.       if last2 then
  1243.         local w = Instance.new("Weld")
  1244.         w.Part0, w.Part1 = last2, v
  1245.         w.C0 = v.CFrame:toObjectSpace(last2.CFrame):inverse()
  1246.         w.Parent = last2
  1247.       end
  1248.       table.insert(all2, v)
  1249.       last2 = v
  1250.     end
  1251.     scan2(v)
  1252.   end
  1253. end
  1254. scan2(Gaunty2)
  1255. for i, v in pairs(ArmourParts) do
  1256.      v.BrickColor = BrickC("Black")
  1257.         end
  1258. for i, v in pairs(NeonParts) do
  1259.      v.BrickColor = BrickC("Really red")
  1260.         end
  1261. for i, v in pairs(ArmourParts2) do
  1262.      v.BrickColor = BrickC("Black")
  1263.         end
  1264. for i, v in pairs(NeonParts2) do
  1265.      v.BrickColor = BrickC("Really red")
  1266.         end
  1267. maincolor = BrickC("Really red")
  1268. -------------------------------------------------------
  1269. --Start Music Option--
  1270. -------------------------------------------------------
  1271. local Music = Instance.new("Sound",char)
  1272. Music.Volume = 10
  1273. Music.TimePosition = 40
  1274. Music.SoundId = "rbxassetid://460874877"
  1275. Music.Looped = true
  1276. Music.Pitch = 1 --Pitcher
  1277. Music.Name = "Music"
  1278. Music:Play()
  1279. -------------------------------------------------------
  1280. --End Music Option--
  1281. -------------------------------------------------------
  1282. local naeeym2 = Instance.new("BillboardGui",char)
  1283. naeeym2.AlwaysOnTop = true
  1284. naeeym2.Size = UDim2.new(5,35,2,35)
  1285. naeeym2.StudsOffset = Vector3.new(0,2,0)
  1286. naeeym2.Adornee = hed
  1287. naeeym2.Name = "Name"
  1288.  
  1289. local tecks2 = Instance.new("TextLabel",naeeym2)
  1290. tecks2.BackgroundTransparency = 1
  1291. tecks2.TextScaled = true
  1292. tecks2.BorderSizePixel = 0
  1293. tecks2.Text = "u wot"
  1294. tecks2.Font = "Garamond"
  1295. tecks2.TextSize = 30
  1296. tecks2.TextStrokeTransparency = 0
  1297. tecks2.TextColor3 = Color3.new(0,0,0)
  1298. tecks2.TextStrokeColor3 = Color3.new(0, 0, 0)
  1299. tecks2.Size = UDim2.new(1,0,0.5,0)
  1300. tecks2.Parent = naeeym2
  1301.  
  1302. function chatfunc(text, color)
  1303.     local chat = coroutine.wrap(function()
  1304.         if char:FindFirstChild("TalkingBillBoard") ~= nil then
  1305.             char:FindFirstChild("TalkingBillBoard"):destroy()
  1306.         end
  1307.         local naeeym2 = Instance.new("BillboardGui", char)
  1308.         naeeym2.Size = UDim2.new(0, 100, 0, 40)
  1309.         naeeym2.StudsOffset = Vector3.new(0, 5, 0)
  1310.         naeeym2.Adornee = hed
  1311.         naeeym2.Name = "TalkingBillBoard"
  1312.         local tecks2 = Instance.new("TextLabel", naeeym2)
  1313.         tecks2.BackgroundTransparency = 1
  1314.         tecks2.BorderSizePixel = 0
  1315.         tecks2.Text = ""
  1316.         tecks2.Font = "SciFi"
  1317.         tecks2.TextSize = 30
  1318.         tecks2.TextStrokeTransparency = 0
  1319.         tecks2.TextColor3 = color
  1320.         tecks2.TextStrokeColor3 = Color3.new(0, 0, 0)
  1321.         tecks2.Size = UDim2.new(1, 0, 0.5, 0)
  1322.         local tecks3 = Instance.new("TextLabel", naeeym2)
  1323.         tecks3.BackgroundTransparency = 1
  1324.         tecks3.BorderSizePixel = 0
  1325.         tecks3.Text = ""
  1326.         tecks3.Font = "SciFi"
  1327.         tecks3.TextSize = 30
  1328.         tecks3.TextStrokeTransparency = 0
  1329.         tecks3.TextColor3 = Color3.new(0, 0, 0)
  1330.         tecks3.TextStrokeColor3 = color
  1331.         tecks3.Size = UDim2.new(1, 0, 0.5, 0)
  1332.         coroutine.resume(coroutine.create(function()
  1333.             while true do
  1334.                 swait(1)
  1335.                     tecks2.TextColor3 = BrickColor.random().Color
  1336.                     tecks3.TextStrokeColor3 = BrickColor.random().Color
  1337.                 tecks2.Position = UDim2.new(0, math.random(-5, 5), 0, math.random(-5, 5))
  1338.                 tecks3.Position = UDim2.new(0, math.random(-5, 5), 0, math.random(-5, 5))
  1339.                 tecks2.Rotation = math.random(-5, 5)
  1340.                 tecks3.Rotation = math.random(-5, 5)
  1341.             end
  1342.         end))
  1343.         for i = 1, string.len(text) do
  1344.             CFuncs.Sound.Create("rbxassetid://274118116", char, 0.25, 0.115)
  1345.             tecks2.Text = string.sub(text, 1, i)
  1346.             tecks3.Text = string.sub(text, 1, i)
  1347.             swait(1)
  1348.         end
  1349.         wait(1)
  1350.         local randomrot = math.random(1, 2)
  1351.         if randomrot == 1 then
  1352.             for i = 1, 50 do
  1353.                 swait()
  1354.                 tecks2.Rotation = tecks2.Rotation - 0.75
  1355.                 tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency + 0.04
  1356.                 tecks2.TextTransparency = tecks2.TextTransparency + 0.04
  1357.                 tecks3.Rotation = tecks2.Rotation + 0.75
  1358.                 tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency + 0.04
  1359.                 tecks3.TextTransparency = tecks2.TextTransparency + 0.04
  1360.             end
  1361.         elseif randomrot == 2 then
  1362.             for i = 1, 50 do
  1363.                 swait()
  1364.                 tecks2.Rotation = tecks2.Rotation + 0.75
  1365.                 tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency + 0.04
  1366.                 tecks2.TextTransparency = tecks2.TextTransparency + 0.04
  1367.                 tecks3.Rotation = tecks2.Rotation - 0.75
  1368.                 tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency + 0.04
  1369.                 tecks3.TextTransparency = tecks2.TextTransparency + 0.04
  1370.             end
  1371.         end
  1372.         naeeym2:Destroy()
  1373.     end)
  1374.     chat()
  1375. end
  1376. -------------------------------------------------------
  1377. --Start Attacks N Stuff--
  1378. -------------------------------------------------------
  1379. local sine=0
  1380. function HitboxFunction(Pose, lifetime, siz1, siz2, siz3, Radie, Min, Max, kb, atype)
  1381.   local Hitboxpart = Instance.new("Part", EffectModel)
  1382.   RemoveOutlines(Hitboxpart)
  1383.   Hitboxpart.Size = Vector3.new(siz1, siz2, siz3)
  1384.   Hitboxpart.CanCollide = false
  1385.   Hitboxpart.Transparency = 1
  1386.   Hitboxpart.Anchored = true
  1387.   Hitboxpart.CFrame = Pose
  1388.   game:GetService("Debris"):AddItem(Hitboxpart, lifetime)
  1389.   MagniDamage(Hitboxpart, Radie, Min, Max, kb, atype)
  1390. end
  1391. wait2 = false
  1392. combo = 1
  1393.  
  1394. local letters = {"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"}
  1395.  
  1396. function assing_value(number)
  1397.     if number <= 26 then
  1398.         number = letters[number]
  1399.         else
  1400.         number = number - 27
  1401.     end
  1402.     return number
  1403. end
  1404.  
  1405. function create_id(length)
  1406.     local id = ""
  1407.     if length > 0 then
  1408.         for i = 1, length do
  1409.             local number = math.random(1, 36)
  1410.             id = id .. assing_value(number)
  1411.         end
  1412.     end
  1413.     return id
  1414. end
  1415.  
  1416.  
  1417. local name = create_id(20)
  1418.  
  1419. bool = Instance.new("BoolValue", game.Players.LocalPlayer.Character.Torso)
  1420. bool.Name = name
  1421.  
  1422. mouse.Button1Down:connect(function(key)
  1423.   if attack == false and game.Players.LocalPlayer.Character.Torso:FindFirstChild(name) then
  1424.     attack = true
  1425.     hum.WalkSpeed = 3.01
  1426.     if combo == 1 and wait2 == false then
  1427.       wait2 = true
  1428.         for i = 0, 1.2, 0.1 do
  1429.         swait()
  1430.         rootj.C0 = clerp(rootj.C0, RootCF * CFrame.new(0, -0.5, 0) * angles(math.rad(-5), math.rad(0), math.rad(-65)), 0.3)
  1431.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(math.rad(-10), math.rad(0), math.rad(-65)), 0.1)
  1432.         RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0.8) * angles(math.rad(90), math.rad(0), math.rad(20)), 0.1)
  1433.         LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-25), math.rad(0), math.rad(40)), 0.3)
  1434.         RH.C0 = clerp(RH.C0, CFrame.new(1, -1, -0.2) * RHCF * angles(math.rad(-2.5), math.rad(0), math.rad(-0)), 0.3)
  1435.         LH.C0 = clerp(LH.C0, CFrame.new(-1, -1, 0) * LHCF * angles(math.rad(-2.5), math.rad(15), math.rad(-20)), 0.3)
  1436.           end
  1437.         CreateSound("138097048", ra, 3, .8)
  1438.         HitboxFunction(ra.CFrame, 0.01, 1, 1, 1, 7, 6, 9, 3, "Normal")
  1439.       for i = 0, 1.2, 0.1 do
  1440.         swait()
  1441.         rootj.C0 = clerp(rootj.C0, RootCF * CFrame.new(0, -0.5, 0) * angles(math.rad(5), math.rad(0), math.rad(55)), 0.3)
  1442.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(math.rad(10), math.rad(0), math.rad(0)), 0.1)
  1443.         RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, -0.8) * angles(math.rad(95), math.rad(0), math.rad(40)), 0.1)
  1444.         LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-25), math.rad(0), math.rad(-10)), 0.3)
  1445.         RH.C0 = clerp(RH.C0, CFrame.new(1, -1, 0) * RHCF * angles(math.rad(-2.5), math.rad(-25), math.rad(-17)), 0.3)
  1446.         LH.C0 = clerp(LH.C0, CFrame.new(-1, -1, 0) * LHCF * angles(math.rad(-2.5), math.rad(-0), math.rad(0)), 0.3)
  1447.       end
  1448.       combo = 2
  1449.     end
  1450.     if combo == 2 and wait2 == false then
  1451.       wait2 = true
  1452.    for i = 0, 1.2, 0.1 do
  1453.         swait()
  1454.         rootj.C0 = clerp(rootj.C0, RootCF * CFrame.new(0, -0.5, 0) * angles(math.rad(-5), math.rad(0), math.rad(65)), 0.3)
  1455.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(math.rad(-10), math.rad(0), math.rad(65)), 0.1)
  1456.         RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0.8) * angles(math.rad(-25), math.rad(0), math.rad(40)), 0.1)
  1457.         LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(90), math.rad(0), math.rad(20)), 0.3)
  1458.         RH.C0 = clerp(RH.C0, CFrame.new(1, -1, -0.2) * RHCF * angles(math.rad(-2.5), math.rad(0), math.rad(-0)), 0.3)
  1459.         LH.C0 = clerp(LH.C0, CFrame.new(-1, -1, 0) * LHCF * angles(math.rad(-2.5), math.rad(15), math.rad(-20)), 0.3)
  1460.           end
  1461.         CreateSound("138097048", ra, 3, .8)
  1462.         HitboxFunction(ra.CFrame, 0.01, 1, 1, 1, 7, 6, 9, 3, "Normal")
  1463.       for i = 0, 1.2, 0.1 do
  1464.         swait()
  1465.         rootj.C0 = clerp(rootj.C0, RootCF * CFrame.new(0, -0.5, 0) * angles(math.rad(5), math.rad(0), math.rad(-55)), 0.3)
  1466.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(math.rad(10), math.rad(0), math.rad(0)), 0.1)
  1467.         RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-25), math.rad(0), math.rad(10)), 0.1)
  1468.         LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, -0.8) * angles(math.rad(95), math.rad(0), math.rad(-40)), 0.3)
  1469.         RH.C0 = clerp(RH.C0, CFrame.new(1, -1, 0) * RHCF * angles(math.rad(-2.5), math.rad(-25), math.rad(-17)), 0.3)
  1470.         LH.C0 = clerp(LH.C0, CFrame.new(-1, -1, 0) * LHCF * angles(math.rad(-2.5), math.rad(-0), math.rad(0)), 0.3)
  1471.       end
  1472.       combo = 3
  1473.     end
  1474.    if combo == 3 and wait2 == false then
  1475.     wait2 = true
  1476.     for i = 0, 1.2, 0.1 do
  1477.         swait()
  1478.         rootj.C0 = clerp(rootj.C0, RootCF * CFrame.new(0, -0.5, 0) * angles(math.rad(-5), math.rad(0), math.rad(-35)), 0.3)
  1479.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.1)
  1480.         RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0.8) * angles(math.rad(90), math.rad(0), math.rad(20)), 0.1)
  1481.         LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-25), math.rad(0), math.rad(-10)), 0.3)
  1482.         RH.C0 = clerp(RH.C0, CFrame.new(1, -1, -0.2) * RHCF * angles(math.rad(-2.5), math.rad(0), math.rad(-0)), 0.3)
  1483.         LH.C0 = clerp(LH.C0, CFrame.new(-1, -1, 0) * LHCF * angles(math.rad(-2.5), math.rad(15), math.rad(-20)), 0.3)
  1484.       end
  1485.     CreateSound("138097048", ra, 3, .8)
  1486.       HitboxFunction(ra.CFrame, 0.01, 1, 1, 1, 7, 24, 36, 3, "Normal")
  1487.       for i = 0, 1.2, 0.1 do
  1488.         swait()
  1489.         rootj.C0 = clerp(rootj.C0, RootCF * CFrame.new(0, -0.5, 0) * angles(math.rad(5), math.rad(0), math.rad(35)), 0.3)
  1490.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(math.rad(10), math.rad(0), math.rad(0)), 0.1)
  1491.         RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, -0.8) * angles(math.rad(96), math.rad(0), math.rad(10)), 0.1)
  1492.         LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-25), math.rad(0), math.rad(-10)), 0.3)
  1493.         RH.C0 = clerp(RH.C0, CFrame.new(1, -1, 0) * RHCF * angles(math.rad(-2.5), math.rad(-25), math.rad(-0)), 0.3)
  1494.         LH.C0 = clerp(LH.C0, CFrame.new(-1, -1, 0) * LHCF * angles(math.rad(-2.5), math.rad(-0), math.rad(0)), 0.3)
  1495.       end
  1496.         Effects.Sphere.Create(maincolor, ra.CFrame * CFrame.new(0,-2,0) , 85, 85, 85, 1.1, 1.1, 1.1, 0.02)
  1497.         Effects.Ring.Create(maincolor, ra.CFrame * CFrame.new(0,-2,0) , 2, 2, 2, 1.1, 1.1, 1.1, 0.03)
  1498.         for i = 0, 2 do
  1499.             SphereAura(2, 0.2, "Add", ra.CFrame * CFrame.Angles(math.rad(-90 + math.random(-20, 20)), math.rad(math.random(-20, 20)), math.rad(math.random(-20, 20))), 0.5, 0.5, 5, -0.005, maincolor, 0)
  1500.             end
  1501.         coroutine.resume(coroutine.create(function()
  1502.         for i = 0,1.8,0.1 do
  1503.             swait()
  1504.             hum.CameraOffset = Vector3.new(Mrandom(-1,1),0,Mrandom(-1,1))
  1505.         end
  1506.         for i = 0,1.8,0.1 do
  1507.             swait()
  1508.         hum.CameraOffset = Vector3.new(0,0,0)
  1509.         end
  1510.       end))
  1511.         HitboxFunction(ra.CFrame, 0.01, 1, 1, 1, 7, 24, 36, 3, "Normal")
  1512.     for i = 0, 1.2, 0.1 do
  1513.         swait()
  1514.         rootj.C0 = clerp(rootj.C0, RootCF * CFrame.new(0, -0.5, 0) * angles(math.rad(5), math.rad(0), math.rad(-35)), 0.3)
  1515.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(math.rad(10), math.rad(0), math.rad(0)), 0.1)
  1516.         RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, -0.8) * angles(math.rad(25), math.rad(0), math.rad(10)), 0.1)
  1517.         LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-25), math.rad(0), math.rad(-10)), 0.3)
  1518.         RH.C0 = clerp(RH.C0, CFrame.new(1, -1, 0) * RHCF * angles(math.rad(-2.5), math.rad(-25), math.rad(-0)), 0.3)
  1519.         LH.C0 = clerp(LH.C0, CFrame.new(-1, -1, 0) * LHCF * angles(math.rad(-2.5), math.rad(-0), math.rad(0)), 0.3)
  1520.       end
  1521.       combo = 4
  1522.     end
  1523.     if combo == 4 and wait2 == false then
  1524.     for i = 0,1.2,0.1 do
  1525.         swait()
  1526.         rootj.C0 = clerp(rootj.C0, RootCF * CF(0, 0, -0.1 + 0.1 * Cos(sine / 20)) * angles(Rad(-20), Rad(0), Rad(0)), 0.15)
  1527.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(Rad(-20 - 2.5 * Sin(sine / 20)), Rad(0), Rad(0)), 0.3)
  1528.         RH.C0 = clerp(RH.C0, CF(1, -0.9 - 0.1 * Cos(sine / 20), 0.025 * Cos(sine / 20)) * RHCF * angles(Rad(-4.5), Rad(0), Rad(-20)), 0.15)
  1529.         LH.C0 = clerp(LH.C0, CF(-1, -0.9 - 0.1 * Cos(sine / 20), -.4 + 0.025 * Cos(sine / 20)) * LHCF * angles(Rad(-6.5), Rad(5 * Cos(sine / 20)), Rad(25)), 0.15)
  1530.         RW.C0 = clerp(RW.C0, CF(1.5, 0.5 + 0.05 * Sin(sine / 20), 0.025 * Cos(sine / 20)) * angles(Rad(200), Rad(0), Rad(25 - 2.5 * Sin(sine / 20))), 0.1)
  1531.         LW.C0 = clerp(LW.C0, CF(-1.5, 0.5 + 0.05 * Sin(sine / 20), 0.025 * Cos(sine / 20)) * angles(Rad(200), Rad(0), Rad(-25 + 2.5 * Sin(sine / 20))), 0.1)
  1532.     end
  1533. SphereAura(6, 0.3, "Add", root.CFrame * CF(0,-2,0) * angles(Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360))), 0.5, 0.5, 5, -0.005, maincolor, 0)
  1534.         SphereAura(6, 0.3, "Add", root.CFrame * CF(0,-2,0) * angles(Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360))), 0.5, 0.5, 5, -0.005, maincolor, 0)
  1535.         Effects.Sphere.Create(maincolor, root.CFrame * CFrame.new(0,-2,0) , 85, 85, 85, 15.1, 15.1, 15.1, 0.01)
  1536.     CreateSound("331666100", char, 10, 1)
  1537.         for i, v in pairs(FindNearestHead(tors.CFrame.p, 14.5)) do
  1538.         if v:FindFirstChild("Head") then
  1539.             SoulSteal(v)
  1540.             Eviscerate(v)
  1541.         end
  1542.     end
  1543.     coroutine.resume(coroutine.create(function()
  1544.         for i = 0,1.8,0.1 do
  1545.             swait()
  1546.             hum.CameraOffset = Vector3.new(Mrandom(-1,1),0,Mrandom(-1,1))
  1547.         end
  1548.         for i = 0,1.8,0.1 do
  1549.             swait()
  1550.         hum.CameraOffset = Vector3.new(0,0,0)
  1551.         end
  1552.       end))
  1553.     for i = 1,4.7,0.1 do
  1554.     rootj.C0 = clerp(rootj.C0, RootCF * CF(0, 0, -1.4 + 0.1 * Cos(sine / 20)) * angles(Rad(45), Rad(0), Rad(0)), 0.15)
  1555.     tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(Rad(35), Rad(0), Rad(0)), 0.3)
  1556.     RH.C0 = clerp(RH.C0, CF(1, .4 - 0.1 * Cos(sine / 20), -.6 + 0.025 * Cos(sine / 20)) * RHCF * angles(Rad(-5), Rad(0), Rad(45)), 0.15)
  1557.     LH.C0 = clerp(LH.C0, CF(-1, -0.6 - 0.1 * Cos(sine / 20), 0.025 * Cos(sine / 20)) * LHCF * angles(Rad(-5), Rad(0), Rad(-0)), 0.15)
  1558.     RW.C0 = clerp(RW.C0, CF(1.2, 0.1 + 0.05 * Sin(sine / 30), -.4 + 0.025 * Cos(sine / 20)) * angles(Rad(65), Rad(0), Rad(-34)), 0.1)
  1559.     LW.C0 = clerp(LW.C0, CF(-1.2, 0.1 + 0.05 * Sin(sine / 30), -.4 + 0.025 * Cos(sine / 20)) * angles(Rad(65), Rad(0), Rad(34)), 0.1)
  1560.     end
  1561.       wait(.6)
  1562.     combo = 1
  1563.     end
  1564.     hum.WalkSpeed = 16
  1565.     wait2 = false
  1566.     attack = false
  1567.     end
  1568. end)
  1569. function Destruction()
  1570.     attack = true
  1571.     local Ring1 = Instance.new("Part", char)
  1572.     Ring1.Anchored = true
  1573.     Ring1.BrickColor = maincolor
  1574.     Ring1.CanCollide = false
  1575.     Ring1.FormFactor = 3
  1576.     Ring1.Name = "Ring"
  1577.     Ring1.Material = "Neon"
  1578.     Ring1.Size = Vector3.new(1, 0.05, 1)
  1579.     Ring1.Transparency = 1
  1580.     Ring1.TopSurface = 0
  1581.     Ring1.BottomSurface = 0
  1582.     local Ring1Mesh = Instance.new("SpecialMesh", Ring1)
  1583.     Ring1Mesh.MeshType = "Brick"
  1584.     Ring1Mesh.Name = "SizeMesh"
  1585.     Ring1Mesh.Scale = Vector3.new(0, 1, 0)
  1586.     local InnerRing1 = Ring1:Clone()
  1587.     InnerRing1.Parent = char
  1588.     InnerRing1.Transparency = 0
  1589.     InnerRing1.BrickColor = BrickColor.new("New Yeller")
  1590.     InnerRing1.Size = Vector3.new(1, 1, 1)
  1591.     local InnerRing1Mesh = InnerRing1.SizeMesh
  1592.     InnerRing1Mesh.Scale = Vector3.new(0, 0, 0)
  1593.     InnerRing1Mesh.MeshType = "Sphere"
  1594.     Ring1:Destroy()
  1595.     for i = 0, 5, 0.1 do
  1596.         swait()
  1597.         SphereAura(7, 0.12, "Add", ra.CFrame * CF(0,-2,0) * angles(Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360))), 0.5, 0.5, 5, -0.005, maincolor, 0)
  1598.         SphereAura(7, 0.12, "Add", ra.CFrame * CF(0,-2,0) * angles(Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360))), 0.5, 0.5, 5, -0.005, BrickC("Institutional white"), 0)
  1599.         rootj.C0 = clerp(rootj.C0, RootCF * CF(0, 0, -0.1 + 0.1 * Cos(sine / 20)) * angles(Rad(5), Rad(0), Rad(0)), 0.15)
  1600.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(Rad(-4.5 * Sin(sine / 30)), Rad(0), Rad(0)), 0.3)
  1601.         RH.C0 = clerp(RH.C0, CF(1, -0.9 - 0.1 * Cos(sine / 20), 0.025 * Cos(sine / 20)) * RHCF * angles(Rad(-12.5 + 3 * Sin(sine / 20)), Rad(0), Rad(0 + 2.5 * Sin(sine / 20))), 0.15)
  1602.         LH.C0 = clerp(LH.C0, CF(-1, -0.9 - 0.1 * Cos(sine / 20), 0.025 * Cos(sine / 20)) * LHCF * angles(Rad(-2.5 + 3 * Sin(sine / 20)), Rad(0), Rad(0 + 2.5 * Sin(sine / 20))), 0.15)
  1603.         RW.C0 = clerp(RW.C0, CF(1.1, 0.5 + 0.05 * Sin(sine / 30), 0.025 * Cos(sine / 20)) * angles(Rad(90), Rad(0), Rad(-25)), 0.1)
  1604.         LW.C0 = clerp(LW.C0, CF(-1.1, 0.5 + 0.05 * Sin(sine / 30), 0.025 * Cos(sine / 20)) * angles(Rad(90), Rad(0), Rad(25)), 0.1)
  1605.         root.CFrame = FaceMouse()[1]
  1606.     end
  1607.     InnerRing1.Transparency = 1
  1608.     InnerRing1.CFrame = root.CFrame * CF(0, 0.5, 0) + root.CFrame.lookVector * 5
  1609.     CreateSound("294188875", char, 2.3, 1)
  1610.     local a = IT("Part", char)
  1611.     a.Name = "Direction"
  1612.     a.Anchored = true
  1613.     a.BrickColor = maincolor
  1614.     a.Material = "Neon"
  1615.     a.Transparency = 0
  1616.     a.Shape = "Cylinder"
  1617.     a.CanCollide = false
  1618.     local a2 = IT("Part", char)
  1619.     a2.Name = "Direction"
  1620.     a2.Anchored = true
  1621.     a2.BrickColor = maincolor
  1622.     a2.Color = maincolor.Color
  1623.     a2.Material = "Neon"
  1624.     a2.Transparency = 0.5
  1625.     a2.Shape = "Cylinder"
  1626.     a2.CanCollide = false
  1627.     local ba = IT("Part", char)
  1628.     ba.Name = "HitDirect"
  1629.     ba.Anchored = true
  1630.     ba.BrickColor = maincolor
  1631.     ba.Material = "Neon"
  1632.     ba.Transparency = 1
  1633.     ba.CanCollide = false
  1634.     local ray = Ray.new(InnerRing1.CFrame.p, (mouse.Hit.p - InnerRing1.CFrame.p).unit * 1000)
  1635.     local ignore = char
  1636.     local hit, position, normal = workspace:FindPartOnRay(ray, ignore)
  1637.     a.BottomSurface = 10
  1638.     a.TopSurface = 10
  1639.     a2.BottomSurface = 10
  1640.     a2.TopSurface = 10
  1641.     local distance = (InnerRing1.CFrame.p - position).magnitude
  1642.     a.Size = Vector3.new(distance, 1, 1)
  1643.     a.CFrame = CF(InnerRing1.CFrame.p, position) * CF(0, 0, -distance / 2)
  1644.     a2.Size = Vector3.new(distance, 1, 1)
  1645.     a2.CFrame = CF(InnerRing1.CFrame.p, position) * CF(0, 0, -distance / 2)
  1646.     ba.CFrame = CF(InnerRing1.CFrame.p, position) * CF(0, 0, -distance)
  1647.     a.CFrame = a.CFrame * angles(0, Rad(90), 0)
  1648.     a2.CFrame = a2.CFrame * angles(0, Rad(90), 0)
  1649.     game:GetService("Debris"):AddItem(a, 20)
  1650.     game:GetService("Debris"):AddItem(a2, 20)
  1651.     game:GetService("Debris"):AddItem(ba, 20)
  1652.     local msh = Instance.new("SpecialMesh", a)
  1653.     msh.MeshType = "Sphere"
  1654.     msh.Scale = Vector3.new(1, 25, 25)
  1655.     local msh2 = Instance.new("SpecialMesh", a2)
  1656.     msh2.MeshType = "Sphere"
  1657.     msh2.Scale = Vector3.new(1, 30, 30)
  1658.     for i = 0, 10, 0.1 do
  1659.         swait()
  1660.         root.CFrame = FaceMouse()[1]
  1661.         hum.CameraOffset = Vector3.new(Mrandom(-1,1),0,Mrandom(-1,1))
  1662.         a2.Color = maincolor.Color
  1663.         InnerRing1.CFrame = root.CFrame * CF(0, 0.5, 0) + root.CFrame.lookVector * 4
  1664.         ray = Ray.new(InnerRing1.CFrame.p, (mouse.Hit.p - InnerRing1.CFrame.p).unit * 1000)
  1665.         hit, position, normal = workspace:FindPartOnRay(ray, ignore)
  1666.         distance = (InnerRing1.CFrame.p - position).magnitude
  1667.         a.Size = Vector3.new(distance, 1, 1)
  1668.         a.CFrame = CF(InnerRing1.CFrame.p, position) * CF(0, 0, -distance / 2)
  1669.         a2.Size = Vector3.new(distance, 1, 1)
  1670.         a2.CFrame = CF(InnerRing1.CFrame.p, position) * CF(0, 0, -distance / 2)
  1671.         ba.CFrame = CF(InnerRing1.CFrame.p, position) * CF(0, 0, -distance)
  1672.         a.CFrame = a.CFrame * angles(0, Rad(90), 0)
  1673.         a2.CFrame = a2.CFrame * angles(0, Rad(90), 0)
  1674.         msh.Scale = msh.Scale - Vector3.new(0, 0.25, 0.25)
  1675.         msh2.Scale = msh2.Scale - Vector3.new(0, 0.3, 0.3)
  1676.         SphereAura(5, 0.15, "Add", ba.CFrame * angles(Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360))), 15, 15, 25, -0.15, maincolor, 0)
  1677.         SphereAura(5, 0.15, "Add", ba.CFrame * angles(Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360))), 15, 15, 25, -0.15, maincolor, 0)
  1678.         for i, v in pairs(FindNearestHead(ba.CFrame.p, 14.5)) do
  1679.         if v:FindFirstChild("Head") then
  1680.             Eviscerate(v)
  1681.             SoulSteal(v)
  1682.         end
  1683.     end
  1684.     end
  1685.     a:Destroy()
  1686.     a2:Destroy()
  1687.     ba:Destroy()
  1688.     InnerRing1:Destroy()
  1689.     attack = false
  1690.     hum.CameraOffset = Vector3.new(0,0,0)
  1691. end
  1692. function BURN_IN_HELL()
  1693.     attack = true
  1694.     chatfunc("BURN....", BrickColor.random().Color)
  1695.     for i = 0,5.2,0.1 do
  1696.         swait()
  1697.         rootj.C0 = clerp(rootj.C0, RootCF * CF(0, 0, -0.1 + 0.1 * Cos(sine / 20)) * angles(Rad(-20), Rad(0), Rad(0)), 0.15)
  1698.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(Rad(-20 - 2.5 * Sin(sine / 20)), Rad(0), Rad(0)), 0.3)
  1699.         RH.C0 = clerp(RH.C0, CF(1, -0.9 - 0.1 * Cos(sine / 20), 0.025 * Cos(sine / 20)) * RHCF * angles(Rad(-4.5), Rad(0), Rad(-20)), 0.15)
  1700.         LH.C0 = clerp(LH.C0, CF(-1, -0.3 - 0.1 * Cos(sine / 20), -.4 + 0.025 * Cos(sine / 20)) * LHCF * angles(Rad(-6.5), Rad(5 * Cos(sine / 20)), Rad(25)), 0.15)
  1701.         RW.C0 = clerp(RW.C0, CF(1.5, 0.5 + 0.05 * Sin(sine / 20), 0.025 * Cos(sine / 20)) * angles(Rad(135), Rad(0), Rad(-45 - 2.5 * Sin(sine / 20))), 0.1)
  1702.         LW.C0 = clerp(LW.C0, CF(-1.5, 0.5 + 0.05 * Sin(sine / 20), 0.025 * Cos(sine / 20)) * angles(Rad(135), Rad(0), Rad(45 + 2.5 * Sin(sine / 20))), 0.1)
  1703.     end
  1704.     chatfunc("IN....", BrickColor.random().Color)
  1705.     wait(2)
  1706.     CreateSound("331666100", char, 10, 1)
  1707.     Effects.Sphere.Create(BrickColor.Random(), root.CFrame * CF(0, -1, 0), 2, 2, 2, 10.6, 10.6, 10.6, 0.05)
  1708.     Effects.Sphere.Create(BrickColor.Random(), root.CFrame * CF(0, -1, 0), 2, 2, 2, 10.6, 10.6, 10.6, 0.05)
  1709.     Effects.Sphere.Create(BrickColor.Random(), root.CFrame * CF(0, -1, 0), 2, 2, 2, 10.6, 10.6, 10.6, 0.05)
  1710.     Effects.Sphere.Create(BrickColor.Random(), root.CFrame * CF(0, -1, 0), 2, 2, 2, 10.6, 10.6, 10.6, 0.05)
  1711.     Effects.Sphere.Create(BrickColor.Random(), root.CFrame * CF(0, -1, 0), 2, 2, 2, 10.6, 35.6, 10.6, 0.05)
  1712.     Effects.Sphere.Create(BrickColor.Random(), root.CFrame * CF(0, -3, 0), 2, 2, 2, 150.6, .4, 150.6, 0.05)
  1713.     chatfunc("HELL!!!!!", BrickColor.random().Color)
  1714.     for i, v in pairs(FindNearestHead(tors.CFrame.p, 52.5)) do
  1715.         if v:FindFirstChild("Head") then
  1716.             Eviscerate(v)
  1717.             SoulSteal(v)
  1718.         end
  1719.     end
  1720.     coroutine.resume(coroutine.create(function()
  1721.         for i = 0,2.8,0.1 do
  1722.             swait()
  1723.             hum.CameraOffset = Vector3.new(Mrandom(-3,3),Mrandom(-3,3),Mrandom(-3,3))
  1724.         end
  1725.         for i = 0,1.8,0.1 do
  1726.             swait()
  1727.         hum.CameraOffset = Vector3.new(0,0,0)
  1728.         end
  1729.     end))
  1730.     for i = 0,3.7,0.1 do
  1731.         SphereAura(2.5, 0.75, "Add", root.CFrame * CFrame.new(math.random(-52.5, 52.5), -5, math.random(-52.5, 52.5)) * CFrame.Angles(math.rad(90 + math.rad(math.random(-45, 45))), math.rad(math.random(-45, 45)), math.rad(math.random(-45, 45))), 2.5, 2.5, 25, -0.025, BrickColor.random(), 0)
  1732.         SphereAura(2.5, 0.75, "Add", root.CFrame * CFrame.new(math.random(-52.5, 52.5), -5, math.random(-52.5, 52.5)) * CFrame.Angles(math.rad(90 + math.rad(math.random(-45, 45))), math.rad(math.random(-45, 45)), math.rad(math.random(-45, 45))), 2.5, 2.5, 25, -0.025, BrickColor.random(), 0)
  1733.         rootj.C0 = clerp(rootj.C0, RootCF * CF(0, 0, -0.1 + 0.1 * Cos(sine / 20)) * angles(Rad(20), Rad(0), Rad(0)), 0.15)
  1734.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(Rad(20 - 2.5 * Sin(sine / 20)), Rad(0), Rad(0)), 0.3)
  1735.         RH.C0 = clerp(RH.C0, CF(1, -0.9 - 0.1 * Cos(sine / 20), 0.025 * Cos(sine / 20)) * RHCF * angles(Rad(-4.5), Rad(0), Rad(20)), 0.15)
  1736.         LH.C0 = clerp(LH.C0, CF(-1, -0.9 - 0.1 * Cos(sine / 20), -.4 + 0.025 * Cos(sine / 20)) * LHCF * angles(Rad(-6.5), Rad(5 * Cos(sine / 20)), Rad(-25)), 0.15)
  1737.         RW.C0 = clerp(RW.C0, CF(1.5, 0.5 + 0.05 * Sin(sine / 20), 0.025 * Cos(sine / 20)) * angles(Rad(-40), Rad(0), Rad(25 - 2.5 * Sin(sine / 20))), 0.1)
  1738.         LW.C0 = clerp(LW.C0, CF(-1.5, 0.5 + 0.05 * Sin(sine / 20), 0.025 * Cos(sine / 20)) * angles(Rad(-40), Rad(0), Rad(-25 + 2.5 * Sin(sine / 20))), 0.1)
  1739.     end
  1740.     wait(.6)
  1741.     CreateSound("907332997", hed, 10, 1)
  1742.     attack = false
  1743. end
  1744. -------------------------------------------------------
  1745. --End Attacks N Stuff--
  1746. -------------------------------------------------------
  1747. mouse.KeyDown:connect(function(key)
  1748.     if attack == false then
  1749.         if key == 'f' and game.Players.LocalPlayer.Character.Torso:FindFirstChild(name) then
  1750.         Destruction()
  1751.         elseif key == 'r' and game.Players.LocalPlayer.Character.Torso:FindFirstChild(name) then
  1752.             BURN_IN_HELL()
  1753.         elseif key == 't' and game.Players.LocalPlayer.Character.Torso:FindFirstChild(name) then
  1754.             chatfunc("HM, HM, HAHAHAHAHAHA", BrickColor.random().Color)
  1755.             CreateSound("300208779", hed, 10, 1)
  1756.         elseif key == '1' and game.Players.LocalPlayer.Character.Torso:FindFirstChild(name) then
  1757.         if pressed1 == false and game.Players.LocalPlayer.Character.Torso:FindFirstChild(name) then
  1758.         tecks2.Text = "there's no one around to help"
  1759.         char:FindFirstChild("Music"):Pause()
  1760.         char:FindFirstChild("Music").SoundId = "rbxassetid://1280408510"
  1761.         char:FindFirstChild("Music"):Play()
  1762.         wait()
  1763.         pressed1 = true
  1764.         pressed2 = false
  1765.         end
  1766.         elseif key == '2' and game.Players.LocalPlayer.Character.Torso:FindFirstChild(name) then
  1767.         if pressed2 == false and game.Players.LocalPlayer.Character.Torso:FindFirstChild(name) then
  1768.         tecks2.Text = "murder"
  1769.         char:FindFirstChild("Music"):Pause()
  1770.         char:FindFirstChild("Music").SoundId = "rbxassetid://407749940"
  1771.         char:FindFirstChild("Music"):Play()
  1772.         wait()
  1773.         pressed2 = true
  1774.         end
  1775. elseif key == '3' then
  1776. if pressed1 == true and game.Players.LocalPlayer.Character.Torso:FindFirstChild(name) then
  1777. tecks2.Text = "u wot"
  1778. char:FindFirstChild("Music"):Pause()
  1779. char:FindFirstChild("Music").SoundId = "rbxassetid://460874877"
  1780. char:FindFirstChild("Music"):Play()
  1781. wait()
  1782. pressed1 = false
  1783. pressed2 = true
  1784. end
  1785. end
  1786. end
  1787. end)
  1788.  
  1789.  
  1790.  
  1791.  
  1792.  
  1793.  
  1794. -------------------------------------------------------
  1795. --Start Animations--
  1796. -------------------------------------------------------
  1797. local equipped = false
  1798. local idle = 0
  1799. local change = 1
  1800. local val = 0
  1801. local toim = 0
  1802. local idleanim = 0.4
  1803. hum.Animator.Parent = nil
  1804.  
  1805.  
  1806. function part(formfactor,parent,reflectance,transparency,brickcolor,name,size)
  1807. local fp=Instance.new("Part")
  1808. fp.formFactor=formfactor
  1809. fp.Parent=parent
  1810. fp.Reflectance=reflectance
  1811. fp.Transparency=transparency
  1812. fp.CanCollide=false
  1813. fp.Locked=true
  1814. fp.BrickColor=brickcolor
  1815. fp.Name=name
  1816. fp.Size=size
  1817. fp.Position=tors.Position
  1818. RemoveOutlines(fp)
  1819. fp.Material="SmoothPlastic"
  1820. fp:BreakJoints()
  1821. return fp
  1822. end
  1823.  
  1824. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  1825. local mesh=Instance.new(Mesh)
  1826. mesh.Parent=part
  1827. if Mesh=="SpecialMesh" then
  1828. mesh.MeshType=meshtype
  1829. if meshid~="nil" then
  1830. mesh.MeshId="http://www.roblox.com/asset/?id="..meshid
  1831. end
  1832. end
  1833. mesh.Offset=offset
  1834. mesh.Scale=scale
  1835. return mesh
  1836. end
  1837.  
  1838. function MagicShockTrailAlt2(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, rottype)
  1839.     local prt = part(3, char, 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  1840.     prt.Anchored = true
  1841.     table.insert(NeonParts, 1, prt)
  1842.     prt.Material = "Neon"
  1843.     prt.CFrame = cframe
  1844. local msh = mesh("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1845.     game:GetService("Debris"):AddItem(prt, 5)
  1846.     coroutine.resume(coroutine.create(function(Part, Mesh)
  1847.         local rtype = rottype
  1848.         for i = 0, 1, delay do
  1849.             swait()
  1850.             if rtype == 1 then
  1851.                 prt.CFrame = prt.CFrame * CFrame.Angles(0, 0, 0.1)
  1852.             elseif rtype == 2 then
  1853.                 prt.CFrame = prt.CFrame * CFrame.Angles(0, 0, -0.1)
  1854.             end
  1855.             prt.Transparency = i
  1856.             Mesh.Scale = Mesh.Scale + Vector3.new(x3, y3, z3)
  1857.         end
  1858.         Part.Parent = nil
  1859.         table.remove(NeonParts, 1)
  1860.     end), prt, msh)
  1861. end
  1862.  
  1863.  
  1864.  
  1865.  
  1866. coroutine.resume(coroutine.create(function()
  1867. repeat
  1868.     swait(2)
  1869.     if game.Players.LocalPlayer.Character.Torso:FindFirstChild(name) then
  1870.         for i,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  1871.             if v:IsA'Part' then
  1872.                 v.BrickColor = BrickColor.Random()
  1873.                 v.Material = Enum.Material.Neon
  1874.                
  1875.        
  1876.         end
  1877.     end
  1878.     end
  1879.    
  1880. until not game.Players.LocalPlayer.Character.Torso:FindFirstChild(name)
  1881. end))
  1882.  
  1883.  
  1884.  
  1885. for i,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  1886.     if v:IsA'Decal' or v:IsA'Shirt' or v:IsA'Pants' or v:IsA'Accessory' then
  1887.         v:Remove()
  1888.     end
  1889. end
  1890.  
  1891. coroutine.resume(coroutine.create(function()
  1892. repeat
  1893.     swait(2)
  1894. MagicShockTrailAlt2(maincolor, root.CFrame * CF(Mrandom(-15,15),-3,Mrandom(-15,15)) * angles(Rad(90 + Mrandom(-25, 25)),Rad(0),Rad(0)),1,.5,.5,-0.01,-0.01,7,0.1,Mrandom(1,2))
  1895. until not game.Players.LocalPlayer.Character.Torso:FindFirstChild(name)
  1896. end))
  1897.  
  1898.  
  1899. while true do
  1900.     swait()
  1901. for i, v in pairs(NeonParts) do
  1902.      v.BrickColor = BrickColor.Random()
  1903.         end
  1904. for i, v in pairs(NeonParts2) do
  1905.      v.BrickColor = BrickColor.Random()
  1906.         end
  1907. maincolor = BrickColor.Random()
  1908. tecks2.TextStrokeColor3 = maincolor.Color
  1909.     sine = sine + change
  1910.     local torvel = (root.Velocity * Vector3.new(1, 0, 1)).magnitude
  1911.     local velderp = root.Velocity.y
  1912.     hitfloor, posfloor = rayCast(root.Position, CFrame.new(root.Position, root.Position - Vector3.new(0, 1, 0)).lookVector, 4, char)
  1913.     if equipped == true or equipped == false then
  1914.         if attack == false then
  1915.             idle = idle + 1
  1916.         else
  1917.             idle = 0
  1918.         end
  1919.         if 1 < root.Velocity.y and hitfloor == nil then
  1920.             Anim = "Jump"
  1921.             if attack == false then
  1922.                 rootj.C0 = clerp(rootj.C0, RootCF * angles(math.min(math.max(root.Velocity.Y/100,-Rad(65)),Rad(65)),0,0),0.3)
  1923.                 tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(Rad(-10), Rad(0), Rad(0)), 0.3)
  1924.                 RW.C0 = clerp(RW.C0, CF(1.5, 0.5, 0) * angles(math.min(math.max(root.Velocity.Y/100,-Rad(65)),Rad(65)),0,Rad(15)),0.3)
  1925.                 LW.C0 = clerp(LW.C0, CF(-1.5, 0.5, 0) * angles(math.min(math.max(root.Velocity.Y/100,-Rad(65)),Rad(65)),0,Rad(-15)),0.3)
  1926.                 LH.C0=clerp(LH.C0, CF(-1,-.4-0.1 * Cos(sine / 20), -.6) * LHCF * angles(Rad(-5), Rad(-0), Rad(20)), 0.15)
  1927.                 RH.C0=clerp(RH.C0, CF(1,-1-0.1 * Cos(sine / 20), -.3) * angles(Rad(0), Rad(90), Rad(0)), .3)
  1928.             end
  1929.         elseif -1 > root.Velocity.y and hitfloor == nil then
  1930.             Anim = "Fall"
  1931.             if attack == false then
  1932.                 rootj.C0 = clerp(rootj.C0, RootCF * angles(math.min(math.max(root.Velocity.Y/100,-Rad(65)),Rad(65)),0,0),0.3)
  1933.                 tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(Rad(10), Rad(0), Rad(0)), 0.3)
  1934.                 RW.C0 = clerp(RW.C0, CF(1.5, 0.5, 0) * angles(math.min(math.max(root.Velocity.Y/100,-Rad(65)),Rad(65)),0,Rad(30)),0.3)
  1935.                 LW.C0 = clerp(LW.C0, CF(-1.5, 0.5, 0) * angles(math.min(math.max(root.Velocity.Y/100,-Rad(65)),Rad(65)),0,Rad(-30)),0.3)
  1936.                 LH.C0 = clerp(LH.C0, CF(-1,-.4-0.1 * Cos(sine / 20), -.6) * LHCF * angles(Rad(-5), Rad(-0), Rad(20)), 0.15)
  1937.                 RH.C0 = clerp(RH.C0, CF(1,-1-0.1 * Cos(sine / 20), -.3) * angles(Rad(0), Rad(90), Rad(0)), .3)
  1938.             end
  1939.         elseif torvel < 1 and hitfloor ~= nil then
  1940.             Anim = "Idle"
  1941.             change = 1.9
  1942.             if attack == false then
  1943.                 rootj.C0 = clerp(rootj.C0, RootCF * CF(0, 0, -0.1 + 0.1 * Cos(sine / 20)) * angles(Rad(30), Rad(0), Rad(0)), 0.15)
  1944.                 tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(Rad(35 - 2.5 * Sin(sine / 20)), Rad(-5 * Cos(sine / 0.465)), Rad(-5 * Cos(sine / 0.465))), 0.3)
  1945.                 RH.C0 = clerp(RH.C0, CF(1, -1 - 0.1 * Cos(sine / 20), 0.025 * Cos(sine / 20)) * RHCF * angles(Rad(-7.5), Rad(0), Rad(30)), 0.15)
  1946.                 LH.C0 = clerp(LH.C0, CF(-1, -1 - 0.1 * Cos(sine / 20), 0.025 * Cos(sine / 20)) * LHCF * angles(Rad(-7.5), Rad(0), Rad(-30)), 0.15)
  1947.                 RW.C0 = clerp(RW.C0, CF(1.5, 0.5 + 0.05 * Sin(sine / 20), 0.025 * Cos(sine / 20)) * angles(Rad(35 - 5 * Cos(sine / 0.465)), Rad(-5 * Cos(sine / 0.465)), Rad(15 + 7 * Sin(sine / 25))), 0.1)
  1948.                 LW.C0 = clerp(LW.C0, CF(-1.5, 0.5 + 0.05 * Sin(sine / 20), 0.025 * Cos(sine / 20)) * angles(Rad(35 - 5 * Cos(sine / 0.465)), Rad(-5 * Cos(sine / 0.465)), Rad(-15 - 7 * Sin(sine / 25))), 0.1)
  1949.             end
  1950.         elseif tors.Velocity.magnitude < 50 and hitfloor ~= nil then
  1951.             Anim = "Walk"
  1952.             change = 1
  1953.             if attack == false then
  1954.                 rootj.C0 = clerp(rootj.C0, RootCF * CF(0, 0, -0.175 + 0.025 * Cos(sine / 3.5) + -Sin(sine / 3.5) / 7) * angles(Rad(15 - 2.5 * Cos(sine / 3.5)), Rad(0) - root.RotVelocity.Y / 75, Rad(4 * Cos(sine / 7))), 0.15)
  1955.                 tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(Rad(13 - 2.5 * Sin(sine / 7)), Rad(-5 * Cos(sine / 0.465)), Rad(-5 * Cos(sine / 0.465))), 0.3)
  1956.                 RH.C0 = clerp(RH.C0, CF(1, -0.925 - 0.5 * Cos(sine / 7) / 2, 0.5 * Cos(sine / 7) / 2) * angles(Rad(-15 - 5 * Cos(sine / 7)) - rl.RotVelocity.Y / 75 + -Sin(sine / 7) / 2.5, Rad(90 - 0.1 * Cos(sine / 7)), Rad(0)) * angles(Rad(0 + 0.1 * Cos(sine / 7)), Rad(0), Rad(15)), 0.3)
  1957.                 LH.C0 = clerp(LH.C0, CF(-1, -0.925 + 0.5 * Cos(sine / 7) / 2, -0.5 * Cos(sine / 7) / 2) * angles(Rad(-15 + 5 * Cos(sine / 7)) + ll.RotVelocity.Y / 75 + Sin(sine / 7) / 2.5, Rad(-90 - 0.1 * Cos(sine / 7)), Rad(0)) * angles(Rad(0 - 0.1 * Cos(sine / 7)), Rad(0), Rad(-15)), 0.3)
  1958.                 RW.C0 = clerp(RW.C0, CF(1.5, 0.5 + 0.05 * Sin(sine / 7), 0.025 * Cos(sine / 7)) * angles(Rad(65)  * Cos(sine / 7) , Rad(0), Rad(10 + 7 * Sin(sine / 7)) - ra.RotVelocity.Y / 75), 0.1)
  1959.                 LW.C0 = clerp(LW.C0, CF(-1.5, 0.5 + 0.05 * Sin(sine / 7), 0.025 * Cos(sine / 7)) * angles(Rad(-65)  * Cos(sine / 7) , Rad(0), Rad(-10 - 7 * Sin(sine / 7)) + la.RotVelocity.Y / 75), 0.1)
  1960.             end
  1961.         end
  1962.     end
  1963.     if 0 < #Effects then
  1964.         for e = 1, #Effects do
  1965.             if Effects[e] ~= nil then
  1966.                 local Thing = Effects[e]
  1967.                 if Thing ~= nil then
  1968.                     local Part = Thing[1]
  1969.                     local Mode = Thing[2]
  1970.                     local Delay = Thing[3]
  1971.                     local IncX = Thing[4]
  1972.                     local IncY = Thing[5]
  1973.                     local IncZ = Thing[6]
  1974.                     if 1 >= Thing[1].Transparency then
  1975.                         if Thing[2] == "Block1" then
  1976.                             Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1977.                             local Mesh = Thing[1].Mesh
  1978.                             Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1979.                             Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1980.                         elseif Thing[2] == "Block2" then
  1981.                             Thing[1].CFrame = Thing[1].CFrame + Vector3.new(0, 0, 0)
  1982.                             local Mesh = Thing[7]
  1983.                             Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1984.                             Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1985.                         elseif Thing[2] == "Block3" then
  1986.                             Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)) + Vector3.new(0, 0.15, 0)
  1987.                             local Mesh = Thing[7]
  1988.                             Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1989.                             Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1990.                         elseif Thing[2] == "Cylinder" then
  1991.                             local Mesh = Thing[1].Mesh
  1992.                             Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1993.                             Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1994.                         elseif Thing[2] == "Blood" then
  1995.                             local Mesh = Thing[7]
  1996.                             Thing[1].CFrame = Thing[1].CFrame * Vector3.new(0, 0.5, 0)
  1997.                             Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1998.                             Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1999.                         elseif Thing[2] == "Elec" then
  2000.                             local Mesh = Thing[1].Mesh
  2001.                             Mesh.Scale = Mesh.Scale + Vector3.new(Thing[7], Thing[8], Thing[9])
  2002.                             Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2003.                         elseif Thing[2] == "Disappear" then
  2004.                             Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2005.                         elseif Thing[2] == "Shatter" then
  2006.                             Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2007.                             Thing[4] = Thing[4] * CFrame.new(0, Thing[7], 0)
  2008.                             Thing[1].CFrame = Thing[4] * CFrame.fromEulerAnglesXYZ(Thing[6], 0, 0)
  2009.                             Thing[6] = Thing[6] + Thing[5]
  2010.                         end
  2011.                     else
  2012.                         Part.Parent = nil
  2013.                         table.remove(Effects, e)
  2014.                     end
  2015.                 end
  2016.             end
  2017.         end
  2018.     end
  2019. end
  2020. -------------------------------------------------------
  2021. --End Animations And Script--
  2022. ------------------------------------------------------------------------------
  2023. --[[ Organization : Insanity ]]--
  2024. --[[ Name : Ender (Thou who collects the souls of innocents) ]]--
  2025. --[[ Creator / Captain : DATA RESTRICTED ]]--
  2026. -------------------------------------------------------
  2027. --A script By makhail07
  2028.  
  2029. --Discord Creterisk#2958
  2030.  
  2031. --This script is a fucking mistake have fun skids
  2032. -------------------------------------------------------
  2033.  
  2034. local FavIDs = {
  2035.     340106355, --Nefl Crystals
  2036.     927529620, --Dimension
  2037.     876981900, --Fantasy
  2038.     398987889, --Ordinary Days
  2039.     1117396305, --Oh wait, it's you.
  2040.     885996042, --Action Winter Journey
  2041.     919231299, --Sprawling Idiot Effigy
  2042.     743466274, --Good Day Sunshine
  2043.     727411183, --Knife Fight
  2044.     1402748531, --The Earth Is Counting On You!
  2045.     595230126 --Robot Language
  2046.     }
  2047.  
  2048.  
  2049.  
  2050. --The reality of my life isn't real but a Universe -makhail07
  2051. wait()
  2052. local plr = game:service'Players'.LocalPlayer
  2053. print('Local User is '..plr.Name)
  2054. local char = plr.Character
  2055. local hum = char.Humanoid
  2056. local ra = char["Right Arm"]
  2057. local la= char["Left Arm"]
  2058. local rl= char["Right Leg"]
  2059. local ll = char["Left Leg"]
  2060. local hed = char.Head
  2061. local root = char.HumanoidRootPart
  2062. local rootj = root.RootJoint
  2063. local tors = char.Torso
  2064. local mouse = plr:GetMouse()
  2065. local RootCF = CFrame.fromEulerAnglesXYZ(-1.57, 0, 3.14)
  2066. local RHCF = CFrame.fromEulerAnglesXYZ(0, 1.6, 0)
  2067. local LHCF = CFrame.fromEulerAnglesXYZ(0, -1.6, 0)
  2068. pressed = false
  2069. -------------------------------------------------------
  2070. --Start Good Stuff--
  2071. -------------------------------------------------------
  2072. CF = CFrame.new
  2073. angles = CFrame.Angles
  2074. attack = false
  2075. Euler = CFrame.fromEulerAnglesXYZ
  2076. Rad = math.rad
  2077. IT = Instance.new
  2078. BrickC = BrickColor.new
  2079. Cos = math.cos
  2080. Acos = math.acos
  2081. Sin = math.sin
  2082. Asin = math.asin
  2083. Abs = math.abs
  2084. Mrandom = math.random
  2085. Floor = math.floor
  2086. -------------------------------------------------------
  2087. --End Good Stuff--
  2088. -------------------------------------------------------
  2089. necko = CF(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  2090. RSH, LSH = nil, nil
  2091. RW = Instance.new("Weld")
  2092. LW = Instance.new("Weld")
  2093. RH = tors["Right Hip"]
  2094. LH = tors["Left Hip"]
  2095. RSH = tors["Right Shoulder"]
  2096. LSH = tors["Left Shoulder"]
  2097. RSH.Parent = nil
  2098. LSH.Parent = nil
  2099. RW.Name = "RW"
  2100. RW.Part0 = tors
  2101. RW.C0 = CF(1.5, 0.5, 0)
  2102. RW.C1 = CF(0, 0.5, 0)
  2103. RW.Part1 = ra
  2104. RW.Parent = tors
  2105. LW.Name = "LW"
  2106. LW.Part0 = tors
  2107. LW.C0 = CF(-1.5, 0.5, 0)
  2108. LW.C1 = CF(0, 0.5, 0)
  2109. LW.Part1 = la
  2110. LW.Parent = tors
  2111. Effects = {}
  2112.  
  2113. -------------------------------------------------------
  2114. --Start HeartBeat--
  2115. -------------------------------------------------------
  2116. ArtificialHB = Instance.new("BindableEvent", script)
  2117. ArtificialHB.Name = "Heartbeat"
  2118. script:WaitForChild("Heartbeat")
  2119.  
  2120. frame = 1 / 60
  2121. tf = 0
  2122. allowframeloss = false
  2123. tossremainder = false
  2124.  
  2125.  
  2126. lastframe = tick()
  2127. script.Heartbeat:Fire()
  2128.  
  2129.  
  2130. game:GetService("RunService").Heartbeat:connect(function(s, p)
  2131.     tf = tf + s
  2132.     if tf >= frame then
  2133.         if allowframeloss then
  2134.             script.Heartbeat:Fire()
  2135.             lastframe = tick()
  2136.         else
  2137.             for i = 1, math.floor(tf / frame) do
  2138.                 script.Heartbeat:Fire()
  2139.             end
  2140.             lastframe = tick()
  2141.         end
  2142.         if tossremainder then
  2143.             tf = 0
  2144.         else
  2145.             tf = tf - frame * math.floor(tf / frame)
  2146.         end
  2147.     end
  2148. end)
  2149. -------------------------------------------------------
  2150. --End HeartBeat--
  2151. -------------------------------------------------------
  2152.  
  2153. -------------------------------------------------------
  2154. --Start Important Functions--
  2155. -------------------------------------------------------
  2156. function swait(num)
  2157.     if num == 0 or num == nil then
  2158.         game:service("RunService").Stepped:wait(0)
  2159.     else
  2160.         for i = 0, num do
  2161.             game:service("RunService").Stepped:wait(0)
  2162.         end
  2163.     end
  2164. end
  2165. function thread(f)
  2166.     coroutine.resume(coroutine.create(f))
  2167. end
  2168. function clerp(a, b, t)
  2169.     local qa = {
  2170.         QuaternionFromCFrame(a)
  2171.     }
  2172.     local qb = {
  2173.         QuaternionFromCFrame(b)
  2174.     }
  2175.     local ax, ay, az = a.x, a.y, a.z
  2176.     local bx, by, bz = b.x, b.y, b.z
  2177.     local _t = 1 - t
  2178.     return QuaternionToCFrame(_t * ax + t * bx, _t * ay + t * by, _t * az + t * bz, QuaternionSlerp(qa, qb, t))
  2179. end
  2180. function QuaternionFromCFrame(cf)
  2181.     local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  2182.     local trace = m00 + m11 + m22
  2183.     if trace > 0 then
  2184.         local s = math.sqrt(1 + trace)
  2185.         local recip = 0.5 / s
  2186.         return (m21 - m12) * recip, (m02 - m20) * recip, (m10 - m01) * recip, s * 0.5
  2187.     else
  2188.         local i = 0
  2189.         if m00 < m11 then
  2190.             i = 1
  2191.         end
  2192.         if m22 > (i == 0 and m00 or m11) then
  2193.             i = 2
  2194.         end
  2195.         if i == 0 then
  2196.             local s = math.sqrt(m00 - m11 - m22 + 1)
  2197.             local recip = 0.5 / s
  2198.             return 0.5 * s, (m10 + m01) * recip, (m20 + m02) * recip, (m21 - m12) * recip
  2199.         elseif i == 1 then
  2200.             local s = math.sqrt(m11 - m22 - m00 + 1)
  2201.             local recip = 0.5 / s
  2202.             return (m01 + m10) * recip, 0.5 * s, (m21 + m12) * recip, (m02 - m20) * recip
  2203.         elseif i == 2 then
  2204.             local s = math.sqrt(m22 - m00 - m11 + 1)
  2205.             local recip = 0.5 / s
  2206.             return (m02 + m20) * recip, (m12 + m21) * recip, 0.5 * s, (m10 - m01) * recip
  2207.         end
  2208.     end
  2209. end
  2210. function QuaternionToCFrame(px, py, pz, x, y, z, w)
  2211.     local xs, ys, zs = x + x, y + y, z + z
  2212.     local wx, wy, wz = w * xs, w * ys, w * zs
  2213.     local xx = x * xs
  2214.     local xy = x * ys
  2215.     local xz = x * zs
  2216.     local yy = y * ys
  2217.     local yz = y * zs
  2218.     local zz = z * zs
  2219.     return CFrame.new(px, py, pz, 1 - (yy + zz), xy - wz, xz + wy, xy + wz, 1 - (xx + zz), yz - wx, xz - wy, yz + wx, 1 - (xx + yy))
  2220. end
  2221. function QuaternionSlerp(a, b, t)
  2222.     local cosTheta = a[1] * b[1] + a[2] * b[2] + a[3] * b[3] + a[4] * b[4]
  2223.     local startInterp, finishInterp
  2224.     if cosTheta >= 1.0E-4 then
  2225.         if 1 - cosTheta > 1.0E-4 then
  2226.             local theta = math.acos(cosTheta)
  2227.             local invSinTheta = 1 / Sin(theta)
  2228.             startInterp = Sin((1 - t) * theta) * invSinTheta
  2229.             finishInterp = Sin(t * theta) * invSinTheta
  2230.         else
  2231.             startInterp = 1 - t
  2232.             finishInterp = t
  2233.         end
  2234.     elseif 1 + cosTheta > 1.0E-4 then
  2235.         local theta = math.acos(-cosTheta)
  2236.         local invSinTheta = 1 / Sin(theta)
  2237.         startInterp = Sin((t - 1) * theta) * invSinTheta
  2238.         finishInterp = Sin(t * theta) * invSinTheta
  2239.     else
  2240.         startInterp = t - 1
  2241.         finishInterp = t
  2242.     end
  2243.     return a[1] * startInterp + b[1] * finishInterp, a[2] * startInterp + b[2] * finishInterp, a[3] * startInterp + b[3] * finishInterp, a[4] * startInterp + b[4] * finishInterp
  2244. end
  2245. function rayCast(Position, Direction, Range, Ignore)
  2246.     return game:service("Workspace"):FindPartOnRay(Ray.new(Position, Direction.unit * (Range or 999.999)), Ignore)
  2247. end
  2248. local RbxUtility = LoadLibrary("RbxUtility")
  2249. local Create = RbxUtility.Create
  2250.  
  2251. -------------------------------------------------------
  2252. --Start Damage Function--
  2253. -------------------------------------------------------
  2254. function Damage(Part, hit, minim, maxim, knockback, Type, Property, Delay, HitSound, HitPitch)
  2255.     if hit.Parent == nil then
  2256.         return
  2257.     end
  2258.     local h = hit.Parent:FindFirstChildOfClass("Humanoid")
  2259.     for _, v in pairs(hit.Parent:children()) do
  2260.         if v:IsA("Humanoid") then
  2261.             h = v
  2262.         end
  2263.     end
  2264.          if h ~= nil and hit.Parent.Name ~= char.Name and hit.Parent:FindFirstChild("UpperTorso") ~= nil then
  2265.    
  2266.          hit.Parent:FindFirstChild("Head"):BreakJoints()
  2267.          end
  2268.  
  2269.     if h ~= nil and hit.Parent.Name ~= char.Name and hit.Parent:FindFirstChild("Torso") ~= nil then
  2270.         if hit.Parent:findFirstChild("DebounceHit") ~= nil then
  2271.             if hit.Parent.DebounceHit.Value == true then
  2272.                 return
  2273.             end
  2274.         end
  2275.          if insta == true then
  2276.          hit.Parent:FindFirstChild("Head"):BreakJoints()
  2277.          end
  2278.         local c = Create("ObjectValue"){
  2279.             Name = "creator",
  2280.             Value = game:service("Players").LocalPlayer,
  2281.             Parent = h,
  2282.         }
  2283.         game:GetService("Debris"):AddItem(c, .5)
  2284.         if HitSound ~= nil and HitPitch ~= nil then
  2285.             CFuncs.Sound.Create(HitSound, hit, 1, HitPitch)
  2286.         end
  2287.         local Damage = math.random(minim, maxim)
  2288.         local blocked = false
  2289.         local block = hit.Parent:findFirstChild("Block")
  2290.         if block ~= nil then
  2291.             if block.className == "IntValue" then
  2292.                 if block.Value > 0 then
  2293.                     blocked = true
  2294.                     block.Value = block.Value - 1
  2295.                     print(block.Value)
  2296.                 end
  2297.             end
  2298.         end
  2299.         if blocked == false then
  2300.             h.Health = h.Health - Damage
  2301.             ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, tors.BrickColor.Color)
  2302.         else
  2303.             h.Health = h.Health - (Damage / 2)
  2304.             ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, tors.BrickColor.Color)
  2305.         end
  2306.         if Type == "Knockdown" then
  2307.             local hum = hit.Parent.Humanoid
  2308.             hum.PlatformStand = true
  2309.             coroutine.resume(coroutine.create(function(HHumanoid)
  2310.                 swait(1)
  2311.                 HHumanoid.PlatformStand = false
  2312.             end), hum)
  2313.             local angle = (hit.Position - (Property.Position + Vector3.new(0, 0, 0))).unit
  2314.             local bodvol = Create("BodyVelocity"){
  2315.                 velocity = angle * knockback,
  2316.                 P = 5000,
  2317.                 maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  2318.                 Parent = hit,
  2319.             }
  2320.             local rl = Create("BodyAngularVelocity"){
  2321.                 P = 3000,
  2322.                 maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000,
  2323.                 angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)),
  2324.                 Parent = hit,
  2325.             }
  2326.             game:GetService("Debris"):AddItem(bodvol, .5)
  2327.             game:GetService("Debris"):AddItem(rl, .5)
  2328.         elseif Type == "Normal" then
  2329.             local vp = Create("BodyVelocity"){
  2330.                 P = 500,
  2331.                 maxForce = Vector3.new(math.huge, 0, math.huge),
  2332.                 velocity = Property.CFrame.lookVector * knockback + Property.Velocity / 1.05,
  2333.             }
  2334.             if knockback > 0 then
  2335.                 vp.Parent = hit.Parent.Torso
  2336.             end
  2337.             game:GetService("Debris"):AddItem(vp, .5)
  2338.         elseif Type == "Up" then
  2339.             local bodyVelocity = Create("BodyVelocity"){
  2340.                 velocity = Vector3.new(0, 20, 0),
  2341.                 P = 5000,
  2342.                 maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  2343.                 Parent = hit,
  2344.             }
  2345.             game:GetService("Debris"):AddItem(bodyVelocity, .5)
  2346.         elseif Type == "DarkUp" then
  2347.             coroutine.resume(coroutine.create(function()
  2348.                 for i = 0, 1, 0.1 do
  2349.                     swait()
  2350.                     Effects.Block.Create(BrickColor.new("Black"), hit.Parent.Torso.CFrame, 5, 5, 5, 1, 1, 1, .08, 1)
  2351.                 end
  2352.             end))
  2353.             local bodyVelocity = Create("BodyVelocity"){
  2354.                 velocity = Vector3.new(0, 20, 0),
  2355.                 P = 5000,
  2356.                 maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  2357.                 Parent = hit,
  2358.             }
  2359.             game:GetService("Debris"):AddItem(bodyVelocity, 1)
  2360.         elseif Type == "Snare" then
  2361.             local bp = Create("BodyPosition"){
  2362.                 P = 2000,
  2363.                 D = 100,
  2364.                 maxForce = Vector3.new(math.huge, math.huge, math.huge),
  2365.                 position = hit.Parent.Torso.Position,
  2366.                 Parent = hit.Parent.Torso,
  2367.             }
  2368.             game:GetService("Debris"):AddItem(bp, 1)
  2369.         elseif Type == "Freeze" then
  2370.             local BodPos = Create("BodyPosition"){
  2371.                 P = 50000,
  2372.                 D = 1000,
  2373.                 maxForce = Vector3.new(math.huge, math.huge, math.huge),
  2374.                 position = hit.Parent.Torso.Position,
  2375.                 Parent = hit.Parent.Torso,
  2376.             }
  2377.             local BodGy = Create("BodyGyro") {
  2378.                 maxTorque = Vector3.new(4e+005, 4e+005, 4e+005) * math.huge ,
  2379.                 P = 20e+003,
  2380.                 Parent = hit.Parent.Torso,
  2381.                 cframe = hit.Parent.Torso.CFrame,
  2382.             }
  2383.             hit.Parent.Torso.Anchored = true
  2384.             coroutine.resume(coroutine.create(function(Part)
  2385.                 swait(1.5)
  2386.                 Part.Anchored = false
  2387.             end), hit.Parent.Torso)
  2388.             game:GetService("Debris"):AddItem(BodPos, 3)
  2389.             game:GetService("Debris"):AddItem(BodGy, 3)
  2390.         end
  2391.         local debounce = Create("BoolValue"){
  2392.             Name = "DebounceHit",
  2393.             Parent = hit.Parent,
  2394.             Value = true,
  2395.         }
  2396.         game:GetService("Debris"):AddItem(debounce, Delay)
  2397.         c = Create("ObjectValue"){
  2398.             Name = "creator",
  2399.             Value = Player,
  2400.             Parent = h,
  2401.         }
  2402.         game:GetService("Debris"):AddItem(c, .5)
  2403.     end
  2404. end
  2405. -------------------------------------------------------
  2406. --End Damage Function--
  2407. -------------------------------------------------------
  2408.  
  2409. -------------------------------------------------------
  2410. --Start Damage Function Customization--
  2411. -------------------------------------------------------
  2412. function ShowDamage(Pos, Text, Time, Color)
  2413.     local Rate = (1 / 30)
  2414.     local Pos = (Pos or Vector3.new(0, 0, 0))
  2415.     local Text = (Text or "")
  2416.     local Time = (Time or 2)
  2417.     local Color = (Color or Color3.new(1, 0, 1))
  2418.     local EffectPart = CFuncs.Part.Create(workspace, "SmoothPlastic", 0, 1, BrickColor.new(Color), "Effect", Vector3.new(0, 0, 0))
  2419.     EffectPart.Anchored = true
  2420.     local BillboardGui = Create("BillboardGui"){
  2421.         Size = UDim2.new(3, 0, 3, 0),
  2422.         Adornee = EffectPart,
  2423.         Parent = EffectPart,
  2424.     }
  2425.     local TextLabel = Create("TextLabel"){
  2426.         BackgroundTransparency = 1,
  2427.         Size = UDim2.new(1, 0, 1, 0),
  2428.         Text = Text,
  2429.         Font = "Bodoni",
  2430.         TextColor3 = Color,
  2431.         TextScaled = true,
  2432.         TextStrokeColor3 = Color3.fromRGB(0,0,0),
  2433.         Parent = BillboardGui,
  2434.     }
  2435.     game.Debris:AddItem(EffectPart, (Time))
  2436.     EffectPart.Parent = game:GetService("Workspace")
  2437.     delay(0, function()
  2438.         local Frames = (Time / Rate)
  2439.         for Frame = 1, Frames do
  2440.             wait(Rate)
  2441.             local Percent = (Frame / Frames)
  2442.             EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  2443.             TextLabel.TextTransparency = Percent
  2444.         end
  2445.         if EffectPart and EffectPart.Parent then
  2446.             EffectPart:Destroy()
  2447.         end
  2448.     end)
  2449. end
  2450. -------------------------------------------------------
  2451. --End Damage Function Customization--
  2452. -------------------------------------------------------
  2453.  
  2454. function MagniDamage(Part, magni, mindam, maxdam, knock, Type)
  2455.   for _, c in pairs(workspace:children()) do
  2456.     local hum = c:findFirstChild("Humanoid")
  2457.     if hum ~= nil then
  2458.       local head = c:findFirstChild("Head")
  2459.       if head ~= nil then
  2460.         local targ = head.Position - Part.Position
  2461.         local mag = targ.magnitude
  2462.         if magni >= mag and c.Name ~= plr.Name then
  2463.           Damage(head, head, mindam, maxdam, knock, Type, root, 0.1, "http://www.roblox.com/asset/?id=0", 1.2)
  2464.         end
  2465.       end
  2466.     end
  2467.   end
  2468. end
  2469.  
  2470.  
  2471. CFuncs = {
  2472.     Part = {
  2473.         Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  2474.             local Part = Create("Part")({
  2475.                 Parent = Parent,
  2476.                 Reflectance = Reflectance,
  2477.                 Transparency = Transparency,
  2478.                 CanCollide = false,
  2479.                 Locked = true,
  2480.                 BrickColor = BrickColor.new(tostring(BColor)),
  2481.                 Name = Name,
  2482.                 Size = Size,
  2483.                 Material = Material
  2484.             })
  2485.             RemoveOutlines(Part)
  2486.             return Part
  2487.         end
  2488.     },
  2489.     Mesh = {
  2490.         Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  2491.             local Msh = Create(Mesh)({
  2492.                 Parent = Part,
  2493.                 Offset = OffSet,
  2494.                 Scale = Scale
  2495.             })
  2496.             if Mesh == "SpecialMesh" then
  2497.                 Msh.MeshType = MeshType
  2498.                 Msh.MeshId = MeshId
  2499.             end
  2500.             return Msh
  2501.         end
  2502.     },
  2503.     Mesh = {
  2504.         Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  2505.             local Msh = Create(Mesh)({
  2506.                 Parent = Part,
  2507.                 Offset = OffSet,
  2508.                 Scale = Scale
  2509.             })
  2510.             if Mesh == "SpecialMesh" then
  2511.                 Msh.MeshType = MeshType
  2512.                 Msh.MeshId = MeshId
  2513.             end
  2514.             return Msh
  2515.         end
  2516.     },
  2517.     Weld = {
  2518.         Create = function(Parent, Part0, Part1, C0, C1)
  2519.             local Weld = Create("Weld")({
  2520.                 Parent = Parent,
  2521.                 Part0 = Part0,
  2522.                 Part1 = Part1,
  2523.                 C0 = C0,
  2524.                 C1 = C1
  2525.             })
  2526.             return Weld
  2527.         end
  2528.     },
  2529.     Sound = {
  2530.         Create = function(id, par, vol, pit)
  2531.             coroutine.resume(coroutine.create(function()
  2532.                 local S = Create("Sound")({
  2533.                     Volume = vol,
  2534.                     Pitch = pit or 1,
  2535.                     SoundId = id,
  2536.                     Parent = par or workspace
  2537.                 })
  2538.                 wait()
  2539.                 S:play()
  2540.                 game:GetService("Debris"):AddItem(S, 6)
  2541.             end))
  2542.         end
  2543.     },
  2544.     ParticleEmitter = {
  2545.         Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  2546.             local fp = Create("ParticleEmitter")({
  2547.                 Parent = Parent,
  2548.                 Color = ColorSequence.new(Color1, Color2),
  2549.                 LightEmission = LightEmission,
  2550.                 Size = Size,
  2551.                 Texture = Texture,
  2552.                 Transparency = Transparency,
  2553.                 ZOffset = ZOffset,
  2554.                 Acceleration = Accel,
  2555.                 Drag = Drag,
  2556.                 LockedToPart = LockedToPart,
  2557.                 VelocityInheritance = VelocityInheritance,
  2558.                 EmissionDirection = EmissionDirection,
  2559.                 Enabled = Enabled,
  2560.                 Lifetime = LifeTime,
  2561.                 Rate = Rate,
  2562.                 Rotation = Rotation,
  2563.                 RotSpeed = RotSpeed,
  2564.                 Speed = Speed,
  2565.                 VelocitySpread = VelocitySpread
  2566.             })
  2567.             return fp
  2568.         end
  2569.     }
  2570. }
  2571. function RemoveOutlines(part)
  2572.     part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  2573. end
  2574. function CreatePart(FormFactor, Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  2575.     local Part = Create("Part")({
  2576.         formFactor = FormFactor,
  2577.         Parent = Parent,
  2578.         Reflectance = Reflectance,
  2579.         Transparency = Transparency,
  2580.         CanCollide = false,
  2581.         Locked = true,
  2582.         BrickColor = BrickColor.new(tostring(BColor)),
  2583.         Name = Name,
  2584.         Size = Size,
  2585.         Material = Material
  2586.     })
  2587.     RemoveOutlines(Part)
  2588.     return Part
  2589. end
  2590. function CreateMesh(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  2591.     local Msh = Create(Mesh)({
  2592.         Parent = Part,
  2593.         Offset = OffSet,
  2594.         Scale = Scale
  2595.     })
  2596.     if Mesh == "SpecialMesh" then
  2597.         Msh.MeshType = MeshType
  2598.         Msh.MeshId = MeshId
  2599.     end
  2600.     return Msh
  2601. end
  2602. function CreateWeld(Parent, Part0, Part1, C0, C1)
  2603.     local Weld = Create("Weld")({
  2604.         Parent = Parent,
  2605.         Part0 = Part0,
  2606.         Part1 = Part1,
  2607.         C0 = C0,
  2608.         C1 = C1
  2609.     })
  2610.     return Weld
  2611. end
  2612.  
  2613.  
  2614. -------------------------------------------------------
  2615. --Start Effect Function--
  2616. -------------------------------------------------------
  2617. EffectModel = Instance.new("Model", char)
  2618. Effects = {
  2619.   Block = {
  2620.     Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, Type)
  2621.       local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  2622.       prt.Anchored = true
  2623.       prt.CFrame = cframe
  2624.       local msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  2625.       game:GetService("Debris"):AddItem(prt, 10)
  2626.       if Type == 1 or Type == nil then
  2627.         table.insert(Effects, {
  2628.           prt,
  2629.           "Block1",
  2630.           delay,
  2631.           x3,
  2632.           y3,
  2633.           z3,
  2634.           msh
  2635.         })
  2636.       elseif Type == 2 then
  2637.         table.insert(Effects, {
  2638.           prt,
  2639.           "Block2",
  2640.           delay,
  2641.           x3,
  2642.           y3,
  2643.           z3,
  2644.           msh
  2645.         })
  2646.       else
  2647.         table.insert(Effects, {
  2648.           prt,
  2649.           "Block3",
  2650.           delay,
  2651.           x3,
  2652.           y3,
  2653.           z3,
  2654.           msh
  2655.         })
  2656.       end
  2657.     end
  2658.   },
  2659.   Sphere = {
  2660.     Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  2661.       local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  2662.       prt.Anchored = true
  2663.       prt.CFrame = cframe
  2664.       local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  2665.       game:GetService("Debris"):AddItem(prt, 10)
  2666.       table.insert(Effects, {
  2667.         prt,
  2668.         "Cylinder",
  2669.         delay,
  2670.         x3,
  2671.         y3,
  2672.         z3,
  2673.         msh
  2674.       })
  2675.     end
  2676.   },
  2677.   Cylinder = {
  2678.     Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  2679.       local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  2680.       prt.Anchored = true
  2681.       prt.CFrame = cframe
  2682.       local msh = CFuncs.Mesh.Create("CylinderMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  2683.       game:GetService("Debris"):AddItem(prt, 10)
  2684.       table.insert(Effects, {
  2685.         prt,
  2686.         "Cylinder",
  2687.         delay,
  2688.         x3,
  2689.         y3,
  2690.         z3,
  2691.         msh
  2692.       })
  2693.     end
  2694.   },
  2695.   Wave = {
  2696.     Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  2697.       local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  2698.       prt.Anchored = true
  2699.       prt.CFrame = cframe
  2700.       local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://20329976", Vector3.new(0, 0, 0), Vector3.new(x1 / 60, y1 / 60, z1 / 60))
  2701.       game:GetService("Debris"):AddItem(prt, 10)
  2702.       table.insert(Effects, {
  2703.         prt,
  2704.         "Cylinder",
  2705.         delay,
  2706.         x3 / 60,
  2707.         y3 / 60,
  2708.         z3 / 60,
  2709.         msh
  2710.       })
  2711.     end
  2712.   },
  2713.   Ring = {
  2714.     Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  2715.       local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  2716.       prt.Anchored = true
  2717.       prt.CFrame = cframe
  2718.       local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://3270017", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  2719.       game:GetService("Debris"):AddItem(prt, 10)
  2720.       table.insert(Effects, {
  2721.         prt,
  2722.         "Cylinder",
  2723.         delay,
  2724.         x3,
  2725.         y3,
  2726.         z3,
  2727.         msh
  2728.       })
  2729.     end
  2730.   },
  2731.   Break = {
  2732.     Create = function(brickcolor, cframe, x1, y1, z1)
  2733.       local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  2734.       prt.Anchored = true
  2735.       prt.CFrame = cframe * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  2736.       local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  2737.       local num = math.random(10, 50) / 1000
  2738.       game:GetService("Debris"):AddItem(prt, 10)
  2739.       table.insert(Effects, {
  2740.         prt,
  2741.         "Shatter",
  2742.         num,
  2743.         prt.CFrame,
  2744.         math.random() - math.random(),
  2745.         0,
  2746.         math.random(50, 100) / 100
  2747.       })
  2748.     end
  2749.   },
  2750. Spiral = {
  2751.     Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  2752.       local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  2753.       prt.Anchored = true
  2754.       prt.CFrame = cframe
  2755.       local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://1051557", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  2756.       game:GetService("Debris"):AddItem(prt, 10)
  2757.       table.insert(Effects, {
  2758.         prt,
  2759.         "Cylinder",
  2760.         delay,
  2761.         x3,
  2762.         y3,
  2763.         z3,
  2764.         msh
  2765.       })
  2766.     end
  2767.   },
  2768. Push = {
  2769.     Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  2770.       local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  2771.       prt.Anchored = true
  2772.       prt.CFrame = cframe
  2773.       local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://437347603", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  2774.       game:GetService("Debris"):AddItem(prt, 10)
  2775.       table.insert(Effects, {
  2776.         prt,
  2777.         "Cylinder",
  2778.         delay,
  2779.         x3,
  2780.         y3,
  2781.         z3,
  2782.         msh
  2783.       })
  2784.     end
  2785.   }
  2786. }
  2787. -------------------------------------------------------
  2788. --End Effect Function--
  2789. -------------------------------------------------------
  2790.  
  2791. function CreateSound(ID, PARENT, VOLUME, PITCH)
  2792.     local NSound = nil
  2793.     coroutine.resume(coroutine.create(function()
  2794.         NSound = Instance.new("Sound", PARENT)
  2795.         NSound.Volume = VOLUME
  2796.         NSound.Pitch = PITCH
  2797.         NSound.SoundId = "http://www.roblox.com/asset/?id="..ID
  2798.         swait()
  2799.         NSound:play()
  2800.         game:GetService("Debris"):AddItem(NSound, 10)
  2801.     end))
  2802.     return NSound
  2803. end
  2804.  
  2805. function Eviscerate(dude)
  2806.     if dude.Name ~= char and dude.Name ~= "Hmm465" and dude.Name ~= "Kir0ki" then
  2807.         local bgf = IT("BodyGyro", dude.Head)
  2808.         bgf.CFrame = bgf.CFrame * CFrame.fromEulerAnglesXYZ(Rad(-90), 0, 0)
  2809.         local val = IT("BoolValue", dude)
  2810.         val.Name = "IsHit"
  2811.         local ds = coroutine.wrap(function()
  2812.             dude:WaitForChild("Head"):BreakJoints()
  2813.             wait(0.5)
  2814.             target = nil
  2815.             coroutine.resume(coroutine.create(function()
  2816.                 for i, v in pairs(dude:GetChildren()) do
  2817.                     if v:IsA("Accessory") then
  2818.                         v:Destroy()
  2819.                     end
  2820.                     if v:IsA("Humanoid") then
  2821.                         v:Destroy()
  2822.                     end
  2823.                     if v:IsA("CharacterMesh") then
  2824.                         v:Destroy()
  2825.                     end
  2826.                     if v:IsA("Model") then
  2827.                         v:Destroy()
  2828.                     end
  2829.                     if v:IsA("Part") or v:IsA("MeshPart") then
  2830.                         for x, o in pairs(v:GetChildren()) do
  2831.                             if o:IsA("Decal") then
  2832.                                 o:Destroy()
  2833.                             end
  2834.                         end
  2835.                         coroutine.resume(coroutine.create(function()
  2836.                             v.Material = "Neon"
  2837.                             v.CanCollide = false
  2838.                             local PartEmmit1 = IT("ParticleEmitter", v)
  2839.                             PartEmmit1.LightEmission = 1
  2840.                             PartEmmit1.Texture = "rbxassetid://284205403"
  2841.                             PartEmmit1.Color = ColorSequence.new(maincolor.Color)
  2842.                             PartEmmit1.Rate = 150
  2843.                             PartEmmit1.Lifetime = NumberRange.new(1)
  2844.                             PartEmmit1.Size = NumberSequence.new({
  2845.                                 NumberSequenceKeypoint.new(0, 0.75, 0),
  2846.                                 NumberSequenceKeypoint.new(1, 0, 0)
  2847.                             })
  2848.                             PartEmmit1.Transparency = NumberSequence.new({
  2849.                                 NumberSequenceKeypoint.new(0, 0, 0),
  2850.                                 NumberSequenceKeypoint.new(1, 1, 0)
  2851.                             })
  2852.                             PartEmmit1.Speed = NumberRange.new(0, 0)
  2853.                             PartEmmit1.VelocitySpread = 30000
  2854.                             PartEmmit1.Rotation = NumberRange.new(-500, 500)
  2855.                             PartEmmit1.RotSpeed = NumberRange.new(-500, 500)
  2856.                             local BodPoss = IT("BodyPosition", v)
  2857.                             BodPoss.P = 3000
  2858.                             BodPoss.D = 1000
  2859.                             BodPoss.maxForce = Vector3.new(50000000000, 50000000000, 50000000000)
  2860.                             BodPoss.position = v.Position + Vector3.new(Mrandom(-15, 15), Mrandom(-15, 15), Mrandom(-15, 15))
  2861.                             v.Color = maincolor.Color
  2862.                             coroutine.resume(coroutine.create(function()
  2863.                                 for i = 0, 49 do
  2864.                                     swait(1)
  2865.                                     v.Transparency = v.Transparency + 0.08
  2866.                                 end
  2867.                                 wait(0.5)
  2868.                                 PartEmmit1.Enabled = false
  2869.                                 wait(3)
  2870.                                 v:Destroy()
  2871.                                 dude:Destroy()
  2872.                             end))
  2873.                         end))
  2874.                     end
  2875.                 end
  2876.             end))
  2877.         end)
  2878.         ds()
  2879.     end
  2880. end
  2881. function SphereAura(bonuspeed, FastSpeed, type, pos, x1, y1, z1, value, color, outerpos)
  2882.     local type = type
  2883.     local rng = Instance.new("Part", char)
  2884.     rng.Anchored = true
  2885.     rng.BrickColor = color
  2886.     rng.CanCollide = false
  2887.     rng.FormFactor = 3
  2888.     rng.Name = "Ring"
  2889.     rng.Material = "Neon"
  2890.     rng.Size = Vector3.new(1, 1, 1)
  2891.     rng.Transparency = 0
  2892.     rng.TopSurface = 0
  2893.     rng.BottomSurface = 0
  2894.     rng.CFrame = pos
  2895.     rng.CFrame = rng.CFrame + rng.CFrame.lookVector * outerpos
  2896.     local rngm = Instance.new("SpecialMesh", rng)
  2897.     rngm.MeshType = "Sphere"
  2898.     rngm.Scale = Vector3.new(x1, y1, z1)
  2899.     local scaler2 = 1
  2900.     local speeder = FastSpeed
  2901.     if type == "Add" then
  2902.         scaler2 = 1 * value
  2903.     elseif type == "Divide" then
  2904.         scaler2 = 1 / value
  2905.     end
  2906.     coroutine.resume(coroutine.create(function()
  2907.         for i = 0, 10 / bonuspeed, 0.1 do
  2908.             swait()
  2909.             if type == "Add" then
  2910.                 scaler2 = scaler2 - 0.01 * value / bonuspeed
  2911.             elseif type == "Divide" then
  2912.                 scaler2 = scaler2 - 0.01 / value * bonuspeed
  2913.             end
  2914.                         rng.BrickColor = BrickColor.random()
  2915.             speeder = speeder - 0.01 * FastSpeed * bonuspeed
  2916.             rng.CFrame = rng.CFrame + rng.CFrame.lookVector * speeder * bonuspeed
  2917.             rng.Transparency = rng.Transparency + 0.01 * bonuspeed
  2918.             rngm.Scale = rngm.Scale + Vector3.new(scaler2 * bonuspeed, scaler2 * bonuspeed, 0)
  2919.         end
  2920.         rng:Destroy()
  2921.     end))
  2922. end
  2923.  
  2924. function FindNearestHead(Position, Distance, SinglePlayer)
  2925.     if SinglePlayer then
  2926.         return Distance > (SinglePlayer.Torso.CFrame.p - Position).magnitude
  2927.     end
  2928.     local List = {}
  2929.     for i, v in pairs(workspace:GetChildren()) do
  2930.         if v:IsA("Model") and v:findFirstChild("Head") and v ~= char and Distance >= (v.Head.Position - Position).magnitude then
  2931.             table.insert(List, v)
  2932.         end
  2933.     end
  2934.     return List
  2935. end
  2936. function SoulSteal(dude)
  2937. if dude.Name ~= char and dude.Name ~= "Hmm465" and dude.Name ~= "Kir0ki" then
  2938. local bgf = IT("BodyGyro", dude.Head)
  2939. bgf.CFrame = bgf.CFrame * CFrame.fromEulerAnglesXYZ(Rad(-90), 0, 0)
  2940. local val = IT("BoolValue", dude)
  2941. val.Name = "IsHit"
  2942. local torso = (dude:FindFirstChild'Head' or dude:FindFirstChild'Torso' or dude:FindFirstChild'UpperTorso' or dude:FindFirstChild'LowerTorso' or dude:FindFirstChild'HumanoidRootPart')
  2943. local soulst = coroutine.wrap(function()
  2944. local soul = Instance.new("Part",dude)
  2945. soul.Size = Vector3.new(1,1,1)
  2946. soul.CanCollide = false
  2947. soul.Anchored = false
  2948. soul.Position = torso.Position
  2949. soul.Transparency = 1
  2950. local PartEmmit1 = IT("ParticleEmitter", soul)
  2951. PartEmmit1.LightEmission = 1
  2952. PartEmmit1.Texture = "rbxassetid://569507414"
  2953. PartEmmit1.Color = ColorSequence.new(maincolor.Color)
  2954. PartEmmit1.Rate = 250
  2955. PartEmmit1.Lifetime = NumberRange.new(1.6)
  2956. PartEmmit1.Size = NumberSequence.new({
  2957.     NumberSequenceKeypoint.new(0, 1, 0),
  2958.     NumberSequenceKeypoint.new(1, 0, 0)
  2959. })
  2960. PartEmmit1.Transparency = NumberSequence.new({
  2961.     NumberSequenceKeypoint.new(0, 0, 0),
  2962.     NumberSequenceKeypoint.new(1, 1, 0)
  2963. })
  2964. PartEmmit1.Speed = NumberRange.new(0, 0)
  2965. PartEmmit1.VelocitySpread = 30000
  2966. PartEmmit1.Rotation = NumberRange.new(-360, 360)
  2967. PartEmmit1.RotSpeed = NumberRange.new(-360, 360)
  2968. local BodPoss = IT("BodyPosition", soul)
  2969. BodPoss.P = 3000
  2970. BodPoss.D = 1000
  2971. BodPoss.maxForce = Vector3.new(50000000000, 50000000000, 50000000000)
  2972. BodPoss.position = torso.Position + Vector3.new(Mrandom(-15, 15), Mrandom(-15, 15), Mrandom(-15, 15))
  2973. wait(1.6)
  2974. soul.Touched:connect(function(hit)
  2975.     if hit.Parent == char then
  2976.     soul:Destroy()
  2977.     end
  2978. end)
  2979. wait(1.2)
  2980. while soul do
  2981.     swait()
  2982.     PartEmmit1.Color = ColorSequence.new(maincolor.Color)
  2983.     BodPoss.Position = tors.Position
  2984. end
  2985. end)
  2986.     soulst()
  2987.     end
  2988. end
  2989. function FaceMouse()
  2990. local   Cam = workspace.CurrentCamera
  2991.     return {
  2992.         CFrame.new(char.Torso.Position, Vector3.new(mouse.Hit.p.x, char.Torso.Position.y, mouse.Hit.p.z)),
  2993.         Vector3.new(mouse.Hit.p.x, mouse.Hit.p.y, mouse.Hit.p.z)
  2994.     }
  2995. end
  2996. -------------------------------------------------------
  2997. --End Important Functions--
  2998. -------------------------------------------------------
  2999. --[[
  3000.         Thanks for using Build-To-Lua by jarredbcv.
  3001. ]]--
  3002.  
  3003. New = function(Object, Parent, Name, Data)
  3004.     local Object = Instance.new(Object)
  3005.     for Index, Value in pairs(Data or {}) do
  3006.         Object[Index] = Value
  3007.     end
  3008.     Object.Parent = Parent
  3009.     Object.Name = Name
  3010.     return Object
  3011. end
  3012.    
  3013. Gaunty = New("Model",char,"Gaunty",{})
  3014. Handle = New("Part",Gaunty,"Handle",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1, 1.26999998, 1),CFrame = CFrame.new(-5.67319345, 3.02064276, -77.6615906, 0.999894261, 0.010924357, 0.00963267777, -0.0110270018, 0.999882579, 0.0106679145, -0.00951499958, -0.0107729975, 0.999897003),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3015. Mesh = New("BlockMesh",Handle,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  3016. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.82765579, 3.62595344, -77.6579285, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3017. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(-0.161155701, 0.603512526, 0.00862884521, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3018. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-6.13765526, 3.62595367, -77.6579285, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3019. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(-0.471122265, 0.600126028, 0.00564575195, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3020. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.5176549, 3.62595415, -77.6579285, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3021. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(0.148812294, 0.606899738, 0.0116195679, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3022. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.21765471, 3.62595463, -77.6579285, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3023. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(0.448780537, 0.610177517, 0.014503479, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3024. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-6.13765526, 2.53595448, -77.6579285, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3025. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(-0.459102631, -0.489744425, -0.00598144531, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3026. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.82765627, 2.53595448, -77.6579285, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3027. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(-0.149136543, -0.486357927, -0.00299835205, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3028. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.51765537, 2.53595448, -77.6579361, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3029. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(0.160831451, -0.48297143, -1.52587891e-05, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3030. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.21765566, 2.53595424, -77.6579361, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3031. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(0.460799217, -0.479694128, 0.00286865234, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3032. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.07999992, 0.279999971, 1.06999993),CFrame = CFrame.new(-5.66865063, 3.64553881, -77.6613617, 0.999894857, 0.0109243635, 0.00963268708, -0.0110270083, 0.999883175, 0.0106679257, -0.00951500144, -0.0107729994, 0.999897599),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3033. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  3034. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),C1 = CFrame.new(-0.00235080719, 0.624869347, 0.00694274902, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3035. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.08999991, 0.0599999577, 1.07999992),CFrame = CFrame.new(-5.66490126, 3.73544312, -77.6652145, 0.999894857, 0.0109243635, 0.00963268708, -0.0110270083, 0.999883175, 0.0106679257, -0.00951500144, -0.0107729994, 0.999897599),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3036. Mesh = New("BlockMesh",NeonPart,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  3037. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),C1 = CFrame.new(0.000443935394, 0.714845657, 0.00408172607, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3038. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.08999991, 0.0599999577, 1.07999992),CFrame = CFrame.new(-5.66480446, 3.52554965, -77.65522, 0.999894857, 0.0109243635, 0.00963268708, -0.0110270083, 0.999883175, 0.0106679257, -0.00951500144, -0.0107729994, 0.999897599),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3039. Mesh = New("BlockMesh",NeonPart,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  3040. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),C1 = CFrame.new(0.00275993347, 0.504870415, 0.0118331909, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3041. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.07999992, 0.279999971, 1.06999993),CFrame = CFrame.new(-5.6686511, 2.55553746, -77.6613541, 0.999894857, 0.0109243635, 0.00963268708, -0.0110270083, 0.999883175, 0.0106679257, -0.00951500144, -0.0107729994, 0.999897599),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3042. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  3043. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),C1 = CFrame.new(0.00966835022, -0.465003252, -0.00468444824, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3044. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.08999991, 0.0599999577, 1.07999992),CFrame = CFrame.new(-5.66490126, 2.64544272, -77.6652145, 0.999894857, 0.0109243635, 0.00963268708, -0.0110270083, 0.999883175, 0.0106679257, -0.00951500144, -0.0107729994, 0.999897599),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3045. Mesh = New("BlockMesh",NeonPart,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  3046. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),C1 = CFrame.new(0.0124630928, -0.375026226, -0.00754547119, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3047. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.08999991, 0.0599999577, 1.07999992),CFrame = CFrame.new(-5.66480494, 2.43554902, -77.65522, 0.999894857, 0.0109243635, 0.00963268708, -0.0110270083, 0.999883175, 0.0106679257, -0.00951500144, -0.0107729994, 0.999897599),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3048. Mesh = New("BlockMesh",NeonPart,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  3049. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),C1 = CFrame.new(0.0147790909, -0.585001707, 0.000205993652, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3050. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.12999988, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.67265606, 3.62595463, -78.1079407, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3051. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C1 = CFrame.new(-0.0018901825, 0.61005497, -0.439842224, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3052. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.12999988, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.67265606, 3.62595558, -77.8179321, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3053. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C1 = CFrame.new(-0.00464963913, 0.606931448, -0.149864197, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3054. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.66765547, 3.62595606, -77.4879303, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3055. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C1 = CFrame.new(-0.00278997421, 0.603431463, 0.180152893, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3056. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.66765547, 3.62595654, -77.1979294, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3057. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C1 = CFrame.new(-0.00554895401, 0.600307703, 0.470123291, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3058. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.66765547, 2.53595638, -77.1979294, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3059. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C1 = CFrame.new(0.0064702034, -0.489563704, 0.458496094, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3060. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.66765547, 2.53595614, -77.4879303, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3061. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C1 = CFrame.new(0.00922966003, -0.486439705, 0.168525696, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3062. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.12999988, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.67265558, 2.53595638, -77.8179245, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3063. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C1 = CFrame.new(0.00736999512, -0.482939243, -0.161483765, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3064. NeonPart = New("Part",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.12999988, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.67265606, 2.53595614, -78.1079254, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3065. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C1 = CFrame.new(0.0101289749, -0.479815245, -0.451454163, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3066. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765547, 3.62595677, -77.1979218, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3067. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(-0.00554943085, 0.600307941, 0.47013092, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3068. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765499, 3.62595701, -77.4879303, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3069. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(-0.00278949738, 0.603432655, 0.180152893, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3070. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765451, 3.62595749, -77.8179321, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3071. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0.000350952148, 0.606987953, -0.149810791, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3072. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765451, 3.62595749, -78.107933, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3073. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0.00311040878, 0.61011219, -0.439788818, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3074. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765499, 2.53595734, -78.107933, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3075. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0.0151295662, -0.479759216, -0.451416016, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3076. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765499, 2.5359571, -77.8179245, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3077. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0.0123701096, -0.482883692, -0.161437988, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3078. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765499, 2.5359571, -77.4879227, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3079. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0.00923013687, -0.48643899, 0.168533325, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3080. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765499, 2.53595686, -77.1979218, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3081. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0.00647068024, -0.489563227, 0.458503723, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3082. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-6.13765478, 3.62595701, -77.6579132, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3083. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(-0.471121788, 0.600129128, 0.00566101074, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3084. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.82765484, 3.62595725, -77.6579132, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3085. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(-0.161154747, 0.603516102, 0.008644104, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3086. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.51765442, 3.62595773, -77.6579132, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3087. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(0.148812771, 0.606903076, 0.0116348267, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3088. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.21765375, 3.6259582, -77.6579132, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3089. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(0.44878149, 0.610180855, 0.0145187378, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3090. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.21765327, 2.53595781, -77.6579132, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3091. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(0.460801125, -0.47969079, 0.00289154053, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3092. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.51765299, 2.53595757, -77.6579208, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3093. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(0.160833359, -0.48296833, 0, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3094. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.82765341, 2.53595734, -77.6579208, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3095. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(-0.149133682, -0.486355066, -0.00299072266, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3096. Part = New("Part",Gaunty,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-6.13765383, 2.53595734, -77.6579208, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3097. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(-0.4591012, -0.489741802, -0.00597381592, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3098. NeonPart = New("WedgePart",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(1.14999998, 0.640000045, 0.25000003),CFrame = CFrame.new(-5.66203499, 3.4509573, -77.7865677, 1.0000006, -6.18456397e-10, 3.7252903e-09, -6.18456397e-10, 1.0000006, 4.65661287e-09, 3.7252903e-09, 4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3099. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C1 = CFrame.new(0.00760126114, 0.431732178, -0.120269775, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3100. NeonPart = New("WedgePart",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(1.14999998, 0.640000045, 0.280000031),CFrame = CFrame.new(-5.66203451, 3.45095778, -77.5215683, -1.0000006, -6.18456397e-10, -9.12696123e-08, 6.18456397e-10, 1.0000006, -4.65661287e-09, 8.38190317e-08, 4.65661287e-09, -1.0000006),BottomSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3101. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),C1 = CFrame.new(0.00508022308, 0.428877592, 0.144706726, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3102. NeonPart = New("WedgePart",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(1.14999998, 0.640000045, 0.25000003),CFrame = CFrame.new(-5.66203403, 2.81095791, -77.7865601, -1.0000006, 8.81700544e-08, 3.7252903e-09, -8.69331416e-08, -1.0000006, 4.65661287e-09, -3.7252903e-09, -4.65661287e-09, 1.0000006),BottomSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3103. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -1, -8.74227766e-08, 0, 8.74227766e-08, -1, 0, 0, 0, 1),C1 = CFrame.new(0.0146594048, -0.208191872, -0.127082825, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3104. NeonPart = New("WedgePart",Gaunty,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(1.14999998, 0.640000045, 0.280000031),CFrame = CFrame.new(-5.66203356, 2.8209579, -77.5215607, 1.0000006, -8.69331416e-08, 8.38190317e-08, -8.81700544e-08, -1.0000006, -4.65661287e-09, 9.12696123e-08, -4.65661287e-09, -1.0000006),BottomSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3105. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 1, -8.74227766e-08, 8.74227766e-08, -8.74227766e-08, -1, -7.64274186e-15, 8.74227766e-08, 0, -1),C1 = CFrame.new(0.0120282173, -0.201047897, 0.137992859, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3106. Wedge = New("WedgePart",Gaunty,"Wedge",{BrickColor = BrickColor.new("Black"),Size = Vector3.new(1.1099999, 0.569999993, 1.13),CFrame = CFrame.new(-5.6508193, 4.06113148, -77.6620178, -4.74974513e-08, -6.18456397e-10, 1.0000006, -5.58793545e-09, 1.0000006, -1.5279511e-10, -1.0000006, 4.65661287e-09, -4.00468707e-08),BottomSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3107. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(0.0109024048, 1.04061508, 0.010887146, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3108.  
  3109. Gaunty2 = New("Model",char,"Gaunty2",{})
  3110. Handle2 = New("Part",Gaunty2,"Handle2",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1, 1.26999998, 1),CFrame = CFrame.new(-5.67319345, 3.02064276, -77.6615906, 0.999894261, 0.010924357, 0.00963267777, -0.0110270018, 0.999882579, 0.0106679145, -0.00951499958, -0.0107729975, 0.999897003),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3111. Mesh = New("BlockMesh",Handle2,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  3112. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.82765579, 3.62595367, -77.6579285, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3113. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(-0.161155701, 0.603512764, 0.00862884521, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3114. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-6.13765526, 3.62595439, -77.6579285, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3115. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(-0.471122265, 0.600126743, 0.00564575195, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3116. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.51765394, 3.6259551, -77.6579285, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3117. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(0.148813248, 0.606900692, 0.0116195679, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3118. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.21765375, 3.62595558, -77.6579285, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3119. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(0.44878149, 0.610178471, 0.014503479, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3120. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-6.13765621, 2.535954, -77.6579285, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3121. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(-0.459103584, -0.489744902, -0.00598144531, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3122. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.82765722, 2.535954, -77.6579285, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3123. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(-0.149137497, -0.486358404, -0.00299835205, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3124. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.5176549, 2.53595448, -77.6579514, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3125. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(0.160831928, -0.482971191, -3.05175781e-05, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3126. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.21765566, 2.535954, -77.6579361, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3127. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(0.460799217, -0.479694366, 0.00286865234, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3128. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.07999992, 0.279999971, 1.06999993),CFrame = CFrame.new(-5.66865063, 3.64554, -77.661377, 0.999896049, 0.0109243765, 0.00963270571, -0.0110270213, 0.999884367, 0.010667949, -0.0095150033, -0.0107730031, 0.999898791),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3129. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  3130. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 0.999895453, -0.0110270148, -0.00951500237, 0.01092437, 0.999883771, -0.0107730012, 0.0096326964, 0.0106679378, 0.999898195),C1 = CFrame.new(-0.00235033035, 0.624870777, 0.00692749023, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3131. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.08999991, 0.0599999577, 1.07999992),CFrame = CFrame.new(-5.6649003, 3.73544407, -77.6652145, 0.999896049, 0.0109243765, 0.00963270571, -0.0110270213, 0.999884367, 0.010667949, -0.0095150033, -0.0107730031, 0.999898791),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3132. Mesh = New("BlockMesh",NeonPart,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  3133. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 0.999895453, -0.0110270148, -0.00951500237, 0.01092437, 0.999883771, -0.0107730012, 0.0096326964, 0.0106679378, 0.999898195),C1 = CFrame.new(0.000444412231, 0.714846611, 0.00408172607, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3134. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.08999991, 0.0599999577, 1.07999992),CFrame = CFrame.new(-5.66480446, 3.5255506, -77.65522, 0.999896049, 0.0109243765, 0.00963270571, -0.0110270213, 0.999884367, 0.010667949, -0.0095150033, -0.0107730031, 0.999898791),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3135. Mesh = New("BlockMesh",NeonPart,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  3136. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 0.999895453, -0.0110270148, -0.00951500237, 0.01092437, 0.999883771, -0.0107730012, 0.0096326964, 0.0106679378, 0.999898195),C1 = CFrame.new(0.00275993347, 0.504871368, 0.0118331909, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3137. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.07999992, 0.279999971, 1.06999993),CFrame = CFrame.new(-5.6686511, 2.55553699, -77.6613541, 0.999896049, 0.0109243765, 0.00963270571, -0.0110270213, 0.999884367, 0.010667949, -0.0095150033, -0.0107730031, 0.999898791),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3138. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  3139. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 0.999895453, -0.0110270148, -0.00951500237, 0.01092437, 0.999883771, -0.0107730012, 0.0096326964, 0.0106679378, 0.999898195),C1 = CFrame.new(0.00966835022, -0.465003729, -0.00468444824, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3140. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.08999991, 0.0599999577, 1.07999992),CFrame = CFrame.new(-5.66490126, 2.64544272, -77.6652145, 0.999896049, 0.0109243765, 0.00963270571, -0.0110270213, 0.999884367, 0.010667949, -0.0095150033, -0.0107730031, 0.999898791),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3141. Mesh = New("BlockMesh",NeonPart,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  3142. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 0.999895453, -0.0110270148, -0.00951500237, 0.01092437, 0.999883771, -0.0107730012, 0.0096326964, 0.0106679378, 0.999898195),C1 = CFrame.new(0.0124630928, -0.375026226, -0.00754547119, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3143. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.08999991, 0.0599999577, 1.07999992),CFrame = CFrame.new(-5.66480589, 2.43554854, -77.65522, 0.999896049, 0.0109243765, 0.00963270571, -0.0110270213, 0.999884367, 0.010667949, -0.0095150033, -0.0107730031, 0.999898791),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3144. Mesh = New("BlockMesh",NeonPart,"Mesh",{Scale = Vector3.new(1.03999996, 1, 1.03999996),})
  3145. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 0.999895453, -0.0110270148, -0.00951500237, 0.01092437, 0.999883771, -0.0107730012, 0.0096326964, 0.0106679378, 0.999898195),C1 = CFrame.new(0.0147781372, -0.585002184, 0.000205993652, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3146. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.12999988, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.67265606, 3.62595463, -78.1079407, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3147. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(-0.0018901825, 0.61005497, -0.439842224, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3148. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.12999988, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.67265511, 3.6259563, -77.8179169, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3149. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(-0.00464916229, 0.606932163, -0.149848938, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3150. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.66765451, 3.62595701, -77.4879303, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3151. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(-0.00278902054, 0.603432655, 0.180152893, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3152. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.66765547, 3.62595749, -77.1979294, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3153. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(-0.00554895401, 0.600308895, 0.470123291, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3154. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.66765547, 2.53595638, -77.1979294, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3155. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.0064702034, -0.489563704, 0.458496094, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3156. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.13999987, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.66765547, 2.53595614, -77.4879303, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3157. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.00922966003, -0.486439705, 0.168525696, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3158. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.12999988, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.67265558, 2.53595638, -77.8179092, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3159. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.00736999512, -0.482939243, -0.161468506, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3160. NeonPart = New("Part",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.12999988, 0.109999999, 0.109999999),CFrame = CFrame.new(-5.67265606, 2.53595567, -78.1079254, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3161. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.0101289749, -0.479815722, -0.451454163, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3162. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765451, 3.62595749, -77.1979218, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3163. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(-0.00554847717, 0.600308895, 0.47013092, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3164. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765404, 3.62595797, -77.4879303, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3165. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(-0.0027885437, 0.603433609, 0.180152893, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3166. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765356, 3.6259594, -77.8179321, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3167. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.000351905823, 0.606989861, -0.149810791, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3168. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765356, 3.62595844, -78.107933, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3169. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.00311136246, 0.610113144, -0.439788818, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3170. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765499, 2.53595734, -78.107933, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3171. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.0151295662, -0.479759216, -0.451416016, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3172. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765499, 2.5359571, -77.8179092, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3173. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.0123701096, -0.48288393, -0.161422729, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3174. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765499, 2.5359571, -77.4879227, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3175. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.00923013687, -0.48643899, 0.168533325, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3176. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.66765499, 2.53595662, -77.1979218, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3177. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.00647068024, -0.489563465, 0.458503723, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3178. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-6.13765478, 3.62595797, -77.6579132, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3179. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(-0.471121788, 0.600130081, 0.00566101074, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3180. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.82765484, 3.6259582, -77.6579132, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3181. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(-0.161154747, 0.603517056, 0.008644104, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3182. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.51765347, 3.62595868, -77.6579132, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3183. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(0.148813725, 0.60690403, 0.0116348267, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3184. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.2176528, 3.62595916, -77.6579132, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3185. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(0.448782444, 0.610181808, 0.0145187378, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3186. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.21765327, 2.53595757, -77.6579132, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3187. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(0.460801601, -0.479691029, 0.00289154053, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3188. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.51765299, 2.53595757, -77.6579361, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3189. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(0.160833836, -0.48296833, -1.52587891e-05, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3190. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-5.82765436, 2.5359571, -77.6579208, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3191. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(-0.149134636, -0.486355305, -0.00299072266, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3192. Part = New("Part",Gaunty2,"Part",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.Metal,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.15999985, 0.0700000003, 0.0700000003),CFrame = CFrame.new(-6.13765478, 2.53595734, -77.6579208, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3193. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(-0.459102154, -0.489741802, -0.00597381592, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3194. NeonPart = New("WedgePart",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(1.14999998, 0.640000045, 0.25000003),CFrame = CFrame.new(-5.66203403, 3.45095801, -77.7865524, 1.00000179, -2.26282282e-09, 1.11758709e-08, -2.28465069e-09, 1.00000179, 1.39698386e-08, 1.11758709e-08, 1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3195. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -1.44791557e-09, 7.4505806e-09, -1.44063961e-09, 1.00000119, 9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.00760221481, 0.431732655, -0.120254517, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3196. NeonPart = New("WedgePart",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(1.14999998, 0.640000045, 0.280000031),CFrame = CFrame.new(-5.66203356, 3.45095849, -77.521553, -1.00000179, -2.26282282e-09, -9.87201929e-08, 2.28465069e-09, 1.00000179, -1.39698386e-08, 7.63684511e-08, 1.39698386e-08, -1.00000179),BottomSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3197. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -1.00000119, 1.45519152e-09, 8.00937414e-08, -1.44063961e-09, 1.00000119, 9.31322575e-09, -9.49949026e-08, -9.31322575e-09, -1.00000119),C1 = CFrame.new(0.00508117676, 0.428878307, 0.144721985, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3198. NeonPart = New("WedgePart",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(1.14999998, 0.640000045, 0.25000003),CFrame = CFrame.new(-5.66203308, 2.81095791, -77.7865601, -1.00000179, 8.98216967e-08, 1.11758709e-08, -8.52742232e-08, -1.00000179, 1.39698386e-08, -1.11758709e-08, -1.39698386e-08, 1.00000179),BottomSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3199. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -1.00000119, -8.61036824e-08, -7.4505806e-09, 8.89922376e-08, -1.00000119, -9.31322575e-09, 7.4505806e-09, 9.31322575e-09, 1.00000119),C1 = CFrame.new(0.0146603584, -0.208191872, -0.127082825, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3200. NeonPart = New("WedgePart",Gaunty2,"NeonPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(1.14999998, 0.640000045, 0.280000031),CFrame = CFrame.new(-5.6620326, 2.82095814, -77.5215454, 1.00000179, -8.52887752e-08, 7.63684511e-08, -8.98362487e-08, -1.00000179, -1.39698386e-08, 9.87201929e-08, -1.39698386e-08, -1.00000179),BottomSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  3201. mot = New("Motor",NeonPart,"mot",{Part0 = NeonPart,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, 1.00000119, -8.89995135e-08, 9.49949026e-08, -8.61109584e-08, -1.00000119, -9.31322575e-09, 8.00937414e-08, -9.31322575e-09, -1.00000119),C1 = CFrame.new(0.012029171, -0.201047897, 0.138008118, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3202. Wedge = New("WedgePart",Gaunty2,"Wedge",{BrickColor = BrickColor.new("Black"),Size = Vector3.new(1.1099999, 0.569999993, 1.13),CFrame = CFrame.new(-5.6508193, 4.06113243, -77.6620178, -5.49480319e-08, -2.26282282e-09, 1.00000179, -1.67638063e-08, 1.00000179, -1.8189894e-09, -1.00000179, 1.39698386e-08, -3.25962901e-08),BottomSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  3203. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle2,C0 = CFrame.new(0, 0, 0, -5.12227416e-08, -1.11758709e-08, -1.00000119, -1.44063961e-09, 1.00000119, 9.31322575e-09, 1.00000119, -9.89530236e-10, -3.63215804e-08),C1 = CFrame.new(0.0109024048, 1.04061604, 0.010887146, 0.999894261, -0.0110270018, -0.00951499958, 0.010924357, 0.999882579, -0.0107729975, 0.00963267777, 0.0106679145, 0.999897003),})
  3204.  
  3205.  
  3206. NewInstance = function(instance,parent,properties)
  3207.     local inst = Instance.new(instance,parent)
  3208.     if(properties)then
  3209.         for i,v in next, properties do
  3210.             pcall(function() inst[i] = v end)
  3211.         end
  3212.     end
  3213.     return inst;
  3214. end
  3215.  
  3216. local HW = NewInstance('Motor', char, {Part0 = ra, Part1 = Handle, C0 = CF(0,-.51,0)})
  3217. local HW2 = NewInstance('Motor', char, {Part0 = la, Part1 = Handle2, C0 = CF(0,-.51,0) * angles(Rad(0),Rad(180),Rad(0))})
  3218.  
  3219. for _,v in next, Gaunty:children() do
  3220.     v.CanCollide = false
  3221. end
  3222. for _,v in next, Gaunty2:children() do
  3223.     v.CanCollide = false
  3224. end
  3225. local all, last = {}, nil
  3226. ArmourParts = {}
  3227. NeonParts = {}
  3228. function scan(p)
  3229.   for _, v in pairs(p:GetChildren()) do
  3230.     if v:IsA("BasePart") then
  3231.       if v.BrickColor == BrickColor.new("Black") then
  3232.         table.insert(ArmourParts, v)
  3233.       end
  3234.       if v.BrickColor == BrickColor.new("Institutional white") then
  3235.         table.insert(NeonParts, v)
  3236.       end
  3237.       if last then
  3238.         local w = Instance.new("Weld")
  3239.         w.Part0, w.Part1 = last, v
  3240.         w.C0 = v.CFrame:toObjectSpace(last.CFrame):inverse()
  3241.         w.Parent = last
  3242.       end
  3243.       table.insert(all, v)
  3244.       last = v
  3245.     end
  3246.     scan(v)
  3247.   end
  3248. end
  3249. scan(Gaunty)
  3250. local all2, last2 = {}, nil
  3251. ArmourParts2 = {}
  3252. NeonParts2 = {}
  3253. function scan2(p)
  3254.   for _, v in pairs(p:GetChildren()) do
  3255.     if v:IsA("BasePart") then
  3256.       if v.BrickColor == BrickColor.new("Black") then
  3257.         table.insert(ArmourParts2, v)
  3258.       end
  3259.       if v.BrickColor == BrickColor.new("Institutional white") then
  3260.         table.insert(NeonParts2, v)
  3261.       end
  3262.       if last2 then
  3263.         local w = Instance.new("Weld")
  3264.         w.Part0, w.Part1 = last2, v
  3265.         w.C0 = v.CFrame:toObjectSpace(last2.CFrame):inverse()
  3266.         w.Parent = last2
  3267.       end
  3268.       table.insert(all2, v)
  3269.       last2 = v
  3270.     end
  3271.     scan2(v)
  3272.   end
  3273. end
  3274. scan2(Gaunty2)
  3275. for i, v in pairs(ArmourParts) do
  3276.      v.BrickColor = BrickC("Black")
  3277.         end
  3278. for i, v in pairs(NeonParts) do
  3279.      v.BrickColor = BrickC("Really red")
  3280.         end
  3281. for i, v in pairs(ArmourParts2) do
  3282.      v.BrickColor = BrickC("Black")
  3283.         end
  3284. for i, v in pairs(NeonParts2) do
  3285.      v.BrickColor = BrickC("Really red")
  3286.         end
  3287. maincolor = BrickC("Really red")
  3288. -------------------------------------------------------
  3289. --Start Music Option--
  3290. -------------------------------------------------------
  3291. local Music = Instance.new("Sound",char)
  3292. Music.Volume = 10
  3293. Music.TimePosition = 40
  3294. Music.SoundId = "rbxassetid://460874877"
  3295. Music.Looped = true
  3296. Music.Pitch = 1 --Pitcher
  3297. Music.Name = "Music"
  3298. Music:Play()
  3299. -------------------------------------------------------
  3300. --End Music Option--
  3301. -------------------------------------------------------
  3302. local naeeym2 = Instance.new("BillboardGui",char)
  3303. naeeym2.AlwaysOnTop = true
  3304. naeeym2.Size = UDim2.new(5,35,2,35)
  3305. naeeym2.StudsOffset = Vector3.new(0,2,0)
  3306. naeeym2.Adornee = hed
  3307. naeeym2.Name = "Name"
  3308.  
  3309. local tecks2 = Instance.new("TextLabel",naeeym2)
  3310. tecks2.BackgroundTransparency = 1
  3311. tecks2.TextScaled = true
  3312. tecks2.BorderSizePixel = 0
  3313. tecks2.Text = "u wot"
  3314. tecks2.Font = "Garamond"
  3315. tecks2.TextSize = 30
  3316. tecks2.TextStrokeTransparency = 0
  3317. tecks2.TextColor3 = Color3.new(0,0,0)
  3318. tecks2.TextStrokeColor3 = Color3.new(0, 0, 0)
  3319. tecks2.Size = UDim2.new(1,0,0.5,0)
  3320. tecks2.Parent = naeeym2
  3321.  
  3322. function chatfunc(text, color)
  3323.     local chat = coroutine.wrap(function()
  3324.         if char:FindFirstChild("TalkingBillBoard") ~= nil then
  3325.             char:FindFirstChild("TalkingBillBoard"):destroy()
  3326.         end
  3327.         local naeeym2 = Instance.new("BillboardGui", char)
  3328.         naeeym2.Size = UDim2.new(0, 100, 0, 40)
  3329.         naeeym2.StudsOffset = Vector3.new(0, 5, 0)
  3330.         naeeym2.Adornee = hed
  3331.         naeeym2.Name = "TalkingBillBoard"
  3332.         local tecks2 = Instance.new("TextLabel", naeeym2)
  3333.         tecks2.BackgroundTransparency = 1
  3334.         tecks2.BorderSizePixel = 0
  3335.         tecks2.Text = ""
  3336.         tecks2.Font = "SciFi"
  3337.         tecks2.TextSize = 30
  3338.         tecks2.TextStrokeTransparency = 0
  3339.         tecks2.TextColor3 = color
  3340.         tecks2.TextStrokeColor3 = Color3.new(0, 0, 0)
  3341.         tecks2.Size = UDim2.new(1, 0, 0.5, 0)
  3342.         local tecks3 = Instance.new("TextLabel", naeeym2)
  3343.         tecks3.BackgroundTransparency = 1
  3344.         tecks3.BorderSizePixel = 0
  3345.         tecks3.Text = ""
  3346.         tecks3.Font = "SciFi"
  3347.         tecks3.TextSize = 30
  3348.         tecks3.TextStrokeTransparency = 0
  3349.         tecks3.TextColor3 = Color3.new(0, 0, 0)
  3350.         tecks3.TextStrokeColor3 = color
  3351.         tecks3.Size = UDim2.new(1, 0, 0.5, 0)
  3352.         coroutine.resume(coroutine.create(function()
  3353.             while true do
  3354.                 swait(1)
  3355.                     tecks2.TextColor3 = BrickColor.random().Color
  3356.                     tecks3.TextStrokeColor3 = BrickColor.random().Color
  3357.                 tecks2.Position = UDim2.new(0, math.random(-5, 5), 0, math.random(-5, 5))
  3358.                 tecks3.Position = UDim2.new(0, math.random(-5, 5), 0, math.random(-5, 5))
  3359.                 tecks2.Rotation = math.random(-5, 5)
  3360.                 tecks3.Rotation = math.random(-5, 5)
  3361.             end
  3362.         end))
  3363.         for i = 1, string.len(text) do
  3364.             CFuncs.Sound.Create("rbxassetid://274118116", char, 0.25, 0.115)
  3365.             tecks2.Text = string.sub(text, 1, i)
  3366.             tecks3.Text = string.sub(text, 1, i)
  3367.             swait(1)
  3368.         end
  3369.         wait(1)
  3370.         local randomrot = math.random(1, 2)
  3371.         if randomrot == 1 then
  3372.             for i = 1, 50 do
  3373.                 swait()
  3374.                 tecks2.Rotation = tecks2.Rotation - 0.75
  3375.                 tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency + 0.04
  3376.                 tecks2.TextTransparency = tecks2.TextTransparency + 0.04
  3377.                 tecks3.Rotation = tecks2.Rotation + 0.75
  3378.                 tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency + 0.04
  3379.                 tecks3.TextTransparency = tecks2.TextTransparency + 0.04
  3380.             end
  3381.         elseif randomrot == 2 then
  3382.             for i = 1, 50 do
  3383.                 swait()
  3384.                 tecks2.Rotation = tecks2.Rotation + 0.75
  3385.                 tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency + 0.04
  3386.                 tecks2.TextTransparency = tecks2.TextTransparency + 0.04
  3387.                 tecks3.Rotation = tecks2.Rotation - 0.75
  3388.                 tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency + 0.04
  3389.                 tecks3.TextTransparency = tecks2.TextTransparency + 0.04
  3390.             end
  3391.         end
  3392.         naeeym2:Destroy()
  3393.     end)
  3394.     chat()
  3395. end
  3396. -------------------------------------------------------
  3397. --Start Attacks N Stuff--
  3398. -------------------------------------------------------
  3399. local sine=0
  3400. function HitboxFunction(Pose, lifetime, siz1, siz2, siz3, Radie, Min, Max, kb, atype)
  3401.   local Hitboxpart = Instance.new("Part", EffectModel)
  3402.   RemoveOutlines(Hitboxpart)
  3403.   Hitboxpart.Size = Vector3.new(siz1, siz2, siz3)
  3404.   Hitboxpart.CanCollide = false
  3405.   Hitboxpart.Transparency = 1
  3406.   Hitboxpart.Anchored = true
  3407.   Hitboxpart.CFrame = Pose
  3408.   game:GetService("Debris"):AddItem(Hitboxpart, lifetime)
  3409.   MagniDamage(Hitboxpart, Radie, Min, Max, kb, atype)
  3410. end
  3411. wait2 = false
  3412. combo = 1
  3413.  
  3414. local letters = {"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"}
  3415.  
  3416. function assing_value(number)
  3417.     if number <= 26 then
  3418.         number = letters[number]
  3419.         else
  3420.         number = number - 27
  3421.     end
  3422.     return number
  3423. end
  3424.  
  3425. function create_id(length)
  3426.     local id = ""
  3427.     if length > 0 then
  3428.         for i = 1, length do
  3429.             local number = math.random(1, 36)
  3430.             id = id .. assing_value(number)
  3431.         end
  3432.     end
  3433.     return id
  3434. end
  3435.  
  3436.  
  3437. local name = create_id(20)
  3438.  
  3439. bool = Instance.new("BoolValue", game.Players.LocalPlayer.Character.Torso)
  3440. bool.Name = name
  3441.  
  3442. mouse.Button1Down:connect(function(key)
  3443.   if attack == false and game.Players.LocalPlayer.Character.Torso:FindFirstChild(name) then
  3444.     attack = true
  3445.     hum.WalkSpeed = 3.01
  3446.     if combo == 1 and wait2 == false then
  3447.       wait2 = true
  3448.         for i = 0, 1.2, 0.1 do
  3449.         swait()
  3450.         rootj.C0 = clerp(rootj.C0, RootCF * CFrame.new(0, -0.5, 0) * angles(math.rad(-5), math.rad(0), math.rad(-65)), 0.3)
  3451.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(math.rad(-10), math.rad(0), math.rad(-65)), 0.1)
  3452.         RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0.8) * angles(math.rad(90), math.rad(0), math.rad(20)), 0.1)
  3453.         LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-25), math.rad(0), math.rad(40)), 0.3)
  3454.         RH.C0 = clerp(RH.C0, CFrame.new(1, -1, -0.2) * RHCF * angles(math.rad(-2.5), math.rad(0), math.rad(-0)), 0.3)
  3455.         LH.C0 = clerp(LH.C0, CFrame.new(-1, -1, 0) * LHCF * angles(math.rad(-2.5), math.rad(15), math.rad(-20)), 0.3)
  3456.           end
  3457.         CreateSound("138097048", ra, 3, .8)
  3458.         HitboxFunction(ra.CFrame, 0.01, 1, 1, 1, 7, 6, 9, 3, "Normal")
  3459.       for i = 0, 1.2, 0.1 do
  3460.         swait()
  3461.         rootj.C0 = clerp(rootj.C0, RootCF * CFrame.new(0, -0.5, 0) * angles(math.rad(5), math.rad(0), math.rad(55)), 0.3)
  3462.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(math.rad(10), math.rad(0), math.rad(0)), 0.1)
  3463.         RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, -0.8) * angles(math.rad(95), math.rad(0), math.rad(40)), 0.1)
  3464.         LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-25), math.rad(0), math.rad(-10)), 0.3)
  3465.         RH.C0 = clerp(RH.C0, CFrame.new(1, -1, 0) * RHCF * angles(math.rad(-2.5), math.rad(-25), math.rad(-17)), 0.3)
  3466.         LH.C0 = clerp(LH.C0, CFrame.new(-1, -1, 0) * LHCF * angles(math.rad(-2.5), math.rad(-0), math.rad(0)), 0.3)
  3467.       end
  3468.       combo = 2
  3469.     end
  3470.     if combo == 2 and wait2 == false then
  3471.       wait2 = true
  3472.    for i = 0, 1.2, 0.1 do
  3473.         swait()
  3474.         rootj.C0 = clerp(rootj.C0, RootCF * CFrame.new(0, -0.5, 0) * angles(math.rad(-5), math.rad(0), math.rad(65)), 0.3)
  3475.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(math.rad(-10), math.rad(0), math.rad(65)), 0.1)
  3476.         RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0.8) * angles(math.rad(-25), math.rad(0), math.rad(40)), 0.1)
  3477.         LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(90), math.rad(0), math.rad(20)), 0.3)
  3478.         RH.C0 = clerp(RH.C0, CFrame.new(1, -1, -0.2) * RHCF * angles(math.rad(-2.5), math.rad(0), math.rad(-0)), 0.3)
  3479.         LH.C0 = clerp(LH.C0, CFrame.new(-1, -1, 0) * LHCF * angles(math.rad(-2.5), math.rad(15), math.rad(-20)), 0.3)
  3480.           end
  3481.         CreateSound("138097048", ra, 3, .8)
  3482.         HitboxFunction(ra.CFrame, 0.01, 1, 1, 1, 7, 6, 9, 3, "Normal")
  3483.       for i = 0, 1.2, 0.1 do
  3484.         swait()
  3485.         rootj.C0 = clerp(rootj.C0, RootCF * CFrame.new(0, -0.5, 0) * angles(math.rad(5), math.rad(0), math.rad(-55)), 0.3)
  3486.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(math.rad(10), math.rad(0), math.rad(0)), 0.1)
  3487.         RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-25), math.rad(0), math.rad(10)), 0.1)
  3488.         LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, -0.8) * angles(math.rad(95), math.rad(0), math.rad(-40)), 0.3)
  3489.         RH.C0 = clerp(RH.C0, CFrame.new(1, -1, 0) * RHCF * angles(math.rad(-2.5), math.rad(-25), math.rad(-17)), 0.3)
  3490.         LH.C0 = clerp(LH.C0, CFrame.new(-1, -1, 0) * LHCF * angles(math.rad(-2.5), math.rad(-0), math.rad(0)), 0.3)
  3491.       end
  3492.       combo = 3
  3493.     end
  3494.    if combo == 3 and wait2 == false then
  3495.     wait2 = true
  3496.     for i = 0, 1.2, 0.1 do
  3497.         swait()
  3498.         rootj.C0 = clerp(rootj.C0, RootCF * CFrame.new(0, -0.5, 0) * angles(math.rad(-5), math.rad(0), math.rad(-35)), 0.3)
  3499.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.1)
  3500.         RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0.8) * angles(math.rad(90), math.rad(0), math.rad(20)), 0.1)
  3501.         LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-25), math.rad(0), math.rad(-10)), 0.3)
  3502.         RH.C0 = clerp(RH.C0, CFrame.new(1, -1, -0.2) * RHCF * angles(math.rad(-2.5), math.rad(0), math.rad(-0)), 0.3)
  3503.         LH.C0 = clerp(LH.C0, CFrame.new(-1, -1, 0) * LHCF * angles(math.rad(-2.5), math.rad(15), math.rad(-20)), 0.3)
  3504.       end
  3505.     CreateSound("138097048", ra, 3, .8)
  3506.       HitboxFunction(ra.CFrame, 0.01, 1, 1, 1, 7, 24, 36, 3, "Normal")
  3507.       for i = 0, 1.2, 0.1 do
  3508.         swait()
  3509.         rootj.C0 = clerp(rootj.C0, RootCF * CFrame.new(0, -0.5, 0) * angles(math.rad(5), math.rad(0), math.rad(35)), 0.3)
  3510.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(math.rad(10), math.rad(0), math.rad(0)), 0.1)
  3511.         RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, -0.8) * angles(math.rad(96), math.rad(0), math.rad(10)), 0.1)
  3512.         LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-25), math.rad(0), math.rad(-10)), 0.3)
  3513.         RH.C0 = clerp(RH.C0, CFrame.new(1, -1, 0) * RHCF * angles(math.rad(-2.5), math.rad(-25), math.rad(-0)), 0.3)
  3514.         LH.C0 = clerp(LH.C0, CFrame.new(-1, -1, 0) * LHCF * angles(math.rad(-2.5), math.rad(-0), math.rad(0)), 0.3)
  3515.       end
  3516.         Effects.Sphere.Create(maincolor, ra.CFrame * CFrame.new(0,-2,0) , 85, 85, 85, 1.1, 1.1, 1.1, 0.02)
  3517.         Effects.Ring.Create(maincolor, ra.CFrame * CFrame.new(0,-2,0) , 2, 2, 2, 1.1, 1.1, 1.1, 0.03)
  3518.         for i = 0, 2 do
  3519.             SphereAura(2, 0.2, "Add", ra.CFrame * CFrame.Angles(math.rad(-90 + math.random(-20, 20)), math.rad(math.random(-20, 20)), math.rad(math.random(-20, 20))), 0.5, 0.5, 5, -0.005, maincolor, 0)
  3520.             end
  3521.         coroutine.resume(coroutine.create(function()
  3522.         for i = 0,1.8,0.1 do
  3523.             swait()
  3524.             hum.CameraOffset = Vector3.new(Mrandom(-1,1),0,Mrandom(-1,1))
  3525.         end
  3526.         for i = 0,1.8,0.1 do
  3527.             swait()
  3528.         hum.CameraOffset = Vector3.new(0,0,0)
  3529.         end
  3530.       end))
  3531.         HitboxFunction(ra.CFrame, 0.01, 1, 1, 1, 7, 24, 36, 3, "Normal")
  3532.     for i = 0, 1.2, 0.1 do
  3533.         swait()
  3534.         rootj.C0 = clerp(rootj.C0, RootCF * CFrame.new(0, -0.5, 0) * angles(math.rad(5), math.rad(0), math.rad(-35)), 0.3)
  3535.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(math.rad(10), math.rad(0), math.rad(0)), 0.1)
  3536.         RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, -0.8) * angles(math.rad(25), math.rad(0), math.rad(10)), 0.1)
  3537.         LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-25), math.rad(0), math.rad(-10)), 0.3)
  3538.         RH.C0 = clerp(RH.C0, CFrame.new(1, -1, 0) * RHCF * angles(math.rad(-2.5), math.rad(-25), math.rad(-0)), 0.3)
  3539.         LH.C0 = clerp(LH.C0, CFrame.new(-1, -1, 0) * LHCF * angles(math.rad(-2.5), math.rad(-0), math.rad(0)), 0.3)
  3540.       end
  3541.       combo = 4
  3542.     end
  3543.     if combo == 4 and wait2 == false then
  3544.     for i = 0,1.2,0.1 do
  3545.         swait()
  3546.         rootj.C0 = clerp(rootj.C0, RootCF * CF(0, 0, -0.1 + 0.1 * Cos(sine / 20)) * angles(Rad(-20), Rad(0), Rad(0)), 0.15)
  3547.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(Rad(-20 - 2.5 * Sin(sine / 20)), Rad(0), Rad(0)), 0.3)
  3548.         RH.C0 = clerp(RH.C0, CF(1, -0.9 - 0.1 * Cos(sine / 20), 0.025 * Cos(sine / 20)) * RHCF * angles(Rad(-4.5), Rad(0), Rad(-20)), 0.15)
  3549.         LH.C0 = clerp(LH.C0, CF(-1, -0.9 - 0.1 * Cos(sine / 20), -.4 + 0.025 * Cos(sine / 20)) * LHCF * angles(Rad(-6.5), Rad(5 * Cos(sine / 20)), Rad(25)), 0.15)
  3550.         RW.C0 = clerp(RW.C0, CF(1.5, 0.5 + 0.05 * Sin(sine / 20), 0.025 * Cos(sine / 20)) * angles(Rad(200), Rad(0), Rad(25 - 2.5 * Sin(sine / 20))), 0.1)
  3551.         LW.C0 = clerp(LW.C0, CF(-1.5, 0.5 + 0.05 * Sin(sine / 20), 0.025 * Cos(sine / 20)) * angles(Rad(200), Rad(0), Rad(-25 + 2.5 * Sin(sine / 20))), 0.1)
  3552.     end
  3553. SphereAura(6, 0.3, "Add", root.CFrame * CF(0,-2,0) * angles(Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360))), 0.5, 0.5, 5, -0.005, maincolor, 0)
  3554.         SphereAura(6, 0.3, "Add", root.CFrame * CF(0,-2,0) * angles(Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360))), 0.5, 0.5, 5, -0.005, maincolor, 0)
  3555.         Effects.Sphere.Create(maincolor, root.CFrame * CFrame.new(0,-2,0) , 85, 85, 85, 15.1, 15.1, 15.1, 0.01)
  3556.     CreateSound("331666100", char, 10, 1)
  3557.         for i, v in pairs(FindNearestHead(tors.CFrame.p, 14.5)) do
  3558.         if v:FindFirstChild("Head") then
  3559.             SoulSteal(v)
  3560.             Eviscerate(v)
  3561.         end
  3562.     end
  3563.     coroutine.resume(coroutine.create(function()
  3564.         for i = 0,1.8,0.1 do
  3565.             swait()
  3566.             hum.CameraOffset = Vector3.new(Mrandom(-1,1),0,Mrandom(-1,1))
  3567.         end
  3568.         for i = 0,1.8,0.1 do
  3569.             swait()
  3570.         hum.CameraOffset = Vector3.new(0,0,0)
  3571.         end
  3572.       end))
  3573.     for i = 1,4.7,0.1 do
  3574.     rootj.C0 = clerp(rootj.C0, RootCF * CF(0, 0, -1.4 + 0.1 * Cos(sine / 20)) * angles(Rad(45), Rad(0), Rad(0)), 0.15)
  3575.     tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(Rad(35), Rad(0), Rad(0)), 0.3)
  3576.     RH.C0 = clerp(RH.C0, CF(1, .4 - 0.1 * Cos(sine / 20), -.6 + 0.025 * Cos(sine / 20)) * RHCF * angles(Rad(-5), Rad(0), Rad(45)), 0.15)
  3577.     LH.C0 = clerp(LH.C0, CF(-1, -0.6 - 0.1 * Cos(sine / 20), 0.025 * Cos(sine / 20)) * LHCF * angles(Rad(-5), Rad(0), Rad(-0)), 0.15)
  3578.     RW.C0 = clerp(RW.C0, CF(1.2, 0.1 + 0.05 * Sin(sine / 30), -.4 + 0.025 * Cos(sine / 20)) * angles(Rad(65), Rad(0), Rad(-34)), 0.1)
  3579.     LW.C0 = clerp(LW.C0, CF(-1.2, 0.1 + 0.05 * Sin(sine / 30), -.4 + 0.025 * Cos(sine / 20)) * angles(Rad(65), Rad(0), Rad(34)), 0.1)
  3580.     end
  3581.       wait(.6)
  3582.     combo = 1
  3583.     end
  3584.     hum.WalkSpeed = 16
  3585.     wait2 = false
  3586.     attack = false
  3587.     end
  3588. end)
  3589. function Destruction()
  3590.     attack = true
  3591.     local Ring1 = Instance.new("Part", char)
  3592.     Ring1.Anchored = true
  3593.     Ring1.BrickColor = maincolor
  3594.     Ring1.CanCollide = false
  3595.     Ring1.FormFactor = 3
  3596.     Ring1.Name = "Ring"
  3597.     Ring1.Material = "Neon"
  3598.     Ring1.Size = Vector3.new(1, 0.05, 1)
  3599.     Ring1.Transparency = 1
  3600.     Ring1.TopSurface = 0
  3601.     Ring1.BottomSurface = 0
  3602.     local Ring1Mesh = Instance.new("SpecialMesh", Ring1)
  3603.     Ring1Mesh.MeshType = "Brick"
  3604.     Ring1Mesh.Name = "SizeMesh"
  3605.     Ring1Mesh.Scale = Vector3.new(0, 1, 0)
  3606.     local InnerRing1 = Ring1:Clone()
  3607.     InnerRing1.Parent = char
  3608.     InnerRing1.Transparency = 0
  3609.     InnerRing1.BrickColor = BrickColor.new("New Yeller")
  3610.     InnerRing1.Size = Vector3.new(1, 1, 1)
  3611.     local InnerRing1Mesh = InnerRing1.SizeMesh
  3612.     InnerRing1Mesh.Scale = Vector3.new(0, 0, 0)
  3613.     InnerRing1Mesh.MeshType = "Sphere"
  3614.     Ring1:Destroy()
  3615.     for i = 0, 5, 0.1 do
  3616.         swait()
  3617.         SphereAura(7, 0.12, "Add", ra.CFrame * CF(0,-2,0) * angles(Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360))), 0.5, 0.5, 5, -0.005, maincolor, 0)
  3618.         SphereAura(7, 0.12, "Add", ra.CFrame * CF(0,-2,0) * angles(Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360))), 0.5, 0.5, 5, -0.005, BrickC("Institutional white"), 0)
  3619.         rootj.C0 = clerp(rootj.C0, RootCF * CF(0, 0, -0.1 + 0.1 * Cos(sine / 20)) * angles(Rad(5), Rad(0), Rad(0)), 0.15)
  3620.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(Rad(-4.5 * Sin(sine / 30)), Rad(0), Rad(0)), 0.3)
  3621.         RH.C0 = clerp(RH.C0, CF(1, -0.9 - 0.1 * Cos(sine / 20), 0.025 * Cos(sine / 20)) * RHCF * angles(Rad(-12.5 + 3 * Sin(sine / 20)), Rad(0), Rad(0 + 2.5 * Sin(sine / 20))), 0.15)
  3622.         LH.C0 = clerp(LH.C0, CF(-1, -0.9 - 0.1 * Cos(sine / 20), 0.025 * Cos(sine / 20)) * LHCF * angles(Rad(-2.5 + 3 * Sin(sine / 20)), Rad(0), Rad(0 + 2.5 * Sin(sine / 20))), 0.15)
  3623.         RW.C0 = clerp(RW.C0, CF(1.1, 0.5 + 0.05 * Sin(sine / 30), 0.025 * Cos(sine / 20)) * angles(Rad(90), Rad(0), Rad(-25)), 0.1)
  3624.         LW.C0 = clerp(LW.C0, CF(-1.1, 0.5 + 0.05 * Sin(sine / 30), 0.025 * Cos(sine / 20)) * angles(Rad(90), Rad(0), Rad(25)), 0.1)
  3625.         root.CFrame = FaceMouse()[1]
  3626.     end
  3627.     InnerRing1.Transparency = 1
  3628.     InnerRing1.CFrame = root.CFrame * CF(0, 0.5, 0) + root.CFrame.lookVector * 5
  3629.     CreateSound("294188875", char, 2.3, 1)
  3630.     local a = IT("Part", char)
  3631.     a.Name = "Direction"
  3632.     a.Anchored = true
  3633.     a.BrickColor = maincolor
  3634.     a.Material = "Neon"
  3635.     a.Transparency = 0
  3636.     a.Shape = "Cylinder"
  3637.     a.CanCollide = false
  3638.     local a2 = IT("Part", char)
  3639.     a2.Name = "Direction"
  3640.     a2.Anchored = true
  3641.     a2.BrickColor = maincolor
  3642.     a2.Color = maincolor.Color
  3643.     a2.Material = "Neon"
  3644.     a2.Transparency = 0.5
  3645.     a2.Shape = "Cylinder"
  3646.     a2.CanCollide = false
  3647.     local ba = IT("Part", char)
  3648.     ba.Name = "HitDirect"
  3649.     ba.Anchored = true
  3650.     ba.BrickColor = maincolor
  3651.     ba.Material = "Neon"
  3652.     ba.Transparency = 1
  3653.     ba.CanCollide = false
  3654.     local ray = Ray.new(InnerRing1.CFrame.p, (mouse.Hit.p - InnerRing1.CFrame.p).unit * 1000)
  3655.     local ignore = char
  3656.     local hit, position, normal = workspace:FindPartOnRay(ray, ignore)
  3657.     a.BottomSurface = 10
  3658.     a.TopSurface = 10
  3659.     a2.BottomSurface = 10
  3660.     a2.TopSurface = 10
  3661.     local distance = (InnerRing1.CFrame.p - position).magnitude
  3662.     a.Size = Vector3.new(distance, 1, 1)
  3663.     a.CFrame = CF(InnerRing1.CFrame.p, position) * CF(0, 0, -distance / 2)
  3664.     a2.Size = Vector3.new(distance, 1, 1)
  3665.     a2.CFrame = CF(InnerRing1.CFrame.p, position) * CF(0, 0, -distance / 2)
  3666.     ba.CFrame = CF(InnerRing1.CFrame.p, position) * CF(0, 0, -distance)
  3667.     a.CFrame = a.CFrame * angles(0, Rad(90), 0)
  3668.     a2.CFrame = a2.CFrame * angles(0, Rad(90), 0)
  3669.     game:GetService("Debris"):AddItem(a, 20)
  3670.     game:GetService("Debris"):AddItem(a2, 20)
  3671.     game:GetService("Debris"):AddItem(ba, 20)
  3672.     local msh = Instance.new("SpecialMesh", a)
  3673.     msh.MeshType = "Sphere"
  3674.     msh.Scale = Vector3.new(1, 25, 25)
  3675.     local msh2 = Instance.new("SpecialMesh", a2)
  3676.     msh2.MeshType = "Sphere"
  3677.     msh2.Scale = Vector3.new(1, 30, 30)
  3678.     for i = 0, 10, 0.1 do
  3679.         swait()
  3680.         root.CFrame = FaceMouse()[1]
  3681.         hum.CameraOffset = Vector3.new(Mrandom(-1,1),0,Mrandom(-1,1))
  3682.         a2.Color = maincolor.Color
  3683.         InnerRing1.CFrame = root.CFrame * CF(0, 0.5, 0) + root.CFrame.lookVector * 4
  3684.         ray = Ray.new(InnerRing1.CFrame.p, (mouse.Hit.p - InnerRing1.CFrame.p).unit * 1000)
  3685.         hit, position, normal = workspace:FindPartOnRay(ray, ignore)
  3686.         distance = (InnerRing1.CFrame.p - position).magnitude
  3687.         a.Size = Vector3.new(distance, 1, 1)
  3688.         a.CFrame = CF(InnerRing1.CFrame.p, position) * CF(0, 0, -distance / 2)
  3689.         a2.Size = Vector3.new(distance, 1, 1)
  3690.         a2.CFrame = CF(InnerRing1.CFrame.p, position) * CF(0, 0, -distance / 2)
  3691.         ba.CFrame = CF(InnerRing1.CFrame.p, position) * CF(0, 0, -distance)
  3692.         a.CFrame = a.CFrame * angles(0, Rad(90), 0)
  3693.         a2.CFrame = a2.CFrame * angles(0, Rad(90), 0)
  3694.         msh.Scale = msh.Scale - Vector3.new(0, 0.25, 0.25)
  3695.         msh2.Scale = msh2.Scale - Vector3.new(0, 0.3, 0.3)
  3696.         SphereAura(5, 0.15, "Add", ba.CFrame * angles(Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360))), 15, 15, 25, -0.15, maincolor, 0)
  3697.         SphereAura(5, 0.15, "Add", ba.CFrame * angles(Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360)), Rad(Mrandom(-360, 360))), 15, 15, 25, -0.15, maincolor, 0)
  3698.         for i, v in pairs(FindNearestHead(ba.CFrame.p, 14.5)) do
  3699.         if v:FindFirstChild("Head") then
  3700.             Eviscerate(v)
  3701.             SoulSteal(v)
  3702.         end
  3703.     end
  3704.     end
  3705.     a:Destroy()
  3706.     a2:Destroy()
  3707.     ba:Destroy()
  3708.     InnerRing1:Destroy()
  3709.     attack = false
  3710.     hum.CameraOffset = Vector3.new(0,0,0)
  3711. end
  3712. function BURN_IN_HELL()
  3713.     attack = true
  3714.     chatfunc("BURN....", BrickColor.random().Color)
  3715.     for i = 0,5.2,0.1 do
  3716.         swait()
  3717.         rootj.C0 = clerp(rootj.C0, RootCF * CF(0, 0, -0.1 + 0.1 * Cos(sine / 20)) * angles(Rad(-20), Rad(0), Rad(0)), 0.15)
  3718.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(Rad(-20 - 2.5 * Sin(sine / 20)), Rad(0), Rad(0)), 0.3)
  3719.         RH.C0 = clerp(RH.C0, CF(1, -0.9 - 0.1 * Cos(sine / 20), 0.025 * Cos(sine / 20)) * RHCF * angles(Rad(-4.5), Rad(0), Rad(-20)), 0.15)
  3720.         LH.C0 = clerp(LH.C0, CF(-1, -0.3 - 0.1 * Cos(sine / 20), -.4 + 0.025 * Cos(sine / 20)) * LHCF * angles(Rad(-6.5), Rad(5 * Cos(sine / 20)), Rad(25)), 0.15)
  3721.         RW.C0 = clerp(RW.C0, CF(1.5, 0.5 + 0.05 * Sin(sine / 20), 0.025 * Cos(sine / 20)) * angles(Rad(135), Rad(0), Rad(-45 - 2.5 * Sin(sine / 20))), 0.1)
  3722.         LW.C0 = clerp(LW.C0, CF(-1.5, 0.5 + 0.05 * Sin(sine / 20), 0.025 * Cos(sine / 20)) * angles(Rad(135), Rad(0), Rad(45 + 2.5 * Sin(sine / 20))), 0.1)
  3723.     end
  3724.     chatfunc("IN....", BrickColor.random().Color)
  3725.     wait(2)
  3726.     CreateSound("331666100", char, 10, 1)
  3727.     Effects.Sphere.Create(BrickColor.Random(), root.CFrame * CF(0, -1, 0), 2, 2, 2, 10.6, 10.6, 10.6, 0.05)
  3728.     Effects.Sphere.Create(BrickColor.Random(), root.CFrame * CF(0, -1, 0), 2, 2, 2, 10.6, 10.6, 10.6, 0.05)
  3729.     Effects.Sphere.Create(BrickColor.Random(), root.CFrame * CF(0, -1, 0), 2, 2, 2, 10.6, 10.6, 10.6, 0.05)
  3730.     Effects.Sphere.Create(BrickColor.Random(), root.CFrame * CF(0, -1, 0), 2, 2, 2, 10.6, 10.6, 10.6, 0.05)
  3731.     Effects.Sphere.Create(BrickColor.Random(), root.CFrame * CF(0, -1, 0), 2, 2, 2, 10.6, 35.6, 10.6, 0.05)
  3732.     Effects.Sphere.Create(BrickColor.Random(), root.CFrame * CF(0, -3, 0), 2, 2, 2, 150.6, .4, 150.6, 0.05)
  3733.     chatfunc("HELL!!!!!", BrickColor.random().Color)
  3734.     for i, v in pairs(FindNearestHead(tors.CFrame.p, 52.5)) do
  3735.         if v:FindFirstChild("Head") then
  3736.             Eviscerate(v)
  3737.             SoulSteal(v)
  3738.         end
  3739.     end
  3740.     coroutine.resume(coroutine.create(function()
  3741.         for i = 0,2.8,0.1 do
  3742.             swait()
  3743.             hum.CameraOffset = Vector3.new(Mrandom(-3,3),Mrandom(-3,3),Mrandom(-3,3))
  3744.         end
  3745.         for i = 0,1.8,0.1 do
  3746.             swait()
  3747.         hum.CameraOffset = Vector3.new(0,0,0)
  3748.         end
  3749.     end))
  3750.     for i = 0,3.7,0.1 do
  3751.         SphereAura(2.5, 0.75, "Add", root.CFrame * CFrame.new(math.random(-52.5, 52.5), -5, math.random(-52.5, 52.5)) * CFrame.Angles(math.rad(90 + math.rad(math.random(-45, 45))), math.rad(math.random(-45, 45)), math.rad(math.random(-45, 45))), 2.5, 2.5, 25, -0.025, BrickColor.random(), 0)
  3752.         SphereAura(2.5, 0.75, "Add", root.CFrame * CFrame.new(math.random(-52.5, 52.5), -5, math.random(-52.5, 52.5)) * CFrame.Angles(math.rad(90 + math.rad(math.random(-45, 45))), math.rad(math.random(-45, 45)), math.rad(math.random(-45, 45))), 2.5, 2.5, 25, -0.025, BrickColor.random(), 0)
  3753.         rootj.C0 = clerp(rootj.C0, RootCF * CF(0, 0, -0.1 + 0.1 * Cos(sine / 20)) * angles(Rad(20), Rad(0), Rad(0)), 0.15)
  3754.         tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(Rad(20 - 2.5 * Sin(sine / 20)), Rad(0), Rad(0)), 0.3)
  3755.         RH.C0 = clerp(RH.C0, CF(1, -0.9 - 0.1 * Cos(sine / 20), 0.025 * Cos(sine / 20)) * RHCF * angles(Rad(-4.5), Rad(0), Rad(20)), 0.15)
  3756.         LH.C0 = clerp(LH.C0, CF(-1, -0.9 - 0.1 * Cos(sine / 20), -.4 + 0.025 * Cos(sine / 20)) * LHCF * angles(Rad(-6.5), Rad(5 * Cos(sine / 20)), Rad(-25)), 0.15)
  3757.         RW.C0 = clerp(RW.C0, CF(1.5, 0.5 + 0.05 * Sin(sine / 20), 0.025 * Cos(sine / 20)) * angles(Rad(-40), Rad(0), Rad(25 - 2.5 * Sin(sine / 20))), 0.1)
  3758.         LW.C0 = clerp(LW.C0, CF(-1.5, 0.5 + 0.05 * Sin(sine / 20), 0.025 * Cos(sine / 20)) * angles(Rad(-40), Rad(0), Rad(-25 + 2.5 * Sin(sine / 20))), 0.1)
  3759.     end
  3760.     wait(.6)
  3761.     CreateSound("907332997", hed, 10, 1)
  3762.     attack = false
  3763. end
  3764. -------------------------------------------------------
  3765. --End Attacks N Stuff--
  3766. -------------------------------------------------------
  3767. mouse.KeyDown:connect(function(key)
  3768.     if attack == false then
  3769.         if key == 'f' and game.Players.LocalPlayer.Character.Torso:FindFirstChild(name) then
  3770.         Destruction()
  3771.         elseif key == 'r' and game.Players.LocalPlayer.Character.Torso:FindFirstChild(name) then
  3772.             BURN_IN_HELL()
  3773.         elseif key == 't' and game.Players.LocalPlayer.Character.Torso:FindFirstChild(name) then
  3774.             chatfunc("HM, HM, HAHAHAHAHAHA", BrickColor.random().Color)
  3775.             CreateSound("300208779", hed, 10, 1)
  3776.         end
  3777.         end
  3778. end)
  3779.  
  3780.  
  3781.  
  3782.  
  3783.  
  3784.  
  3785. -------------------------------------------------------
  3786. --Start Animations--
  3787. -------------------------------------------------------
  3788. local equipped = false
  3789. local idle = 0
  3790. local change = 1
  3791. local val = 0
  3792. local toim = 0
  3793. local idleanim = 0.4
  3794. hum.Animator.Parent = nil
  3795.  
  3796.  
  3797. function part(formfactor,parent,reflectance,transparency,brickcolor,name,size)
  3798. local fp=Instance.new("Part")
  3799. fp.formFactor=formfactor
  3800. fp.Parent=parent
  3801. fp.Reflectance=reflectance
  3802. fp.Transparency=transparency
  3803. fp.CanCollide=false
  3804. fp.Locked=true
  3805. fp.BrickColor=brickcolor
  3806. fp.Name=name
  3807. fp.Size=size
  3808. fp.Position=tors.Position
  3809. RemoveOutlines(fp)
  3810. fp.Material="SmoothPlastic"
  3811. fp:BreakJoints()
  3812. return fp
  3813. end
  3814.  
  3815. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3816. local mesh=Instance.new(Mesh)
  3817. mesh.Parent=part
  3818. if Mesh=="SpecialMesh" then
  3819. mesh.MeshType=meshtype
  3820. if meshid~="nil" then
  3821. mesh.MeshId="http://www.roblox.com/asset/?id="..meshid
  3822. end
  3823. end
  3824. mesh.Offset=offset
  3825. mesh.Scale=scale
  3826. return mesh
  3827. end
  3828.  
  3829. function MagicShockTrailAlt2(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, rottype)
  3830.     local prt = part(3, char, 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  3831.     prt.Anchored = true
  3832.     table.insert(NeonParts, 1, prt)
  3833.     prt.Material = "Neon"
  3834.     prt.CFrame = cframe
  3835. local msh = mesh("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  3836.     game:GetService("Debris"):AddItem(prt, 5)
  3837.     coroutine.resume(coroutine.create(function(Part, Mesh)
  3838.         local rtype = rottype
  3839.         for i = 0, 1, delay do
  3840.             swait()
  3841.             if rtype == 1 then
  3842.                 prt.CFrame = prt.CFrame * CFrame.Angles(0, 0, 0.1)
  3843.             elseif rtype == 2 then
  3844.                 prt.CFrame = prt.CFrame * CFrame.Angles(0, 0, -0.1)
  3845.             end
  3846.             prt.Transparency = i
  3847.             Mesh.Scale = Mesh.Scale + Vector3.new(x3, y3, z3)
  3848.         end
  3849.         Part.Parent = nil
  3850.         table.remove(NeonParts, 1)
  3851.     end), prt, msh)
  3852. end
  3853.  
  3854.  
  3855.  
  3856.  
  3857. coroutine.resume(coroutine.create(function()
  3858. repeat
  3859.     swait(2)
  3860.     if game.Players.LocalPlayer.Character.Torso:FindFirstChild(name) then
  3861.         for i,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  3862.             if v:IsA'Part' then
  3863.                 v.BrickColor = BrickColor.Random()
  3864.                 v.Material = Enum.Material.Neon
  3865.                
  3866.        
  3867.         end
  3868.     end
  3869.     end
  3870.    
  3871. until not game.Players.LocalPlayer.Character.Torso:FindFirstChild(name)
  3872. end))
  3873.  
  3874. for i,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  3875.     if v:IsA'Decal' or v:IsA'Shirt' or v:IsA'Pants' or v:IsA'Accessory' then
  3876.         v:Remove()
  3877.     end
  3878. end
  3879.  
  3880. coroutine.resume(coroutine.create(function()
  3881. repeat
  3882.     swait(2)
  3883. MagicShockTrailAlt2(maincolor, root.CFrame * CF(Mrandom(-15,15),-3,Mrandom(-15,15)) * angles(Rad(90 + Mrandom(-25, 25)),Rad(0),Rad(0)),1,.5,.5,-0.01,-0.01,7,0.1,Mrandom(1,2))
  3884. until not game.Players.LocalPlayer.Character.Torso:FindFirstChild(name)
  3885. end))
  3886.  
  3887.  
  3888. while true do
  3889.     swait()
  3890. for i, v in pairs(NeonParts) do
  3891.      v.BrickColor = BrickColor.Random()
  3892.         end
  3893. for i, v in pairs(NeonParts2) do
  3894.      v.BrickColor = BrickColor.Random()
  3895.         end
  3896. maincolor = BrickColor.Random()
  3897.  
  3898. if not char:FindFirstChild("Music") and game.Players.LocalPlayer.Character.Torso:FindFirstChild(name) then
  3899. if tecks2.Text == "there's no one around to help" then
  3900. local Music = Instance.new("Sound",char)
  3901. Music.Volume = 10
  3902. Music.TimePosition = 40
  3903. Music.SoundId = "rbxassetid://1280408510"
  3904. Music.Looped = true
  3905. Music.Pitch = 1 --Pitcher
  3906. Music.Name = "Music"
  3907. Music:Play()
  3908. end
  3909. if tecks2.Text == "u wot" then
  3910. local Music = Instance.new("Sound",char)
  3911. Music.Volume = 10
  3912. Music.TimePosition = 40
  3913. Music.SoundId = "rbxassetid://460874877"
  3914. Music.Looped = true
  3915. Music.Pitch = 1 --Pitcher
  3916. Music.Name = "Music"
  3917. Music:Play()
  3918. end
  3919. if tecks2.Text == "murder" then
  3920. local Music = Instance.new("Sound",char)
  3921. Music.Volume = 10
  3922. Music.TimePosition = 40
  3923. Music.SoundId = "rbxassetid://407749940"
  3924. Music.Looped = true
  3925. Music.Pitch = 1 --Pitcher
  3926. Music.Name = "Music"
  3927. Music:Play()
  3928. end
  3929. end
  3930.  
  3931. tecks2.TextStrokeColor3 = maincolor.Color
  3932.     sine = sine + change
  3933.     local torvel = (root.Velocity * Vector3.new(1, 0, 1)).magnitude
  3934.     local velderp = root.Velocity.y
  3935.     hitfloor, posfloor = rayCast(root.Position, CFrame.new(root.Position, root.Position - Vector3.new(0, 1, 0)).lookVector, 4, char)
  3936.     if equipped == true or equipped == false then
  3937.         if attack == false then
  3938.             idle = idle + 1
  3939.         else
  3940.             idle = 0
  3941.         end
  3942.         if 1 < root.Velocity.y and hitfloor == nil then
  3943.             Anim = "Jump"
  3944.             if attack == false then
  3945.                 rootj.C0 = clerp(rootj.C0, RootCF * angles(math.min(math.max(root.Velocity.Y/100,-Rad(65)),Rad(65)),0,0),0.3)
  3946.                 tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(Rad(-10), Rad(0), Rad(0)), 0.3)
  3947.                 RW.C0 = clerp(RW.C0, CF(1.5, 0.5, 0) * angles(math.min(math.max(root.Velocity.Y/100,-Rad(65)),Rad(65)),0,Rad(15)),0.3)
  3948.                 LW.C0 = clerp(LW.C0, CF(-1.5, 0.5, 0) * angles(math.min(math.max(root.Velocity.Y/100,-Rad(65)),Rad(65)),0,Rad(-15)),0.3)
  3949.                 LH.C0=clerp(LH.C0, CF(-1,-.4-0.1 * Cos(sine / 20), -.6) * LHCF * angles(Rad(-5), Rad(-0), Rad(20)), 0.15)
  3950.                 RH.C0=clerp(RH.C0, CF(1,-1-0.1 * Cos(sine / 20), -.3) * angles(Rad(0), Rad(90), Rad(0)), .3)
  3951.             end
  3952.         elseif -1 > root.Velocity.y and hitfloor == nil then
  3953.             Anim = "Fall"
  3954.             if attack == false then
  3955.                 rootj.C0 = clerp(rootj.C0, RootCF * angles(math.min(math.max(root.Velocity.Y/100,-Rad(65)),Rad(65)),0,0),0.3)
  3956.                 tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(Rad(10), Rad(0), Rad(0)), 0.3)
  3957.                 RW.C0 = clerp(RW.C0, CF(1.5, 0.5, 0) * angles(math.min(math.max(root.Velocity.Y/100,-Rad(65)),Rad(65)),0,Rad(30)),0.3)
  3958.                 LW.C0 = clerp(LW.C0, CF(-1.5, 0.5, 0) * angles(math.min(math.max(root.Velocity.Y/100,-Rad(65)),Rad(65)),0,Rad(-30)),0.3)
  3959.                 LH.C0 = clerp(LH.C0, CF(-1,-.4-0.1 * Cos(sine / 20), -.6) * LHCF * angles(Rad(-5), Rad(-0), Rad(20)), 0.15)
  3960.                 RH.C0 = clerp(RH.C0, CF(1,-1-0.1 * Cos(sine / 20), -.3) * angles(Rad(0), Rad(90), Rad(0)), .3)
  3961.             end
  3962.         elseif torvel < 1 and hitfloor ~= nil then
  3963.             Anim = "Idle"
  3964.             change = 1.9
  3965.             if attack == false then
  3966.                 rootj.C0 = clerp(rootj.C0, RootCF * CF(0, 0, -0.1 + 0.1 * Cos(sine / 20)) * angles(Rad(30), Rad(0), Rad(0)), 0.15)
  3967.                 tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(Rad(35 - 2.5 * Sin(sine / 20)), Rad(-5 * Cos(sine / 0.465)), Rad(-5 * Cos(sine / 0.465))), 0.3)
  3968.                 RH.C0 = clerp(RH.C0, CF(1, -1 - 0.1 * Cos(sine / 20), 0.025 * Cos(sine / 20)) * RHCF * angles(Rad(-7.5), Rad(0), Rad(30)), 0.15)
  3969.                 LH.C0 = clerp(LH.C0, CF(-1, -1 - 0.1 * Cos(sine / 20), 0.025 * Cos(sine / 20)) * LHCF * angles(Rad(-7.5), Rad(0), Rad(-30)), 0.15)
  3970.                 RW.C0 = clerp(RW.C0, CF(1.5, 0.5 + 0.05 * Sin(sine / 20), 0.025 * Cos(sine / 20)) * angles(Rad(35 - 5 * Cos(sine / 0.465)), Rad(-5 * Cos(sine / 0.465)), Rad(15 + 7 * Sin(sine / 25))), 0.1)
  3971.                 LW.C0 = clerp(LW.C0, CF(-1.5, 0.5 + 0.05 * Sin(sine / 20), 0.025 * Cos(sine / 20)) * angles(Rad(35 - 5 * Cos(sine / 0.465)), Rad(-5 * Cos(sine / 0.465)), Rad(-15 - 7 * Sin(sine / 25))), 0.1)
  3972.             end
  3973.         elseif tors.Velocity.magnitude < 50 and hitfloor ~= nil then
  3974.             Anim = "Walk"
  3975.             change = 1
  3976.             if attack == false then
  3977.                 rootj.C0 = clerp(rootj.C0, RootCF * CF(0, 0, -0.175 + 0.025 * Cos(sine / 3.5) + -Sin(sine / 3.5) / 7) * angles(Rad(15 - 2.5 * Cos(sine / 3.5)), Rad(0) - root.RotVelocity.Y / 75, Rad(4 * Cos(sine / 7))), 0.15)
  3978.                 tors.Neck.C0 = clerp(tors.Neck.C0, necko * angles(Rad(13 - 2.5 * Sin(sine / 7)), Rad(-5 * Cos(sine / 0.465)), Rad(-5 * Cos(sine / 0.465))), 0.3)
  3979.                 RH.C0 = clerp(RH.C0, CF(1, -0.925 - 0.5 * Cos(sine / 7) / 2, 0.5 * Cos(sine / 7) / 2) * angles(Rad(-15 - 5 * Cos(sine / 7)) - rl.RotVelocity.Y / 75 + -Sin(sine / 7) / 2.5, Rad(90 - 0.1 * Cos(sine / 7)), Rad(0)) * angles(Rad(0 + 0.1 * Cos(sine / 7)), Rad(0), Rad(15)), 0.3)
  3980.                 LH.C0 = clerp(LH.C0, CF(-1, -0.925 + 0.5 * Cos(sine / 7) / 2, -0.5 * Cos(sine / 7) / 2) * angles(Rad(-15 + 5 * Cos(sine / 7)) + ll.RotVelocity.Y / 75 + Sin(sine / 7) / 2.5, Rad(-90 - 0.1 * Cos(sine / 7)), Rad(0)) * angles(Rad(0 - 0.1 * Cos(sine / 7)), Rad(0), Rad(-15)), 0.3)
  3981.                 RW.C0 = clerp(RW.C0, CF(1.5, 0.5 + 0.05 * Sin(sine / 7), 0.025 * Cos(sine / 7)) * angles(Rad(65)  * Cos(sine / 7) , Rad(0), Rad(10 + 7 * Sin(sine / 7)) - ra.RotVelocity.Y / 75), 0.1)
  3982.                 LW.C0 = clerp(LW.C0, CF(-1.5, 0.5 + 0.05 * Sin(sine / 7), 0.025 * Cos(sine / 7)) * angles(Rad(-65)  * Cos(sine / 7) , Rad(0), Rad(-10 - 7 * Sin(sine / 7)) + la.RotVelocity.Y / 75), 0.1)
  3983.             end
  3984.         end
  3985.     end
  3986.     if 0 < #Effects then
  3987.         for e = 1, #Effects do
  3988.             if Effects[e] ~= nil then
  3989.                 local Thing = Effects[e]
  3990.                 if Thing ~= nil then
  3991.                     local Part = Thing[1]
  3992.                     local Mode = Thing[2]
  3993.                     local Delay = Thing[3]
  3994.                     local IncX = Thing[4]
  3995.                     local IncY = Thing[5]
  3996.                     local IncZ = Thing[6]
  3997.                     if 1 >= Thing[1].Transparency then
  3998.                         if Thing[2] == "Block1" then
  3999.                             Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  4000.                             local Mesh = Thing[1].Mesh
  4001.                             Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  4002.                             Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  4003.                         elseif Thing[2] == "Block2" then
  4004.                             Thing[1].CFrame = Thing[1].CFrame + Vector3.new(0, 0, 0)
  4005.                             local Mesh = Thing[7]
  4006.                             Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  4007.                             Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  4008.                         elseif Thing[2] == "Block3" then
  4009.                             Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)) + Vector3.new(0, 0.15, 0)
  4010.                             local Mesh = Thing[7]
  4011.                             Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  4012.                             Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  4013.                         elseif Thing[2] == "Cylinder" then
  4014.                             local Mesh = Thing[1].Mesh
  4015.                             Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  4016.                             Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  4017.                         elseif Thing[2] == "Blood" then
  4018.                             local Mesh = Thing[7]
  4019.                             Thing[1].CFrame = Thing[1].CFrame * Vector3.new(0, 0.5, 0)
  4020.                             Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  4021.                             Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  4022.                         elseif Thing[2] == "Elec" then
  4023.                             local Mesh = Thing[1].Mesh
  4024.                             Mesh.Scale = Mesh.Scale + Vector3.new(Thing[7], Thing[8], Thing[9])
  4025.                             Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  4026.                         elseif Thing[2] == "Disappear" then
  4027.                             Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  4028.                         elseif Thing[2] == "Shatter" then
  4029.                             Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  4030.                             Thing[4] = Thing[4] * CFrame.new(0, Thing[7], 0)
  4031.                             Thing[1].CFrame = Thing[4] * CFrame.fromEulerAnglesXYZ(Thing[6], 0, 0)
  4032.                             Thing[6] = Thing[6] + Thing[5]
  4033.                         end
  4034.                     else
  4035.                         Part.Parent = nil
  4036.                         table.remove(Effects, e)
  4037.                     end
  4038.                 end
  4039.             end
  4040.         end
  4041.     end
  4042. end
  4043. -------------------------------------------------------
  4044. --End Animations And Script--
  4045. -------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement