Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[Made by Dooven, Animated by Dooven, Got help from Dooven lol/ DOOVEN = NOW SUFLEO ON ROBLOX ]]--
- --[[This version is not done yet.]]--
- wait(1 / 60)
- Effects = { }
- local Player = game.Players.localPlayer
- local Character = Player.Character
- local Humanoid = Character.Humanoid
- local Mouse = Player:GetMouse()
- local LeftArm = Character["Left Arm"]
- local RightArm = Character["Right Arm"]
- local LeftLeg = Character["Left Leg"]
- local RightLeg = Character["Right Leg"]
- local Head = Character.Head
- local Torso = Character.Torso
- local Camera = game.Workspace.CurrentCamera
- local RootPart = Character.HumanoidRootPart
- local RootJoint = RootPart.RootJoint
- local attack = false
- local Anim = 'Idle'
- local attacktype = 1
- local Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
- local velocity = RootPart.Velocity.y
- local sine = 0
- local change = 1
- local Create = LoadLibrary("RbxUtility").Create
- local m = Create("Model"){
- Parent = Character,
- Name = "WeaponModel",
- }
- Humanoid.Animator.Parent = nil
- Character.Animate.Parent = nil
- local newMotor = function(part0, part1, c0, c1)
- local w = Create('Motor'){
- Parent = part0,
- Part0 = part0,
- Part1 = part1,
- C0 = c0,
- C1 = c1,
- }
- return w
- end
- function clerp(a, b, t)
- return a:lerp(b, t)
- end
- RootCF = CFrame.fromEulerAnglesXYZ(-1.57, 0, 3.14)
- NeckCF = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
- local RW = newMotor(Torso, RightArm, CFrame.new(1.5, 0, 0), CFrame.new(0, 0, 0))
- local LW = newMotor(Torso, LeftArm, CFrame.new(-1.5, 0, 0), CFrame.new(0, 0, 0))
- local RH = newMotor(Torso, RightLeg, CFrame.new(.5, -2, 0), CFrame.new(0, 0, 0))
- local LH = newMotor(Torso, LeftLeg, CFrame.new(-.5, -2, 0), CFrame.new(0, 0, 0))
- RootJoint.C1 = CFrame.new(0, 0, 0)
- RootJoint.C0 = CFrame.new(0, 0, 0)
- Torso.Neck.C1 = CFrame.new(0, 0, 0)
- Torso.Neck.C0 = CFrame.new(0, 1.5, 0)
- local rarmc1 = RW.C1
- local larmc1 = LW.C1
- local rlegc1 = RH.C1
- local llegc1 = LH.C1
- local resetc1 = false
- function PlayAnimationFromTable(table, speed, bool)
- RootJoint.C0 = clerp(RootJoint.C0, table[1], speed)
- Torso.Neck.C0 = clerp(Torso.Neck.C0, table[2], speed)
- RW.C0 = clerp(RW.C0, table[3], speed)
- LW.C0 = clerp(LW.C0, table[4], speed)
- RH.C0 = clerp(RH.C0, table[5], speed)
- LH.C0 = clerp(LH.C0, table[6], speed)
- if bool == true then
- if resetc1 == false then
- resetc1 = true
- RootJoint.C1 = RootJoint.C1
- Torso.Neck.C1 = Torso.Neck.C1
- RW.C1 = rarmc1
- LW.C1 = larmc1
- RH.C1 = rlegc1
- LH.C1 = llegc1
- end
- end
- end
- ArtificialHB = Create("BindableEvent", script){
- Parent = script,
- Name = "Heartbeat",
- }
- script:WaitForChild("Heartbeat")
- frame = 1 / 30
- tf = 0
- allowframeloss = false
- tossremainder = false
- lastframe = tick()
- script.Heartbeat:Fire()
- game:GetService("RunService").Heartbeat:connect(function(s, p)
- tf = tf + s
- if tf >= frame then
- if allowframeloss then
- script.Heartbeat:Fire()
- lastframe = tick()
- else
- for i = 1, math.floor(tf / frame) do
- script.Heartbeat:Fire()
- end
- lastframe = tick()
- end
- if tossremainder then
- tf = 0
- else
- tf = tf - frame * math.floor(tf / frame)
- end
- end
- end)
- function swait(num)
- if num == 0 or num == nil then
- ArtificialHB.Event:wait()
- else
- for i = 0, num do
- ArtificialHB.Event:wait()
- end
- end
- end
- function RemoveOutlines(part)
- part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
- end
- CFuncs = {
- Part = {
- Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
- local Part = Create("Part"){
- Parent = Parent,
- Reflectance = Reflectance,
- Transparency = Transparency,
- CanCollide = false,
- Locked = true,
- BrickColor = BrickColor.new(tostring(BColor)),
- Name = Name,
- Size = Size,
- Material = Material,
- }
- RemoveOutlines(Part)
- return Part
- end;
- };
- Mesh = {
- Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
- local Msh = Create(Mesh){
- Parent = Part,
- Offset = OffSet,
- Scale = Scale,
- }
- if Mesh == "SpecialMesh" then
- Msh.MeshType = MeshType
- Msh.MeshId = MeshId
- end
- return Msh
- end;
- };
- Weld = {
- Create = function(Parent, Part0, Part1, C0, C1)
- local Weld = Create("Weld"){
- Parent = Parent,
- Part0 = Part0,
- Part1 = Part1,
- C0 = C0,
- C1 = C1,
- }
- return Weld
- end;
- };
- Sound = {
- Create = function(id, par, vol, pit)
- coroutine.resume(coroutine.create(function()
- local Sound = Create("Sound"){
- Volume = vol,
- Pitch = pit or 1,
- SoundId = "rbxassetid://" .. id,
- Parent = par or workspace,
- }
- Sound:play()
- game:GetService("Debris"):AddItem(Sound, 10)
- end))
- end;
- };
- Decal = {
- Create = function(Color, Texture, Transparency, Name, Parent)
- local Decal = Create("Decal"){
- Color3 = Color,
- Texture = "rbxassetid://" .. Texture,
- Transparency = Transparency,
- Name = Name,
- Parent = Parent,
- }
- return Decal
- end;
- };
- BillboardGui = {
- Create = function(Parent, Image, Position, Size)
- local BillPar = CFuncs.Part.Create(Parent, "SmoothPlastic", 0, 1, BrickColor.new("Black"), "BillboardGuiPart", Vector3.new(1, 1, 1))
- BillPar.CFrame = CFrame.new(Position)
- local Bill = Create("BillboardGui"){
- Parent = BillPar,
- Adornee = BillPar,
- Size = UDim2.new(1, 0, 1, 0),
- SizeOffset = Vector2.new(Size, Size),
- }
- local d = Create("ImageLabel", Bill){
- Parent = Bill,
- BackgroundTransparency = 1,
- Size = UDim2.new(1, 0, 1, 0),
- Image = "rbxassetid://" .. Image,
- }
- return BillPar
- end
- };
- ParticleEmitter = {
- Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
- local Particle = Create("ParticleEmitter"){
- Parent = Parent,
- Color = ColorSequence.new(Color1, Color2),
- LightEmission = LightEmission,
- Size = Size,
- Texture = Texture,
- Transparency = Transparency,
- ZOffset = ZOffset,
- Acceleration = Accel,
- Drag = Drag,
- LockedToPart = LockedToPart,
- VelocityInheritance = VelocityInheritance,
- EmissionDirection = EmissionDirection,
- Enabled = Enabled,
- Lifetime = LifeTime,
- Rate = Rate,
- Rotation = Rotation,
- RotSpeed = RotSpeed,
- Speed = Speed,
- VelocitySpread = VelocitySpread,
- }
- return Particle
- end;
- };
- CreateTemplate = {
- };
- }
- function rayCast(Position, Direction, Range, Ignore)
- return game:service("Workspace"):FindPartOnRay(Ray.new(Position, Direction.unit * (Range or 999.999)), Ignore)
- end
- FindNearestTorso = function(pos)
- local list = (game.Workspace:children())
- local torso = nil
- local dist = 1000
- local temp, human, temp2 = nil, nil, nil
- for x = 1, #list do
- temp2 = list[x]
- if temp2.className == "Model" and temp2.Name ~= Character.Name then
- temp = temp2:findFirstChild("Torso")
- human = temp2:findFirstChild("Humanoid")
- if temp ~= nil and human ~= nil and human.Health > 0 and (temp.Position - pos).magnitude < dist then
- local dohit = true
- if dohit == true then
- torso = temp
- dist = (temp.Position - pos).magnitude
- end
- end
- end
- end
- return torso, dist
- end
- function Damage(Part, hit, minim, maxim, knockback, Type, Property, Delay, HitSound, HitPitch)
- if hit.Parent == nil then
- return
- end
- local h = hit.Parent:FindFirstChild("Humanoid")
- for _, v in pairs(hit.Parent:children()) do
- if v:IsA("Humanoid") then
- h = v
- end
- end
- if h ~= nil and hit.Parent.Name ~= Character.Name and hit.Parent:FindFirstChild("Torso") ~= nil then
- if hit.Parent:findFirstChild("DebounceHit") ~= nil then
- if hit.Parent.DebounceHit.Value == true then
- return
- end
- end
- local c = Create("ObjectValue"){
- Name = "creator",
- Value = game:service("Players").LocalPlayer,
- Parent = h,
- }
- game:GetService("Debris"):AddItem(c, .5)
- if HitSound ~= nil and HitPitch ~= nil then
- CFuncs.Sound.Create(HitSound, hit, 1, HitPitch)
- end
- local Damage = math.random(minim, maxim)
- local blocked = false
- local block = hit.Parent:findFirstChild("Block")
- if block ~= nil then
- if block.className == "IntValue" then
- if block.Value > 0 then
- blocked = true
- block.Value = block.Value - 1
- print(block.Value)
- end
- end
- end
- if blocked == false then
- h.Health = h.Health - Damage
- ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, BrickColor.new("Really black").Color)
- else
- h.Health = h.Health - (Damage / 2)
- ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, BrickColor.new("Really black").Color)
- end
- if Type == "Knockdown" then
- local hum = hit.Parent.Humanoid
- hum.PlatformStand = true
- coroutine.resume(coroutine.create(function(HHumanoid)
- swait(1)
- HHumanoid.PlatformStand = false
- end), hum)
- local angle = (hit.Position - (Property.Position + Vector3.new(0, 0, 0))).unit
- local bodvol = Create("BodyVelocity"){
- velocity = angle * knockback,
- P = 5000,
- maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
- Parent = hit,
- }
- local rl = Create("BodyAngularVelocity"){
- P = 3000,
- maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000,
- angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)),
- Parent = hit,
- }
- game:GetService("Debris"):AddItem(bodvol, .5)
- game:GetService("Debris"):AddItem(rl, .5)
- elseif Type == "Normal" then
- local vp = Create("BodyVelocity"){
- P = 500,
- maxForce = Vector3.new(math.huge, 0, math.huge),
- velocity = Property.CFrame.lookVector * knockback + Property.Velocity / 1.05,
- }
- if knockback > 0 then
- vp.Parent = hit.Parent.Torso
- end
- game:GetService("Debris"):AddItem(vp, .5)
- elseif Type == "Up" then
- local bodyVelocity = Create("BodyVelocity"){
- velocity = Vector3.new(0, 20, 0),
- P = 5000,
- maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
- Parent = hit,
- }
- game:GetService("Debris"):AddItem(bodyVelocity, .5)
- elseif Type == "DarkUp" then
- coroutine.resume(coroutine.create(function()
- for i = 0, 1, 0.1 do
- swait()
- Effects.Block.Create(BrickColor.new("Black"), hit.Parent.Torso.CFrame, 5, 5, 5, 1, 1, 1, .08, 1)
- end
- end))
- local bodyVelocity = Create("BodyVelocity"){
- velocity = Vector3.new(0, 20, 0),
- P = 5000,
- maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
- Parent = hit,
- }
- game:GetService("Debris"):AddItem(bodyVelocity, 1)
- elseif Type == "Snare" then
- local bp = Create("BodyPosition"){
- P = 2000,
- D = 100,
- maxForce = Vector3.new(math.huge, math.huge, math.huge),
- position = hit.Parent.Torso.Position,
- Parent = hit.Parent.Torso,
- }
- game:GetService("Debris"):AddItem(bp, 1)
- elseif Type == "Freeze" then
- local BodPos = Create("BodyPosition"){
- P = 50000,
- D = 1000,
- maxForce = Vector3.new(math.huge, math.huge, math.huge),
- position = hit.Parent.Torso.Position,
- Parent = hit.Parent.Torso,
- }
- local BodGy = Create("BodyGyro") {
- maxTorque = Vector3.new(4e+005, 4e+005, 4e+005) * math.huge ,
- P = 20e+003,
- Parent = hit.Parent.Torso,
- cframe = hit.Parent.Torso.CFrame,
- }
- hit.Parent.Torso.Anchored = true
- coroutine.resume(coroutine.create(function(Part)
- swait(1.5)
- Part.Anchored = false
- end), hit.Parent.Torso)
- game:GetService("Debris"):AddItem(BodPos, 3)
- game:GetService("Debris"):AddItem(BodGy, 3)
- end
- local debounce = Create("BoolValue"){
- Name = "DebounceHit",
- Parent = hit.Parent,
- Value = true,
- }
- game:GetService("Debris"):AddItem(debounce, Delay)
- c = Create("ObjectValue"){
- Name = "creator",
- Value = Player,
- Parent = h,
- }
- game:GetService("Debris"):AddItem(c, .5)
- end
- end
- function ShowDamage(Pos, Text, Time, Color)
- local Rate = (1 / 30)
- local Pos = (Pos or Vector3.new(0, 0, 0))
- local Text = (Text or "")
- local Time = (Time or 2)
- local Color = (Color or Color3.new(1, 0, 1))
- local EffectPart = CFuncs.Part.Create(workspace, "SmoothPlastic", 0, 1, BrickColor.new(Color), "Effect", Vector3.new(0, 0, 0))
- EffectPart.Anchored = true
- local BillboardGui = Create("BillboardGui"){
- Size = UDim2.new(3, 0, 3, 0),
- Adornee = EffectPart,
- Parent = EffectPart,
- }
- local TextLabel = Create("TextLabel"){
- BackgroundTransparency = 1,
- Size = UDim2.new(1, 0, 1, 0),
- Text = Text,
- Font = "SciFi",
- TextColor3 = Color,
- TextScaled = true,
- Parent = BillboardGui,
- }
- game.Debris:AddItem(EffectPart, (Time))
- EffectPart.Parent = game:GetService("Workspace")
- delay(0, function()
- local Frames = (Time / Rate)
- for Frame = 1, Frames do
- wait(Rate)
- local Percent = (Frame / Frames)
- EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
- TextLabel.TextTransparency = Percent
- end
- if EffectPart and EffectPart.Parent then
- EffectPart:Destroy()
- end
- end)
- end
- function MagnitudeDamage(Part, Magnitude, MinimumDamage, MaximumDamage, KnockBack, Type, HitSound, HitPitch)
- for _, c in pairs(workspace:children()) do
- local hum = c:findFirstChild("Humanoid")
- if hum ~= nil then
- local head = c:findFirstChild("Torso")
- if head ~= nil then
- local targ = head.Position - Part.Position
- local mag = targ.magnitude
- if mag <= Magnitude and c.Name ~= Player.Name then
- Damage(head, head, MinimumDamage, MaximumDamage, KnockBack, Type, RootPart, .1, "rbxassetid://" .. HitSound, HitPitch)
- end
- end
- end
- end
- end
- Eyes=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Eyes",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- EyesWeld=CFuncs.Weld.Create(m,Character["Head"],Eyes,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.618240356, -0.205047607, -0.112569809, 0.622457802, -0.100289881, 0.776201248, 0.78085053, 0.0123003367, -0.624596894, 0.0530932099, 0.994882226, 0.0859678388))
- CFuncs.Mesh.Create("SpecialMesh",Eyes,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.551469743, 0.792951286))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.112380154))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000152587891, 0.00289916992, 0.0230607986, 1.00000024, 0, 7.4505806e-09, 0, 1.00000012, 0, 7.4505806e-09, 0, 1))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.962855279, 1))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000381469727, 0.00197601318, 0.0408353806, 1.00000024, 0, 7.4505806e-09, 0, 1.00000012, 0, 7.4505806e-09, 0, 1))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.551469743, 0.942192495))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000923156738, 0.00115203857, 0.0240421295, 1.00000024, 0, 7.4505806e-09, 0, 1.00000012, 0, 7.4505806e-09, 0, 1))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.551469743, 0.41715157))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0194702148, 0.167007446, -0.0252456665, -0.935012698, 0.3486678, -0.0646721497, -0.287122965, -0.637329817, 0.715102255, 0.208115667, 0.68719852, 0.696021914))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0194549561, 0.154598236, -0.00727081299, -0.935012698, 0.3486678, -0.0646721944, -0.13814947, -0.190185279, 0.971979618, 0.326598257, 0.917747498, 0.225994125))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0193786621, 0.153402805, -0.00815582275, -0.935012639, 0.348667979, -0.0646719337, -0.0440514237, 0.0667571723, 0.996796489, 0.351868272, 0.934865952, -0.0470593199))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0195465088, 0.155891418, 0.0222167969, -0.935012698, 0.3486678, -0.0646721497, 0.168927848, 0.59829253, 0.783268631, 0.311793387, 0.721441031, -0.618310452))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0200653076, 0.159065247, 0.0251731873, -0.935012639, 0.348668039, -0.0646710694, 0.203811035, 0.677616239, 0.706610203, 0.290194392, 0.647508442, -0.7046417))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0197143555, 0.16040802, -0.0288314819, -0.935013056, 0.348667264, -0.0646714568, -0.219659165, -0.426292807, 0.877510369, 0.27839002, 0.834688962, 0.475177288))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0191955566, 0.164710999, -0.0232658386, -0.935012519, 0.348668516, -0.0646709353, -0.261176467, -0.553734183, 0.790673971, 0.239872634, 0.756180584, 0.608812392))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Bright red","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0193634033, -0.119659424, 0.0572967529, -0.935012639, 0.348668039, -0.0646710694, -0.201513216, -0.672482133, -0.712152123, -0.291794777, -0.652839005, 0.699040174))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.542603433, 0.519640386))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0193481445, 0.15450573, -0.00392913818, -0.935012817, 0.348667562, -0.0646715239, -0.0995154977, -0.0829494894, 0.991572618, 0.340364665, 0.933568835, 0.112256788))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0195007324, 0.162620544, 0.0198860168, -0.935012519, 0.348668516, -0.0646709353, 0.247428313, 0.772093296, 0.585364699, 0.254030049, 0.531321585, -0.808186948))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0196380615, 0.156791687, -0.0296478271, -0.935012937, 0.348667383, -0.0646722764, -0.179441616, -0.307898223, 0.934344411, 0.305862904, 0.885228872, 0.350454241))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0194244385, 0.155309677, -0.0188446045, -0.935012579, 0.348668158, -0.0646717027, -0.158706367, -0.24835512, 0.955579579, 0.317118585, 0.903742611, 0.287551045))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0195617676, 0.154602051, 0.0106735229, -0.935012698, 0.3486678, -0.0646721497, 0.148682714, 0.55102551, 0.821136117, 0.321939647, 0.758156955, -0.567056477))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Bright red","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0194549561, -0.132400513, -0.0974617004, -0.935012639, 0.348668039, -0.0646710694, -0.201513216, -0.672482133, -0.712152123, -0.291794777, -0.652839005, 0.699040174))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.542603433, 0.519640386))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0195159912, 0.154201508, -0.000259399414, -0.935012698, 0.348667562, -0.0646723658, 0.126938075, 0.499373406, 0.857037544, 0.331116855, 0.793131351, -0.511179507))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Bright red","Part",Vector3.new(0.0500000007, 0.0575407743, 0.288772166))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0194396973, -0.0722465515, -0.0178985596, -0.935012639, 0.348668039, -0.0646710694, -0.201513216, -0.672482133, -0.712152123, -0.291794777, -0.652839005, 0.699040174))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 1, 1))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Bright red","Part",Vector3.new(0.0500000007, 0.0514231995, 0.149240747))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0192871094, -0.123607635, -0.0167160034, -0.935012639, 0.348668039, -0.0646710694, -0.201513216, -0.672482133, -0.712152123, -0.291794777, -0.652839005, 0.699040174))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 1, 1))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0196990967, 0.153768539, -6.86645508e-05, -0.935012937, 0.348667562, -0.0646707565, 0.0803531334, 0.385940075, 0.919017792, 0.345390648, 0.854096711, -0.388875216))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0197296143, 0.152765751, 0.000679016113, -0.935013115, 0.348666906, -0.0646717846, -0.0166936796, 0.138891891, 0.990166962, 0.354220688, 0.92689842, -0.124045029))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Bright red","Part",Vector3.new(0.0500000007, 0.0691553429, 0.370585144))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0196533203, -0.00574874878, -0.016784668, -0.935012639, 0.348668039, -0.0646710694, -0.201513216, -0.672482133, -0.712152123, -0.291794777, -0.652839005, 0.699040174))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 1, 1))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0195617676, 0.196342468, 0.027469635, -0.935012698, 0.348667562, -0.0646723658, 0.335643291, 0.811297119, -0.478686303, -0.114433952, -0.469284743, -0.875600994))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0195617676, 0.182136536, 0.0201350451, -0.935012817, 0.348667711, -0.0646713302, 0.353552043, 0.930684924, -0.0939515606, 0.0274306498, -0.110710688, -0.993474245))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0196228027, 0.167327881, 0.0283203125, -0.935012937, 0.348667562, -0.0646721125, 0.293776393, 0.863753498, 0.409420937, 0.198612452, 0.363814473, -0.91005069))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Bright red","Part",Vector3.new(0.0500000007, 0.0575407743, 0.248944774))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0192718506, -0.0959281921, -0.0204048157, -0.935012639, 0.348668039, -0.0646710694, -0.201513216, -0.672482133, -0.712152123, -0.291794777, -0.652839005, 0.699040174))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 1, 1))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0196685791, 0.16576004, 0.0182571411, -0.935013056, 0.348667264, -0.0646714568, 0.279914349, 0.837639928, 0.469049752, 0.21771355, 0.420464903, -0.880800784))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0196228027, 0.174331665, 0.0317001343, -0.935012758, 0.3486678, -0.0646714121, 0.329992443, 0.922269821, 0.201305106, 0.129832968, 0.166881561, -0.977391481))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0195617676, 0.191215515, 0.0380592346, -0.935012817, 0.348667622, -0.0646707416, 0.349580407, 0.875662625, -0.333179384, -0.059539184, -0.334134728, -0.940643072))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0194091797, 0.200294495, 0.0212745667, -0.935012817, 0.34866792, -0.0646721572, 0.316797644, 0.739342332, -0.594148219, -0.159345597, -0.576024115, -0.801751494))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Bright red","Part",Vector3.new(0.0500000007, 0.0691553429, 0.334443599))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0197296143, -0.0416488647, -0.0186004639, -0.935012639, 0.348668039, -0.0646710694, -0.201513216, -0.672482133, -0.712152123, -0.291794777, -0.652839005, 0.699040174))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 1, 1))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0196685791, 0.17024231, 0.0305252075, -0.935012877, 0.348667473, -0.0646719187, 0.312789202, 0.896825135, 0.312838703, 0.167075902, 0.272279233, -0.947602034))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.444396704))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0194244385, -0.0341491699, 0.0258560181, -0.935012698, 0.3486678, -0.0646721497, 0.202201918, 0.674024761, 0.710496604, 0.291317761, 0.65124625, -0.700722635))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 1))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0195617676, 0.178672791, 0.0239152908, -0.935012817, 0.348667562, -0.0646715239, 0.34645611, 0.937075853, 0.0430948064, 0.0756277815, 0.0178882368, -0.99697578))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0195617676, 0.183914185, 0.02902174, -0.935012937, 0.348667324, -0.0646719933, 0.354593456, 0.921261668, -0.159814328, 0.00385771133, -0.172360808, -0.985026479))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0194854736, 0.201969147, 0.0290527344, -0.935012698, 0.3486678, -0.0646721497, 0.305501342, 0.699405372, -0.646143377, -0.180057317, -0.623909533, -0.760471165))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.01953125, 0.186340332, 0.0387554169, -0.935012817, 0.348667294, -0.0646727607, 0.354117036, 0.908385992, -0.222342148, -0.0187757313, -0.230794683, -0.972821355))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0197906494, 0.153596878, 0.00395965576, -0.935012817, 0.348667294, -0.0646727607, 0.0243227556, 0.245001554, 0.969217658, 0.353779465, 0.904657722, -0.237559825))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Bright red","Part",Vector3.new(0.0500000007, 0.0575407743, 0.288772166))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.16583252, -0.361457825, -0.353553772, 0.425985277, -0.904682517, -0.00926069915, 0.613721788, 0.296471894, -0.731744528, 0.664742589, 0.306028962, 0.681516409))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 1, 1))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Bright red","Part",Vector3.new(0.0500000007, 0.0514231995, 0.149240747))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165771484, -0.412708282, -0.352287292, 0.425985277, -0.904682517, -0.00926069915, 0.613721788, 0.296471894, -0.731744528, 0.664742589, 0.306028962, 0.681516409))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 1, 1))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Bright red","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165725708, -0.42155838, -0.433021545, 0.425985277, -0.904682517, -0.00926069915, 0.613721788, 0.296471894, -0.731744528, 0.664742589, 0.306028962, 0.681516409))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.542603433, 0.519640386))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165908813, 0.026556015, 0.416908264, 0.425985068, -0.904682636, -0.00926122069, 0.231712297, 0.0991990119, 0.967713773, -0.874555051, -0.414377272, 0.251882821))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165924072, -0.0253314972, 0.374206543, 0.425985277, -0.904682457, -0.00926087797, 0.343467861, 0.152240977, 0.926743329, -0.836998701, -0.397959799, 0.375581414))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165893555, -0.0753631592, 0.34627533, 0.425985694, -0.904682279, -0.00926060975, 0.454933077, 0.205343127, 0.866528273, -0.782031, -0.373341501, 0.49904269))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165924072, 0.145582199, 0.434814453, 0.425985068, -0.904682636, -0.00926108658, -0.015056178, -0.0173236877, 0.999736845, -0.90460515, -0.425733507, -0.0210010707))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165924072, 0.29958725, 0.418239594, 0.425985396, -0.904682517, -0.00926057994, -0.326953053, -0.163479418, 0.930793345, -0.843586683, -0.393476665, -0.365429044))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165939331, 0.00036239624, 0.396207809, 0.425985068, -0.904682636, -0.00926122069, 0.287046313, 0.12543869, 0.949668467, -0.857986808, -0.40720287, 0.313120395))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.166046143, 0.382164001, 0.390678406, 0.425984919, -0.904682457, -0.00926112384, -0.491113901, -0.239821911, 0.837432206, -0.759831727, -0.352185279, -0.546463192))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165786743, -0.161968231, 0.271579742, 0.425984919, -0.904682457, -0.00926112384, 0.650588632, 0.299194992, 0.698009729, -0.628706276, -0.30336678, 0.71602875))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.166030884, 0.179267883, 0.442840576, 0.425985515, -0.904682457, -0.00926068425, -0.0850053653, -0.0502126701, 0.995114684, -0.900728047, -0.42311728, -0.0982931405))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.166015625, 0.407241821, 0.386966705, 0.425984919, -0.904682457, -0.00926112384, -0.538603961, -0.261808932, 0.80085063, -0.726940751, -0.336162388, -0.598792851))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165969849, 0.450920105, 0.358375549, 0.425985277, -0.904682517, -0.00926069915, -0.618950665, -0.29887864, 0.726341248, -0.659876525, -0.30367884, -0.687272251))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165863037, 0.355955124, 0.39408493, 0.425985098, -0.904682517, -0.0092612505, -0.439490616, -0.21586749, 0.87192291, -0.790812969, -0.367355883, -0.489556283))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.16569519, -0.127845764, 0.309494019, 0.425985277, -0.904682517, -0.00926069915, 0.573643446, 0.262166023, 0.776017368, -0.699621558, -0.335884333, 0.630643666))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Bright red","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165802002, -0.408800125, -0.27835083, 0.425985277, -0.904682517, -0.00926069915, 0.613721788, 0.296471894, -0.731744528, 0.664742589, 0.306028962, 0.681516409))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.542603433, 0.519640386))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.16595459, 0.50378418, 0.302417755, 0.425985277, -0.904682517, -0.00926069915, -0.716132581, -0.343423247, 0.607630372, -0.552893519, -0.252209842, -0.794166207))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165802002, 0.0761966705, 0.432109833, 0.425985307, -0.904682517, -0.00926096737, 0.129175931, 0.050686948, 0.990325689, -0.895461082, -0.423060387, 0.138454482))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165939331, 0.55865097, 0.235851288, 0.425985277, -0.904682457, -0.00926087797, -0.813313484, -0.38740623, 0.434094101, -0.396305531, -0.177385852, -0.900820136))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165924072, 0.230948448, 0.440208435, 0.425985277, -0.904682457, -0.00926087797, -0.188450933, -0.0987376422, 0.97710675, -0.884885907, -0.414487839, -0.212549567))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165908813, 0.623512268, -0.0317621231, 0.425985277, -0.904682457, -0.00926087797, -0.887757361, -0.415998489, -0.197060645, 0.174424276, 0.0921661556, -0.980347812))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165847778, 0.572368622, -0.218935013, 0.425984919, -0.904682457, -0.00926112384, -0.743055701, -0.344003677, -0.574047446, 0.516144753, 0.2514171, -0.818769872))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Bright red","Part",Vector3.new(0.0500000007, 0.0575407743, 0.248944774))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165725708, -0.385118484, -0.355949402, 0.425985277, -0.904682517, -0.00926069915, 0.613721788, 0.296471894, -0.731744528, 0.664742589, 0.306028962, 0.681516409))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 1, 1))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.16595459, 0.62487793, 0.00702476501, 0.425985485, -0.904682517, -0.00926080346, -0.902901292, -0.4244515, -0.06790407, 0.0575004667, 0.0372876599, -0.997648895))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165878296, 0.581001282, 0.196338654, 0.425985277, -0.904682457, -0.00926087797, -0.850022674, -0.403711259, 0.338347465, -0.309836328, -0.136259213, -0.940976024))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165969849, 0.619037628, 0.071680069, 0.425985307, -0.904682517, -0.00926096737, -0.902261972, -0.42555657, 0.0694657415, -0.0667859763, -0.0212356895, -0.997541606))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165878296, 0.557289124, -0.235401154, 0.425984919, -0.904682457, -0.00926112384, -0.70708698, -0.326522827, -0.627225399, 0.564415753, 0.273736984, -0.778782964))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Bright red","Part",Vector3.new(0.0500000007, 0.0691553429, 0.334443599))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165878296, -0.330831528, -0.354160309, 0.425985277, -0.904682517, -0.00926069915, 0.613721788, 0.296471894, -0.731744528, 0.664742589, 0.306028962, 0.681516409))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 1, 1))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165924072, 0.542358398, 0.251350403, 0.425985694, -0.904682279, -0.00926060975, -0.785154641, -0.374750912, 0.493045896, -0.449520737, -0.202759638, -0.869954169))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165878296, 0.601448059, 0.148950577, 0.425985307, -0.904682517, -0.00926096737, -0.880115509, -0.416745454, 0.227420866, -0.209603488, -0.0887272581, -0.973752737))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.444396704))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165939331, 0.255865097, 0.360664368, 0.425984919, -0.904682457, -0.00926112384, -0.615292132, -0.297194898, 0.730130494, -0.663289309, -0.305326462, -0.683245122))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 1))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.166030884, 0.59790802, -0.15938282, 0.425985098, -0.904682517, -0.0092612505, -0.80677855, -0.375212848, -0.456426024, 0.409445256, 0.201902255, -0.889713347))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165908813, 0.624729156, -0.0134315491, 0.425985277, -0.904682457, -0.00926087797, -0.897078395, -0.421031892, -0.134101704, 0.117419936, 0.0654329509, -0.990924478))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.166015625, 0.617404938, -0.0825147629, 0.425985396, -0.904682517, -0.00926057994, -0.861678541, -0.402573556, -0.308942705, 0.275766581, 0.139584616, -0.951035917))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.429117531, 0.447718978))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.167739868, -0.428405762, 0.0171737671, 0.425984919, -0.904682457, -0.00926112384, 0.904715717, 0.425897419, 0.0100687183, -0.00516412407, -0.0126676522, 0.9999066))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.551469743, 0.41715157))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.166870117, -0.429645538, -0.00687026978, 0.425984919, -0.904682457, -0.00926112384, 0.904715717, 0.425897419, 0.0100687183, -0.00516412407, -0.0126676522, 0.9999066))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.551469743, 0.792951286))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Bright red","Part",Vector3.new(0.0500000007, 0.0691553429, 0.370585144))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.165786743, -0.294996262, -0.352416992, 0.425985277, -0.904682517, -0.00926069915, 0.613721788, 0.296471894, -0.731744528, 0.664742589, 0.306028962, 0.681516409))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 1, 1))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.0500000007, 0.112380154))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.166976929, -0.426727295, 0.0162181854, 0.425984919, -0.904682457, -0.00926112384, 0.904715717, 0.425897419, 0.0100687183, -0.00516412407, -0.0126676522, 0.9999066))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.962855279, 1))
- Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.0500000007, 0.0500000007, 0.0500000007))
- PartWeld=CFuncs.Weld.Create(m,Eyes,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.167190552, -0.427684784, 0.0339565277, 0.425984919, -0.904682457, -0.00926112384, 0.904715717, 0.425897419, 0.0100687183, -0.00516412407, -0.0126676522, 0.9999066))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.0354643129, 0.551469743, 0.942192495))
- ----black claw rawr xd----
- Claw=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Claw",Vector3.new(0.0876175165, 0.0876175165, 0.0876175165))
- ClawWeld=CFuncs.Weld.Create(m,Character["Left Arm"],Claw,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.122917175, -0.305706024, 0.510696411, -0.343513936, 0.846692145, -0.406338096, -0.926026702, -0.377440572, -0.00362480362, -0.156437591, 0.375034779, 0.913715661))
- CFuncs.Mesh.Create("SpecialMesh",Claw,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1.60000002, 1.60000002, 1.60000002))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.0876175165, 0.438087523))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00379943848, 5.53131104e-05, 0.250022888, 0.707140744, 2.165162e-05, -0.707072914, 2.76160426e-05, 1, 5.82435168e-05, 0.707072973, -6.07084949e-05, 0.707140744))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(2, 2, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 1.53330636, 0.438087523))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.218521118, -0.738466263, 0.570577621, -0.529307067, 0.0243832599, 0.848080516, -0.845248878, 0.0713414773, -0.529590845, -0.0734162182, -0.997154057, -0.0171515513))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=283709822",Vector3.new(0, 0, 0),Vector3.new(0.219043732, 0.175234973, 0.175234973))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.0876175165, 0.438087523))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.528717041, -0.79234314, 0.714130402, 0.19398801, 0.964937031, 0.176820546, -0.309172153, -0.110923283, 0.944515705, 0.931011677, -0.237892702, 0.276813984))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1.5, 1.5, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.0876175165, 0.0876175165))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.27035141, -0.618881226, 0.418073654, 0.77330482, 0.50908494, 0.377932936, -0.41130954, -0.0508374237, 0.910077631, 0.482520193, -0.859213769, 0.170078829))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1.60000002, 1.60000002, 1.60000002))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.0876175165, 0.0876175165))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.284358978, -0.223083496, 0.396925926, 0.737200797, 0.508094132, 0.445394695, -0.529269934, 0.0244809687, 0.848100841, 0.42001164, -0.860953748, 0.286966473))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1.60000002, 1.60000002, 1.60000002))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.438087702, 0.0876175165))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.528575897, 0.538888931, -0.792236328, -0.194052055, -0.964956164, -0.176646039, 0.931016505, -0.237897113, 0.276794463, -0.309117824, -0.110747695, 0.944554031))
- CFuncs.Mesh.Create("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.5, 1.5, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.438087702, 0.0876175165))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.489208221, 0.442242146, -0.417114258, -0.205531329, -0.967548668, -0.146991879, 0.887971997, -0.247514144, 0.387613058, -0.411416888, -0.0508579649, 0.910027802))
- CFuncs.Mesh.Create("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.5, 1.5, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.0876175165, 0.438087523))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.228691101, -0.792327881, 0.163078308, 0.795552611, 0.514148057, 0.320544243, -0.30897516, -0.110819243, 0.944592357, 0.521182954, -0.850512445, 0.0706965774))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(2, 2, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 1.53330636, 0.438087523))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.614318848, -0.761919022, 0.580020905, -0.411430091, -0.0508495718, 0.910022318, -0.910449982, 0.0695042834, -0.407739729, -0.0425167605, -0.996285081, -0.0748919994))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=283709822",Vector3.new(0, 0, 0),Vector3.new(0.219043732, 0.175234973, 0.175234973))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.0876175165, 0.438087523))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.284328461, -0.223007202, 0.0463504791, 0.737200797, 0.508094132, 0.445394695, -0.529269934, 0.0244809687, 0.848100841, 0.42001164, -0.860953748, 0.286966473))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(2, 2, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.438087702, 0.0876175165))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.284339905, 0.0464334488, -0.222976685, -0.737242639, -0.50804913, -0.445377171, 0.419992805, -0.86098063, 0.286913425, -0.529227018, 0.02446956, 0.8481282))
- CFuncs.Mesh.Create("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.5, 1.5, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.0876175165, 0.438087523))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.485424042, -0.222869873, 0.329437256, 0.224220738, 0.968058288, 0.112199143, -0.529461265, 0.0243508108, 0.847985148, 0.818166971, -0.249540925, 0.518009365))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(2, 2, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.438087702, 0.0876175165))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.490550995, 0.441833496, -0.618942261, -0.205531329, -0.967548668, -0.146991879, 0.887971997, -0.247514144, 0.387613058, -0.411416888, -0.0508579649, 0.910027802))
- CFuncs.Mesh.Create("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.5, 1.5, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.438087702, 0.0876175165))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00379943848, 0.337585449, 0.000108718872, -0.707159102, -5.30295074e-05, 0.707054496, 0.707054496, -9.36691649e-05, 0.707159162, 2.87350267e-05, 1, 0.000103715109))
- CFuncs.Mesh.Create("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.5, 1.5, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 1.53330636, 0.438087523))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00442886353, -0.746963501, 0.0825653076, -5.68432733e-06, 1.00000012, 0.000139953569, -0.822792232, 7.48572638e-05, -0.568342507, -0.568342447, -0.00011837529, 0.822792232))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=283709822",Vector3.new(0, 0, 0),Vector3.new(0.219043732, 0.175234973, 0.175234973))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 1.53330636, 0.438087523))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.41293335, -0.762546539, 0.578742981, -0.411430091, -0.0508495718, 0.910022318, -0.910449982, 0.0695042834, -0.407739729, -0.0425167605, -0.996285081, -0.0748919994))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=283709822",Vector3.new(0, 0, 0),Vector3.new(0.219043732, 0.175234973, 0.175234973))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.0876175165, 0.438087523))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00393676758, 7.43865967e-05, 0.513000488, 0.707140744, 2.165162e-05, -0.707072914, 2.76160426e-05, 1, 5.82435168e-05, 0.707072973, -6.07084949e-05, 0.707140744))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1.5, 1.5, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.0876175165, 0.438087523))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.490665436, -0.61869812, 0.354256153, 0.205548763, 0.967519045, 0.14716354, -0.411502719, -0.050988365, 0.909981668, 0.887928367, -0.247603774, 0.387656242))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(2, 2, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.0876175165, 0.438087523))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.270410538, -0.619018555, 0.067522049, 0.77330482, 0.50908494, 0.377932936, -0.41130954, -0.0508374237, 0.910077631, 0.482520193, -0.859213769, 0.170078829))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(2, 2, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.0876175165, 0.438087523))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.528755188, -0.792160034, 0.451208115, 0.19398801, 0.964937031, 0.176820546, -0.309172153, -0.110923283, 0.944515705, 0.931011677, -0.237892702, 0.276813984))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(2, 2, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 1.53330636, 0.438087523))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.787979126, -0.850512505, 0.634971619, -0.309079051, -0.110821694, 0.944558024, -0.950749516, 0.0604377612, -0.304014206, -0.023395367, -0.992001176, -0.124043576))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=283709822",Vector3.new(0, 0, 0),Vector3.new(0.219043732, 0.175234973, 0.175234973))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.0876175165, 0.438087523))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.269132614, -0.41746521, 0.0667858124, 0.77330482, 0.50908494, 0.377932936, -0.41130954, -0.0508374237, 0.910077631, 0.482520193, -0.859213769, 0.170078829))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(2, 2, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.438087702, 0.0876175165))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.269111633, 0.0667953491, -0.417449951, -0.773328066, -0.50908041, -0.377891451, 0.482521504, -0.859217107, 0.170058727, -0.411264122, -0.0508294515, 0.910098553))
- CFuncs.Mesh.Create("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.5, 1.5, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.438087702, 0.0876175165))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.485448837, 0.417041779, -0.22315979, -0.22424072, -0.968069494, -0.11206232, 0.818271101, -0.249489605, 0.517869532, -0.529291928, 0.024430098, 0.848088682))
- CFuncs.Mesh.Create("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.5, 1.5, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.438087702, 0.0876175165))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.228742599, 0.163082123, -0.792327881, -0.795564651, -0.514077306, -0.320628554, 0.52112025, -0.850551367, 0.0706890523, -0.3090505, -0.110848151, 0.944564283))
- CFuncs.Mesh.Create("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.5, 1.5, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.0876175165, 0.438087523))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.489227295, -0.417358398, 0.354611397, 0.205548763, 0.967519045, 0.14716354, -0.411502719, -0.050988365, 0.909981668, 0.887928367, -0.247603774, 0.387656242))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(2, 2, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.0876175165, 0.0876175165))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.269079208, -0.417312622, 0.417324066, 0.77330482, 0.50908494, 0.377932936, -0.41130954, -0.0508374237, 0.910077631, 0.482520193, -0.859213769, 0.170078829))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1.60000002, 1.60000002, 1.60000002))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.438087702, 0.0876175165))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.270376205, 0.067527771, -0.619003296, -0.773328066, -0.50908041, -0.377891451, 0.482521504, -0.859217107, 0.170058727, -0.411264122, -0.0508294515, 0.910098553))
- CFuncs.Mesh.Create("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.5, 1.5, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.0876175165, 0.0876175165))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.228694916, -0.792251587, 0.513645172, 0.795552611, 0.514148057, 0.320544243, -0.30897516, -0.110819243, 0.944592357, 0.521182954, -0.850512445, 0.0706965774))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1.60000002, 1.60000002, 1.60000002))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.0876175165, 0.438087523))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.489154816, -0.417236328, 0.617554665, 0.205548763, 0.967519045, 0.14716354, -0.411502719, -0.050988365, 0.909981668, 0.887928367, -0.247603774, 0.387656242))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1.5, 1.5, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.0876175165, 0.438087523))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.485404968, -0.222961426, 0.592382431, 0.224220738, 0.968058288, 0.112199143, -0.529461265, 0.0243508108, 0.847985148, 0.818166971, -0.249540925, 0.518009365))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1.5, 1.5, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.0876175165, 0.0876175165, 0.438087523))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.490642548, -0.618743896, 0.617133141, 0.205548763, 0.967519045, 0.14716354, -0.411502719, -0.050988365, 0.909981668, 0.887928367, -0.247603774, 0.387656242))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1.5, 1.5, 1.5))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.26285255, 0.613322616, 0.700940132))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.133712769, -0.515075684, -0.623434305, 0.428351223, 0.870480835, 0.242443562, -0.411502421, -0.0509513058, 0.909983993, 0.804476619, -0.489558578, 0.336380035))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
- Part=CFuncs.Part.Create(m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.26285255, 0.613322616, 0.438087523))
- PartWeld=CFuncs.Weld.Create(m,Claw,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.133651733, -0.514984131, -0.404312611, 0.428351223, 0.870480835, 0.242443562, -0.411502421, -0.0509513058, 0.909983993, 0.804476619, -0.489558578, 0.336380035))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
- ----rip faic and shittt----
- for _,v in pairs(Character:children()) do
- if v:IsA("Shirt") then
- v.ShirtTemplate = "rbxassetid://"
- elseif v:IsA("Pants") then
- v.PantsTemplate = "rbxassetid://"
- elseif v:IsA("ShirtGraphic") then
- v:Remove()
- wait(.1)
- Torso.roblox:Remove()
- elseif v:IsA("Accessory") then
- v:Remove()
- end
- end
- local p = game.Players.LocalPlayer;
- local c = p.Character;
- local h = c:WaitForChild'Head';
- local f = h:WaitForChild'face';
- f.Texture = 'rbxassetid://';
- --------lolmusic---------
- local suc = Instance.new("Sound",Character.Torso)
- suc.SoundId = "rbxassetid://1196738854"
- suc.Looped = true
- suc.Pitch = 1
- suc.Volume = 1
- suc:Play()
- -----some important lol------
- --bodycolor--
- Character["Left Arm"].BrickColor = BrickColor.new("Really black")
- Character["Right Arm"].BrickColor = BrickColor.new("Really black")
- Character["Left Leg"].BrickColor = BrickColor.new("Really black")
- Character["Right Leg"].BrickColor = BrickColor.new("Really black")
- Character["Head"].BrickColor = BrickColor.new("Really black")
- Character.Torso.BrickColor = BrickColor.new("Really black")
- ----face----
- local p = game.Players.LocalPlayer;
- local c = p.Character;
- local h = c:WaitForChild'Head';
- local f = h:WaitForChild'face';
- f.Texture = 'rbxassetid://1196879135';
- ---chineese logo mayb-----
- Text=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Text",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- TextWeld=CFuncs.Weld.Create(m,Character["Right Arm"],Text,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.360580444, 0.495925903, 0.25579834, 3.04747414e-06, 0.98061496, -0.195944905, -1, 3.78997788e-06, 3.41440273e-06, 4.09084078e-06, 0.19594489, 0.980614901))
- CFuncs.Mesh.Create("BlockMesh",Text,"","",Vector3.new(0, 0, 0),Vector3.new(0.88676995, 0.220589519, 0.441178381))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.294403076, 0.000915527344, -0.188613892, 0.738208294, 0.000559799431, -0.674572706, -0.000664881547, 0.999999881, 0.00010225494, 0.674572587, 0.000373025483, 0.738208413))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.88676995, 0.220589519, 0.441178381))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0207824707, 0.858329058, -0.25402832, 0.000130871005, 0.999999762, -0.000658359611, -0.980616689, -6.62282105e-07, -0.195936292, -0.195936263, 0.00067124085, 0.980616391))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.882358313, 0.604415238, 0.580149591))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0207824707, 0.250129938, -0.253890991, 0.000130871005, 0.999999762, -0.000658359611, -0.980616689, -6.62282105e-07, -0.195936292, -0.195936263, 0.00067124085, 0.980616391))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.882358313, 0.604415238, 0.580149591))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.089214325, 0.000915527344, 0.373947144, -0.953106582, -0.000601652137, -0.302634537, -0.000663397717, 0.999999881, 0.000101232858, 0.302634418, 0.000297252729, -0.953106701))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.644121528, 0.220589519, 0.328677952))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.020904541, 0.817662716, 0.0765228271, 6.73843431e-07, -1, -2.27373675e-13, -0.980616689, -6.60782121e-07, -0.195936292, 0.195936307, 1.32030664e-07, -0.980616629))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.882358313, 0.604415238, 0.580149591))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.020904541, 0.858327866, 0.121231079, 6.73843431e-07, -1, -2.27373675e-13, -0.980616689, -6.60782121e-07, -0.195936292, 0.195936307, 1.32030664e-07, -0.980616629))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.882358313, 0.604415238, 0.580149591))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0207672119, 0.817662477, -0.298736572, 0.000130871005, 0.999999762, -0.000658359611, -0.980616689, -6.62282105e-07, -0.195936292, -0.195936263, 0.00067124085, 0.980616391))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.882358313, 0.604415238, 0.580149591))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.588470459, 0, -0.0927810669, -0.259102732, 1.14089653e-06, -0.965849817, -3.32995796e-07, 1, 1.27056705e-06, 0.965849817, 6.50831566e-07, -0.259102702))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.644121528, 0.220589519, 0.328677952))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0751109943, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.121741295, -0.373886108, 0.000915527344, -0.965780497, -0.000614691759, -0.259360522, -0.259360403, -0.000272099569, 0.965780616, -0.000664229272, 0.999999881, 0.000103361745))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.179678485, 0.220589191))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0693014264, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0974388123, 0, 0.0182189941, 0.973364174, -2.5338133e-07, 0.229264691, 2.11213603e-07, 1, 2.08465053e-07, -0.229264721, -1.54488816e-07, 0.973364174))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.220589519, 0.213971585))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.020904541, 0.250128746, 0.121078491, 6.73843431e-07, -1, -2.27373675e-13, -0.980616689, -6.60782121e-07, -0.195936292, 0.195936307, 1.32030664e-07, -0.980616629))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.882358313, 0.604415238, 0.580149591))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.297088623, 0.215293884, -0.000885009766, -0.741563797, 0.00053844566, 0.670882165, -0.670882404, -0.00039910819, -0.741563678, -0.000131537236, -0.999999762, 0.000657197786))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.611055255, 0.229529798, 0.220589191))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.640457153, 0, -0.0430221558, -0.342016608, 1.09283565e-06, -0.939693987, -2.21252208e-07, 1, 1.24349867e-06, 0.939694047, 6.3320681e-07, -0.342016578))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.88676995, 0.220589519, 0.441178381))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0751109943, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.534179688, 0.122924805, 0, -0.215301052, 1.14024965e-06, -0.976547718, -0.976547778, -2.61314995e-07, 0.215301007, -9.68975655e-09, 1, 1.1697698e-06))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.179678485, 0.220589191))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0644314513, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.163058281, -0.0113220215, 0, -0.979006648, 2.41625287e-07, -0.203828931, 0.203828931, 1.11445297e-06, -0.979006529, -9.39576239e-09, -1, -1.14030718e-06))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.106284358, 0.220589191))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0751800537, 0.000900268555, 0.363098145, -0.923217595, -0.000569557305, -0.384277433, -0.000658675563, 0.999999881, 0.000100301375, 0.384277314, 0.000345714099, -0.923217654))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.88676995, 0.220589519, 0.441178381))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.15322876, -0.345657349, -0.000915527344, 0.884048223, 0.000538488443, 0.467395604, -0.467395484, -0.000401002588, 0.884048402, 0.000663476763, -0.999999881, -0.000102818551))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.611055255, 0.229529798, 0.220589191))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0450363159, 0.00904846191, 0, -0.995778441, -1.16718297e-07, 0.0917902291, -0.0917902738, 1.12462612e-06, -0.995778322, 1.29953719e-08, -1, -1.13059218e-06))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.611055255, 0.229529798, 0.220589191))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0751109943, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0950307846, -0.00399780273, 1.52587891e-05, 0.991292238, -1.51383759e-07, 0.131680787, 0.131680802, 1.16644856e-06, -0.991292119, -3.53321639e-09, 1, 1.17622517e-06))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.179678485, 0.220589191))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0133514404, 0.265369415, 0.184234619, 6.73843431e-07, -1, -2.27373675e-13, -0.980616689, -6.60782121e-07, -0.195936292, 0.195936307, 1.32030664e-07, -0.980616629))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.641915858, 0.604415238, 0.580149591))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0207519531, 0.209465981, -0.316192627, 0.000130871005, 0.999999762, -0.000658359611, -0.980616689, -6.62282105e-07, -0.195936292, -0.195936263, 0.00067124085, 0.980616391))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.882358313, 0.604415238, 0.580149591))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0644314513, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.455200195, 0.161312103, -1.52587891e-05, 0.143302277, -1.17410355e-06, 0.989678979, -0.989678979, -1.73107082e-07, 0.143302262, 3.06840775e-09, -1, -1.18679236e-06))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.106284358, 0.220589191))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.596679688, -0.00693511963, 0, 0.426823378, -1.05005529e-06, 0.904335022, -0.904335082, -4.96462462e-07, 0.426823318, 7.80346454e-10, -1, -1.16150386e-06))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.611055255, 0.229529798, 0.220589191))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00300598145, 0, 0.032875061, -0.422307611, 1.0525348e-06, -0.906452596, -1.09173982e-07, 1, 1.21202129e-06, 0.906452656, 6.10806637e-07, -0.422307551))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.88676995, 0.220589519, 0.441178381))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0693014264, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.161422729, 0.000869750977, -0.285999298, 0.490063637, -0.000637340418, -0.871686459, 0.000130538712, 0.999999762, -0.000657768571, 0.871686697, 0.000208559664, 0.490063637))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.220589519, 0.213971585))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0644314513, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.103637695, 0.286060333, -0.000885009766, -0.512606084, 0.000631719769, 0.858623743, -0.858623981, -0.000223927578, -0.512606025, -0.000131553796, -0.999999762, 0.000657196273))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.106284358, 0.220589191))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.020904541, 0.209464788, 0.0497436523, 6.73843431e-07, -1, -2.27373675e-13, -0.980616689, -6.60782121e-07, -0.195936292, 0.195936307, 1.32030664e-07, -0.980616629))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.882358313, 0.604415238, 0.580149591))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.202163279, 0.263536245))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0206604004, 0.0706562996, 0.182769775, 6.73843431e-07, -1, -2.27373675e-13, -0.980616689, -6.60782121e-07, -0.195936292, 0.195936307, 1.32030664e-07, -0.980616629))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.882358313, 1, 1))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0693014264, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0873625278, 0.000900268555, 0.388916016, -0.986728132, -0.00063982018, -0.16237995, -0.000665167114, 0.999999881, 0.000101730082, 0.162379861, 0.000208389727, -0.986728311))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.220589519, 0.213971585))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.228485107, -1.52587891e-05, 0.631576538, -0.707341731, -8.41495194e-07, 0.706871748, -9.31922557e-07, 1, 2.57907459e-07, -0.706871808, -4.76321247e-07, -0.707341671))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.88676995, 0.220589519, 0.441178381))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0693014264, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.516113281, 0, -0.170440674, -0.117471084, 1.16459569e-06, -0.993076324, -5.27738223e-07, 1, 1.2351411e-06, 0.993076384, 6.69177894e-07, -0.117471069))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.220589519, 0.213971585))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.321746826, 0.000869750977, -0.236785889, 0.676855624, -0.000572804245, -0.736115634, 0.000130596556, 0.999999762, -0.000658061181, 0.736115873, 0.000349278213, 0.676855445))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.88676995, 0.220589519, 0.441178381))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0458602905, 1.52587891e-05, 0.00567626953, 0.996220589, -8.98884309e-08, 0.0868600681, 8.44644887e-08, 1, 6.61163995e-08, -0.0868600756, -5.8529622e-08, 0.996220529))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.644121528, 0.220589519, 0.328677952))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0817718506, 0.000915527344, 0.424514771, 0.381399393, 0.000557362044, 0.924410224, 0.000131373832, 0.999999762, -0.000657140918, -0.924410462, 0.000372076465, 0.381399274))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.88676995, 0.220589519, 0.441178381))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0619654022, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.254089355, 0.000869750977, -0.258148193, 0.610358775, -0.000600854575, -0.792124987, 0.000130549364, 0.999999762, -0.000657942204, 0.792125106, 0.000298169325, 0.610358596))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.644121528, 0.220589519, 0.328677952))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0644314513, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.16264236, -0.382141113, -0.000915527344, 0.982163012, 0.000632812211, 0.188030899, -0.188030809, -0.000226154865, 0.982163191, 0.000664048886, -0.999999881, -0.00010313277))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.106284358, 0.220589191))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0751109943, 0.0619653948, 0.0619653761))
- PartWeld=CFuncs.Weld.Create(m,Text,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.192718506, 0.27305603, 0.000885009766, 0.574030995, -0.000613659271, -0.81883347, -0.818833709, -0.00026954792, -0.574030876, 0.000131544512, 0.999999762, -0.000657213619))
- CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.179678485, 0.220589191))
- ----triangl----
- Triangle=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Black","Triangle",Vector3.new(0.0500000007, 0.610466659, 1.12701356))
- TriangleWeld=CFuncs.Weld.Create(m,Character["Torso"],Triangle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.483810425, -0.299041748, -0.0566956997, -0.0101730088, -5.36576863e-06, -0.999947786, 0.999947786, -1.1778809e-07, -0.0101729752, -6.31961328e-08, -1, 5.3667045e-06))
- CFuncs.Mesh.Create("SpecialMesh",Triangle,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.939178407, 1, 1))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Really black","Part",Vector3.new(0.0500000007, 0.375671327, 0.328712523))
- PartWeld=CFuncs.Weld.Create(m,Triangle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0234832764, -0.30531311, 0.117401123, -0.999999046, 3.35276127e-08, 1.27329258e-11, 3.35276127e-08, -0.999999046, 9.59232693e-14, -1.27329258e-11, -9.59232693e-14, 1))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.939178407, 1, 1))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.0500000007, 0.657425523, 1.12701356))
- PartWeld=CFuncs.Weld.Create(m,Triangle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.52587891e-05, -0.634140015, 1.43051147e-06, -0.999999046, 3.35276127e-08, 1.27329258e-11, 3.35276127e-08, -0.999999046, 9.59232693e-14, -1.27329258e-11, -9.59232693e-14, 1))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.939178407, 1, 1))
- Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Ghost grey","Part",Vector3.new(0.0500000007, 0.0939178318, 0.28175357))
- PartWeld=CFuncs.Weld.Create(m,Triangle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0281600952, -0.305358887, 0.117398262, -0.999999046, 3.35276127e-08, 1.27329258e-11, 3.35276127e-08, -0.999999046, 9.59232693e-14, -1.27329258e-11, -9.59232693e-14, 1))
- CFuncs.Mesh.Create("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.939178407, 1, 1))
- EffectModel = Create("Model"){
- Parent = Character,
- Name = "Effects",
- }
- Effects = {
- Block = {
- Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, Type)
- local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
- prt.Anchored = true
- prt.CFrame = cframe
- local msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
- game:GetService("Debris"):AddItem(prt, 10)
- if Type == 1 or Type == nil then
- table.insert(Effects, {
- prt,
- "Block1",
- delay,
- x3,
- y3,
- z3,
- msh
- })
- elseif Type == 2 then
- table.insert(Effects, {
- prt,
- "Block2",
- delay,
- x3,
- y3,
- z3,
- msh
- })
- end
- end;
- };
- Cylinder = {
- Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
- local prt = CFuncs.Part..Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new(0.2, 0.2, 0.2))
- prt.Anchored = true
- prt.CFrame = cframe
- local msh = CFuncs.Mesh.Create("CylinderMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
- game:GetService("Debris"):AddItem(prt, 2)
- Effects[#Effects + 1] = {
- prt,
- "Cylinder",
- delay,
- x3,
- y3,
- z3
- }
- end;
- };
- Head = {
- Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
- local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
- prt.Anchored = true
- prt.CFrame = cframe
- local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Head", "nil", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
- game:GetService("Debris"):AddItem(prt, 10)
- table.insert(Effects, {
- prt,
- "Cylinder",
- delay,
- x3,
- y3,
- z3,
- msh
- })
- end;
- };
- Sphere = {
- Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
- local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
- prt.Anchored = true
- prt.CFrame = cframe
- local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
- game:GetService("Debris"):AddItem(prt, 10)
- table.insert(Effects, {
- prt,
- "Cylinder",
- delay,
- x3,
- y3,
- z3,
- msh
- })
- end;
- };
- Elect = {
- Create = function(cff, x, y, z)
- local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, BrickColor.new("Lime green"), "Part", Vector3.new(1, 1, 1))
- prt.Anchored = true
- prt.CFrame = cff * CFrame.new(math.random(-x, x), math.random(-y, y), math.random(-z, z))
- prt.CFrame = CFrame.new(prt.Position)
- game:GetService("Debris"):AddItem(prt, 2)
- local xval = math.random() / 2
- local yval = math.random() / 2
- local zval = math.random() / 2
- local msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(xval, yval, zval))
- table.insert(Effects, {
- prt,
- "Elec",
- 0.1,
- x,
- y,
- z,
- xval,
- yval,
- zval
- })
- end;
- };
- Ring = {
- Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
- local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
- prt.Anchored = true
- prt.CFrame = cframe
- local msh = CFuncs.Mesh.Create("CylinderMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
- game:GetService("Debris"):AddItem(prt, 10)
- table.insert(Effects, {
- prt,
- "Cylinder",
- delay,
- x3,
- y3,
- z3,
- msh
- })
- end;
- };
- Wave = {
- Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
- local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
- prt.Anchored = true
- prt.CFrame = cframe
- local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://20329976", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
- game:GetService("Debris"):AddItem(prt, 10)
- table.insert(Effects, {
- prt,
- "Cylinder",
- delay,
- x3,
- y3,
- z3,
- msh
- })
- end;
- };
- Break = {
- Create = function(brickcolor, cframe, x1, y1, z1)
- local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
- prt.Anchored = true
- prt.CFrame = cframe * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
- local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
- local num = math.random(10, 50) / 1000
- game:GetService("Debris"):AddItem(prt, 10)
- table.insert(Effects, {
- prt,
- "Shatter",
- num,
- prt.CFrame,
- math.random() - math.random(),
- 0,
- math.random(50, 100) / 100
- })
- end;
- };
- Fire = {
- Create = function(brickcolor, cframe, x1, y1, z1, delay)
- local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
- prt.Anchored = true
- prt.CFrame = cframe
- msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
- game:GetService("Debris"):AddItem(prt, 10)
- table.insert(Effects, {
- prt,
- "Fire",
- delay,
- 1,
- 1,
- 1,
- msh
- })
- end;
- };
- FireWave = {
- Create = function(brickcolor, cframe, x1, y1, z1)
- local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 1, brickcolor, "Effect", Vector3.new())
- prt.Anchored = true
- prt.CFrame = cframe
- msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
- local d = Create("Decal"){
- Parent = prt,
- Texture = "rbxassetid://26356434",
- Face = "Top",
- }
- local d = Create("Decal"){
- Parent = prt,
- Texture = "rbxassetid://26356434",
- Face = "Bottom",
- }
- game:GetService("Debris"):AddItem(prt, 10)
- table.insert(Effects, {
- prt,
- "FireWave",
- 1,
- 30,
- math.random(400, 600) / 100,
- msh
- })
- end;
- };
- Lightning = {
- Create = function(p0, p1, tym, ofs, col, th, tra, last)
- local magz = (p0 - p1).magnitude
- local curpos = p0
- local trz = {
- -ofs,
- ofs
- }
- for i = 1, tym do
- local li = CFuncs.Part.Create(EffectModel, "Neon", 0, tra or 0.4, col, "Ref", Vector3.new(th, th, magz / tym))
- local ofz = Vector3.new(trz[math.random(1, 2)], trz[math.random(1, 2)], trz[math.random(1, 2)])
- local trolpos = CFrame.new(curpos, p1) * CFrame.new(0, 0, magz / tym).p + ofz
- li.Material = "Neon"
- if tym == i then
- local magz2 = (curpos - p1).magnitude
- li.Size = Vector3.new(th, th, magz2)
- li.CFrame = CFrame.new(curpos, p1) * CFrame.new(0, 0, -magz2 / 2)
- table.insert(Effects, {
- li,
- "Disappear",
- last
- })
- else
- do
- do
- li.CFrame = CFrame.new(curpos, trolpos) * CFrame.new(0, 0, magz / tym / 2)
- curpos = li.CFrame * CFrame.new(0, 0, magz / tym / 2).p
- game.Debris:AddItem(li, 10)
- table.insert(Effects, {
- li,
- "Disappear",
- last
- })
- end
- end
- end
- end
- end
- };
- EffectTemplate = {
- };
- }
- function spinnie()
- attack = true
- Humanoid.Jump = true
- RootPart.Velocity = RootPart.CFrame.lookVector * 50
- for i = 0, 1, 0.13 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-0.0698693246, -0.0977724791, 0, 0.0162540004, 0.999867976, 0, -0.999867976, 0.0162540004, 0, 0, 0, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 6 * i, 0),
- CFrame.new(3.58590242E-8, 1.56930101, -0.16012457, 1.00000167, 2.79396772E-8, -2.65426934E-8, 3.7252903E-9, 0.96055311, 0.278098732, 4.8732467E-9, -0.278098851, 0.960554779) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.87150276, 0.58960402, 0.0690974891, -0.0319058374, -0.971631706, -0.234337762, 0.98765862, 0.0053204298, -0.156532884, 0.153339073, -0.236439973, 0.959470332) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.89095485, 0.56066519, -0.120469242, -0.0385297611, 0.967873871, -0.248467326, -0.985829175, 0.00380894355, 0.167709529, 0.163268015, 0.25140813, 0.954011321) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.697091758, -1.7465874, 0.362060428, 0.979917228, -0.144231498, -0.137675673, 0.191141114, 0.876068652, 0.442693651, 0.0567622073, -0.460120559, 0.886044502) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.480323464, -1.17149687, -0.44098556, 0.96340853, -0.12025702, 0.239546567, 0.0388799086, 0.946950197, 0.319020241, -0.265203059, -0.298033178, 0.916975319) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0)
- }, 0.5, false, i)
- end
- attack = false
- end
- function airkicv2()
- attack = true
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-0, -0.424362302, 4.32133675e-07, 1, 0, 0, 0, 0.966460645, 0.256814778, 0, -0.256814778, 0.966460645),
- CFrame.new(0, 1.5, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.69633389, 0.621556103, -0.0183755569, 0.584359586, -0.80831641, 0.0717527792, 0.792319119, 0.549208164, -0.265707672, 0.175368667, 0.212119952, 0.961379766) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.70448697, 0.523974717, 0.055876743, 0.691166162, 0.717809558, 0.0838975832, -0.71887368, 0.670938313, 0.18183051, 0.0742295533, -0.185986847, 0.979744256) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.5, -1.24131966, -1.09755981, 1, -2.48689958e-14, -3.55271368e-14, 3.55271368e-15, 0.849086165, -0.52825439, 4.61852778e-14, 0.52825439, 0.849086165) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.5, -1.31842017, -0.123331666, 1, 1.22568622e-13, 2.34479103e-13, -1.7408297e-13, 0.972123146, 0.234470457, -1.98951966e-13, -0.234470472, 0.972123265) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-0, -0.23777324, -0.0557243116, 1, 0, 0, 0, 0.976274014, 0.216538772, 0, -0.216538772, 0.976274014),
- CFrame.new(0, 1.49130964, 0.0653347522, 1, 0, 0, 0, 0.991273403, -0.131821841, 0, 0.131821841, 0.991273403) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.66171324, 0.409674257, 0.0528911278, 0.809504032, -0.587070942, 0.00713900244, 0.581436992, 0.803303838, 0.128971875, -0.0814504325, -0.10025242, 0.991622627) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.64009523, 0.326230198, 0.115304224, 0.87948364, 0.466388911, 0.0948153883, -0.474574566, 0.844380796, 0.248595536, 0.0358819067, -0.263632715, 0.963955522) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.5, -1.51103902, -1.09577036, 1, -4.97379915e-14, -8.52651283e-14, -8.95462903e-16, 0.860707879, -0.509099007, 9.9475983e-14, 0.509099066, 0.860707939) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.5, -1.10816157, -0.144709289, 1, 9.59232693e-14, 3.01980663e-13, -1.91692717e-13, 0.942386091, 0.334526926, -2.52242671e-13, -0.334526956, 0.94238615) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-0, -0.0511836633, -0.111447193, 1, 0, 0, 0, 0.98440969, 0.175890639, 0, -0.175890639, 0.98440969),
- CFrame.new(0, 1.48261845, 0.130669713, 1, 0, 0, 0, 0.965245962, -0.261342943, 0, 0.261342943, 0.965245962) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.6270926, 0.197793037, 0.124158219, 0.949859083, -0.304334193, 0.0717528015, 0.22907418, 0.833505988, 0.502784729, -0.212821007, -0.46113807, 0.86142838) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.5757041, 0.12848568, 0.174732208, 0.981961668, 0.169447631, 0.0838976279, -0.187453628, 0.930507481, 0.314669311, -0.0247474127, -0.324720114, 0.945486307) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.5, -1.78075969, -1.09397984, 1, -7.10542736e-14, -1.38555833e-13, -5.32907221e-15, 0.871897519, -0.489688069, 1.52766688e-13, 0.489688128, 0.871897638) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.5, -0.89790386, -0.166086823, 1, 6.21724894e-14, 3.69482223e-13, -2.14939164e-13, 0.902381063, 0.430938601, -3.05533376e-13, -0.430938631, 0.902381182) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(0, 0.786024332, -0.240155488, 1, 0, 0, 0, 0.996964931, -0.077851899, 0, 0.077851899, 0.996964931),
- CFrame.new(0, 1.48492777, 0.00922626443, 1, 0, 0, 0, 0.999818981, -0.0190244392, 0, 0.0190244392, 0.999818981) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.63619423, 0.411065072, 0.0168834329, 0.797531486, -0.580793142, 0.163165122, 0.500675559, 0.788108289, 0.358063012, -0.336552352, -0.203873739, 0.91933018) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.62588692, 0.437127292, 0.159289181, 0.796537161, 0.591543615, 0.124918498, -0.604211211, 0.771553755, 0.199081302, 0.02138393, -0.234052822, 0.971988678) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.5, -1.5718224, -0.361217737, 1, 8.34887715e-14, -2.66453526e-13, 1.89674055e-14, 0.932848394, 0.360268831, 2.80664408e-13, -0.360268861, 0.932848454) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.5, -0.43970257, -0.0651640147, 1, 1.03028697e-13, 6.03961325e-13, -4.5297094e-13, 0.789949059, 0.613172293, -4.12114787e-13, -0.613172352, 0.789949119) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(0, 1.62323272, -0.368861973, 1, 0, 0, 0, 0.945173144, -0.326569647, 0, 0.326569647, 0.945173144),
- CFrame.new(0, 1.48723757, -0.112215772, 1, 0, 0, 0, 0.974489391, 0.224433914, 0, -0.224433914, 0.974489391) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.6452955, 0.708436131, -0.200356245, 0.601984799, -0.688614905, 0.404257178, 0.762630165, 0.345764875, -0.546664238, 0.236663207, 0.637382269, 0.733303666) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.67607045, 0.689551234, 0.0836655647, 0.469709337, 0.882436395, -0.0260605533, -0.780189991, 0.401108861, -0.480015695, -0.413130164, 0.245800018, 0.876872718) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.5, -1.36288548, 0.371545464, 1, 2.84217094e-13, -2.33590924e-13, 1.31450379e-13, 0.316418946, 0.948619545, 3.44613227e-13, -0.948619604, 0.316419005) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.500000477, -1.07206035, -1.32604361, 1, 3.73034936e-13, 4.20996571e-13, 2.16715548e-13, 0.438564807, -0.898699403, -5.18696251e-13, 0.898699522, 0.438564867) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-1.49011612e-07, 1.94611287, -0.523622215, 0.999319136, -0.0151085844, -0.0336607285, 0.00109767297, 0.924084485, -0.382186681, 0.0368796587, 0.381889492, 0.923471868),
- CFrame.new(-1.09755627e-09, 1.48317003, -0.127606764, 1, -1.39698386e-09, 3.7252903e-09, -9.31322575e-10, 0.966849387, 0.255347162, 0, -0.255347192, 0.966849446) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.59137499, 0.714839041, -0.301532865, 0.690382302, -0.51392144, 0.509172857, 0.696973681, 0.283843219, -0.658529162, 0.193906963, 0.809516966, 0.554150224) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.66162193, 0.737217903, 0.0404941216, 0.451532871, 0.879648745, -0.149453819, -0.77589798, 0.304395139, -0.552562892, -0.440568119, 0.3654612, 0.819962025) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.524977863, -1.33153605, 0.264829069, 0.998607635, 0.0401700661, -0.0341946855, 0.0219353028, 0.273321271, 0.961672544, 0.047976587, -0.96108371, 0.2720595) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.437685311, -1.00205517, -1.31563735, 0.996105552, -0.0636020154, -0.0610619411, -0.0350757875, 0.349534094, -0.93626678, 0.0808916986, 0.934762359, 0.34594208) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-5.21540642e-08, 2.2689929, -0.678382277, 0.997279763, -0.0321705043, -0.0663181692, -2.66857358e-09, 0.899727583, -0.436451912, 0.0737091675, 0.435264677, 0.897280097),
- CFrame.new(-2.3570243e-07, 1.47910213, -0.142997354, 0.99999994, 1.86264515e-09, 0, 0, 0.958229184, 0.286001503, 0, -0.286001503, 0.958229125) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.53745508, 0.721243024, -0.402709603, 0.763027906, -0.311889887, 0.566138685, 0.634132504, 0.191616476, -0.749105453, 0.125156939, 0.930595338, 0.34398824) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.64717209, 0.78488642, -0.0026780609, 0.436589718, 0.857759953, -0.271362185, -0.767710745, 0.197947264, -0.60945636, -0.469051749, 0.474409968, 0.744933188) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.549956083, -1.30018568, 0.158112109, 0.994437039, 0.0817442089, -0.0664289445, 0.0459721573, 0.230597734, 0.971962452, 0.0947706774, -0.969609499, 0.22555697) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.375370622, -0.932049513, -1.30523002, 0.984489858, -0.132385671, -0.115125075, -0.0776346326, 0.259725362, -0.96255672, 0.157329619, 0.956565022, 0.245419294) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-3.65078449e-07, 2.16701937, -0.678382456, 0.996480227, -0.0364805907, -0.0754740909, -0.00207007839, 0.889358938, -0.457204998, 0.0838026628, 0.455751956, 0.886153042),
- CFrame.new(-0.000742906472, 1.47670007, -0.150588751, 0.999998927, -0.00148491655, 0.00022995472, 0.00134667009, 0.953551769, 0.301226348, -0.000666573644, -0.301225781, 0.953552544) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.50440478, 0.702332973, -0.44841665, 0.778710306, -0.234023511, 0.582102418, 0.625622392, 0.220182583, -0.748409033, 0.0469764471, 0.946970224, 0.317868829) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.61895549, 0.792143345, -0.125214487, 0.501856208, 0.758985221, -0.414827257, -0.784101963, 0.196750998, -0.588619471, -0.365135789, 0.620669305, 0.693862677) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.567163646, -1.31203222, 0.13616091, 0.99016124, 0.107565954, -0.0895003751, 0.0624961518, 0.232325435, 0.970628083, 0.125199735, -0.966671824, 0.223317146) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.361314088, -0.915135443, -1.30040193, 0.982668221, -0.147440434, -0.112358615, -0.0738234371, 0.244722292, -0.966778636, 0.170038939, 0.958317399, 0.229596347) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(1.78813934e-07, 2.0650456, -0.678383708, 0.995577991, -0.0409996212, -0.0845190287, -0.00437435275, 0.878517568, -0.477690011, 0.0938365608, 0.47594738, 0.874453425),
- CFrame.new(-0.00148598524, 1.47429645, -0.158180207, 0.99999547, -0.00297329761, 0.000436238945, 0.00268255547, 0.948630333, 0.316375047, -0.0013545081, -0.316372395, 0.948634088) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.47135615, 0.683422208, -0.494124204, 0.787983596, -0.154735446, 0.595935106, 0.614866734, 0.247989222, -0.748625338, -0.0319465995, 0.956325412, 0.290553153) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.59073877, 0.799401641, -0.247751549, 0.546545982, 0.634936035, -0.546025276, -0.799037695, 0.200233832, -0.566961229, -0.250651419, 0.746165276, 0.616774857) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.584371865, -1.32387984, 0.114207864, 0.984680057, 0.133253142, -0.112466842, 0.0789341107, 0.234481961, 0.968910456, 0.155481845, -0.962944329, 0.220371485) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.347258002, -0.898221374, -1.29557347, 0.980644226, -0.162421405, -0.109343641, -0.0702119619, 0.229601815, -0.970748782, 0.182775915, 0.959636509, 0.21375379) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-3.57627869e-07, 1.99338996, -0.678384185, 0.970229745, 0.114011958, 0.213671416, -0.0032450424, 0.888301313, -0.459249705, -0.242164552, 0.44488436, 0.862226307),
- CFrame.new(0.000318895036, 1.46881044, -0.173035592, 0.999999762, 0.000628007576, -0.000286340714, -0.000490002334, 0.938137233, 0.346263617, 0.00048610568, -0.346263438, 0.938137233) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.41783035, 0.597256064, -0.550024211, 0.806798041, -0.039217636, 0.589524269, 0.561194181, 0.362898827, -0.743885219, -0.184764236, 0.931002915, 0.314794779) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.56440055, 0.606532872, -0.349168152, 0.737584591, 0.450427949, -0.50307411, -0.674246728, 0.450578213, -0.585124314, -0.0368821025, 0.770774841, 0.636039197) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.635127604, -1.36569679, 0.0368313491, 0.949304998, 0.237554058, -0.205883235, 0.145681292, 0.24791044, 0.957766891, 0.278562009, -0.939206243, 0.20073542) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.234899461, -0.910287976, -1.25078678, 0.95139581, -0.289997309, -0.103670582, -0.0303061176, 0.246831924, -0.968584299, 0.306476027, 0.924648881, 0.226046234) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-1.1920929e-07, 1.921736, -0.678383827, 0.834710598, 0.249841958, 0.490751684, -0.00911303889, 0.897304475, -0.441318035, -0.550613463, 0.363900602, 0.75126642),
- CFrame.new(0.00212571677, 1.46332383, -0.187891334, 0.999990523, 0.00425038487, -0.000894546509, -0.00360268354, 0.926690996, 0.375806749, 0.00242620707, -0.375799954, 0.926697612) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.36430562, 0.511089683, -0.605924785, 0.806561708, 0.0779441297, 0.58598876, 0.489610672, 0.467409134, -0.736077309, -0.331269562, 0.880598307, 0.33883208) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.53806233, 0.413662553, -0.450585544, 0.861007571, 0.215123534, -0.460855663, -0.478217423, 0.650896907, -0.589610815, 0.173130393, 0.728048682, 0.663303137) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.685883999, -1.40751326, -0.0405460894, 0.894131184, 0.336839467, -0.295073926, 0.209220544, 0.268360436, 0.940323949, 0.395924419, -0.902508616, 0.169475883) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.122540563, -0.922353506, -1.20599961, 0.905436158, -0.412614584, -0.0996728018, 0.0115110353, 0.258590758, -0.965918243, 0.42432642, 0.873430133, 0.238887042) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-7.59027898e-08, 1.75918627, -0.678383589, -0.999848008, -0.00161577761, 0.0173610151, -0.0091129588, 0.897304475, -0.441318035, -0.0148650445, -0.441409141, -0.897182822),
- CFrame.new(0.00253066234, 1.47016561, -0.164830744, 0.999859214, 0.00612951349, -0.0156198768, -0.000617421232, 0.943699896, 0.330802023, 0.0167681351, -0.330745816, 0.943570971) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.4220444, 0.558593631, -0.528528452, 0.802426875, -0.0945036933, 0.589220047, 0.577620387, 0.371002287, -0.727125645, -0.149885982, 0.92381072, 0.352289557) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.57193375, 0.410975933, -0.234449089, 0.863636494, 0.399898261, -0.306942225, -0.493878812, 0.549107075, -0.674214303, -0.101073012, 0.733868361, 0.67173028) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.698285341, -1.32532334, -0.18916446, 0.882404208, 0.354233444, -0.30964753, 0.126925945, 0.45450747, 0.881653309, 0.453048199, -0.817276955, 0.356097907) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.782985628, -0.938674688, -1.41977096, 0.994636476, -0.0092411777, -0.103019722, -0.0970594585, 0.260842979, -0.960489571, 0.0357480235, 0.965336919, 0.258547008) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-8.34465027e-07, 1.62391114, -0.678382933, -0.335008234, -0.304828137, -0.89154321, 0.143871099, 0.918574989, -0.368131906, 0.931166232, -0.251594514, -0.263874233),
- CFrame.new(0.00293599162, 1.4770081, -0.141770154, 0.999510646, 0.00729732215, -0.0304151475, 0.00167426467, 0.958528221, 0.284992635, 0.0312334746, -0.284904122, 0.958047032) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.4797833, 0.606097639, -0.451132685, 0.763774753, -0.262645453, 0.589631438, 0.644455671, 0.258773744, -0.719522595, 0.0363982171, 0.929544806, 0.366908282) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.60580289, 0.408290535, -0.0183139183, 0.800740957, 0.577832103, -0.157873079, -0.472939789, 0.448114246, -0.758631289, -0.367616415, 0.682131648, 0.632103264) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.710686088, -1.24313343, -0.337782353, 0.870323539, 0.367538691, -0.327799201, 0.0343760848, 0.618647099, 0.78491652, 0.491279244, -0.694399834, 0.525788486) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.44343042, -0.954996407, -1.63354325, 0.913136661, 0.395738959, -0.0978367329, -0.197254777, 0.218901321, -0.955600619, -0.3567518, 0.89189285, 0.27794826) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-1.25169754e-06, 1.48863661, -0.678382635, 0.785248518, -0.220917627, -0.578429043, 0.120596729, 0.970862269, -0.207081899, 0.607322991, 0.0928540975, 0.789010108),
- CFrame.new(0.00334091578, 1.48384988, -0.118709758, 0.998945951, 0.00775079429, -0.0452427864, 0.00326651707, 0.971138358, 0.238494426, 0.0457856059, -0.238390848, 0.970089436) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.53752303, 0.653600454, -0.373737335, 0.69218719, -0.419601262, 0.587206781, 0.687382102, 0.135315076, -0.713579416, 0.219960868, 0.897565901, 0.382089883) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.63967371, 0.405604303, 0.197821513, 0.677066326, 0.735500813, -0.0248950273, -0.416980088, 0.355538189, -0.836492777, -0.60638988, 0.576741934, 0.547412157) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.723087192, -1.16094255, -0.486401021, 0.858438015, 0.376150787, -0.348704398, -0.0642239749, 0.753321469, 0.654508889, 0.508880615, -0.539460123, 0.670837641) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-2.10387564, -0.971317768, -1.84731519, 0.674886882, 0.733008146, -0.0850107968, -0.271925211, 0.139945298, -0.952088237, -0.685991466, 0.665668488, 0.293770671) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-2.93552876e-06, 1.52800703, -0.678382576, 0.999190509, -0.00587036088, 0.0397975445, 0.00770563539, 0.998906195, -0.0461198799, -0.0394832753, 0.046389211, 0.998142838),
- CFrame.new(0.00374649651, 1.49069142, -0.0956482738, 0.998166323, 0.007488837, -0.060065411, 0.00415536482, 0.98149842, 0.19142513, 0.0603876561, -0.191323698, 0.979667664) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.59526157, 0.701104462, -0.296340704, 0.590592742, -0.558948815, 0.58204484, 0.70464319, 0.00567786396, -0.709538996, 0.393291295, 0.829182684, 0.397212833) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.67354453, 0.402918518, 0.413957834, 0.501943588, 0.861008286, 0.0819590092, -0.330221623, 0.278363705, -0.901924193, -0.799378633, 0.425650388, 0.424046516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.735488415, -1.0787524, -0.635018945, 0.847287714, 0.379678249, -0.371413231, -0.164394155, 0.852411568, 0.496355593, 0.505052507, -0.359497905, 0.784654915) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.74512887, -0.867448151, -1.28318989, 0.70648545, 0.706613183, -0.0396966003, -0.193893462, 0.139304325, -0.971081674, -0.680649281, 0.69375211, 0.235424235) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-2.33203173e-06, 1.47394395, -0.678383112, 0.987389565, -0.00478656683, 0.158236787, 0.00613998016, 0.999948621, -0.00806532707, -0.158190057, 0.00893519074, 0.987368226),
- CFrame.new(0.00374554377, 1.49069142, -0.0956483483, 0.998166323, 0.0074888356, -0.0600654036, 0.00415536622, 0.98149842, 0.191425115, 0.0603876412, -0.191323698, 0.979667544) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.57985258, 0.745796442, -0.241008699, 0.563081622, -0.557465434, 0.610058486, 0.666512489, -0.130082771, -0.73405683, 0.488569438, 0.819945574, 0.298310488) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.59168124, 0.358110964, 0.559209824, 0.290134817, 0.94390285, 0.157699242, -0.206769735, 0.22272563, -0.952701151, -0.934381008, 0.243804336, 0.259790987) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.627833962, -1.07732487, -0.683056116, 0.93419832, 0.292201161, -0.204675168, -0.158911601, 0.854485393, 0.494572192, 0.319406569, -0.429503262, 0.844693065) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.84228563, -0.860866904, -1.07157135, 0.487985522, 0.864135921, -0.123041816, -0.365295172, 0.0741598681, -0.927932978, -0.792735517, 0.497764438, 0.351853639) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-2.5331974e-06, 1.41988158, -0.678382695, 0.961584568, -0.00816223212, 0.274387538, 5.4098331e-05, 0.999563456, 0.029544523, -0.274508923, -0.0283947121, 0.961165249),
- CFrame.new(0.00374652911, 1.49069095, -0.0956486613, 0.998166323, 0.00748884305, -0.0600654185, 0.00415536482, 0.98149848, 0.191425115, 0.0603876412, -0.191323712, 0.979667604) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.56444299, 0.790489256, -0.185676783, 0.537234783, -0.55066824, 0.638860941, 0.614614666, -0.263126701, -0.74364841, 0.577605069, 0.792167127, 0.197088018) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.50981772, 0.313304394, 0.704460323, 0.0555054098, 0.979994833, 0.19112654, -0.0672788247, 0.194657475, -0.978561163, -0.996189117, 0.0414565951, 0.076737456) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.520179391, -1.07589757, -0.73109138, 0.980931222, 0.192159131, -0.0291334987, -0.153015256, 0.855982184, 0.493842661, 0.119834065, -0.479967773, 0.869063079) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.93944144, -0.854285479, -0.859952211, 0.226556733, 0.959215105, -0.16905193, -0.505914688, -0.0324223042, -0.861973822, -0.832299411, 0.280811846, 0.477935582) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-2.77161598e-06, 1.38117015, -0.67838341, 0.923151374, -0.0114079174, 0.38426733, 5.40974725e-05, 0.999563456, 0.0295445286, -0.384436637, -0.0272532851, 0.922748983),
- CFrame.new(0.00374649279, 1.49069154, -0.0956482291, 0.998166323, 0.00748883188, -0.0600653887, 0.00415536528, 0.98149848, 0.191425115, 0.0603876412, -0.191323668, 0.979667544) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.54445744, 0.806201339, -0.172617346, 0.523169637, -0.544790208, 0.655360281, 0.602885544, -0.306930423, -0.7364254, 0.602347493, 0.780382693, 0.167869523) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.47866929, 0.312423587, 0.734235466, -0.00531989336, 0.980344296, 0.19722262, -0.0672302246, 0.196428493, -0.978210568, -0.997723222, -0.0184633434, 0.0648637861) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.484824896, -1.07549024, -0.744733393, 0.982645869, 0.184744671, -0.0166264176, -0.152590677, 0.856064081, 0.493832111, 0.105466127, -0.482725114, 0.869398236) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-2.01937747, -0.858204067, -0.727222085, 0.108274788, 0.98948437, -0.0959023312, -0.505202413, -0.0283163134, -0.862536132, -0.856181622, 0.141841009, 0.496823967) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-3.03983688e-06, 1.34245884, -0.678382874, 0.872199178, -0.0144988932, 0.488935947, 5.40955043e-05, 0.999563456, 0.0295445286, -0.489150882, -0.0257422645, 0.871819198),
- CFrame.new(0.00374555495, 1.49069202, -0.0956484079, 0.998166323, 0.00748883933, -0.0600653887, 0.00415536528, 0.98149848, 0.191425115, 0.060387671, -0.191323683, 0.979667544) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.524472, 0.821913183, -0.159558266, 0.509366155, -0.537927389, 0.671699524, 0.589862168, -0.350083798, -0.727670014, 0.626584947, 0.766860664, 0.138982296) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.44752038, 0.311542869, 0.764010012, -0.0661253929, 0.977030277, 0.202581525, -0.0672916472, 0.198197082, -0.977849483, -0.995539665, -0.0782927275, 0.0526401252) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.449471593, -1.07508326, -0.758376718, 0.984149933, 0.177290589, -0.00411579013, -0.152165398, 0.85614264, 0.493827105, 0.0910745859, -0.485373616, 0.869550288) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-2.09931421, -0.862122059, -0.594492257, -0.01220119, 0.999708891, -0.020810917, -0.504993439, -0.0241239034, -0.862785816, -0.863036871, -1.77025795e-05, 0.505140901) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-1.04308128e-06, 1.28295219, -0.678382874, 0.702924907, -0.0976386219, 0.704530537, 0.0892112702, 0.994813561, 0.0488600619, -0.705647171, 0.0285071079, 0.707989693),
- CFrame.new(0.0154057946, 1.48919046, -0.101122975, 0.990248919, 0.0303853974, -0.135955721, -0.00182012469, 0.978661895, 0.205468893, 0.139298052, -0.203217894, 0.969174147) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.49045324, 0.680521131, -0.381076783, 0.828136504, -0.257505894, 0.497876227, 0.45732224, -0.203195289, -0.865775824, 0.324108481, 0.944670439, -0.0505102277) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.42179191, 0.260520875, 0.773370624, -0.0970098078, 0.9599033, 0.263011098, -0.0274692718, 0.261574507, -0.964792252, -0.99490428, -0.100819051, 0.000992551446) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.390531242, -1.08497334, -0.744555354, 0.984016895, 0.129874557, 0.121833414, -0.168603241, 0.899655819, 0.402730614, -0.0573037267, -0.416835338, 0.907173991) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-2.03795528, -0.937846541, -0.296447158, -0.167050391, 0.950762868, 0.261044353, -0.446177542, 0.163204253, -0.879937351, -0.87921536, -0.26346606, 0.396945745) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-2.83122063e-07, 1.22344577, -0.678382933, 0.474670798, -0.162198454, 0.865089178, 0.168992385, 0.981381714, 0.0912771225, -0.863787711, 0.102866895, 0.493243545),
- CFrame.new(0.0270648524, 1.48768961, -0.106596455, 0.97605896, 0.0541289896, -0.21066311, -0.00664078444, 0.975503683, 0.21988298, 0.217404604, -0.213219792, 0.952508569) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.45643449, 0.539129913, -0.602595568, 0.966533184, 0.0946412981, 0.23844631, 0.249214917, -0.125835538, -0.960238099, -0.0608731806, 0.987526417, -0.145210266) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.39606464, 0.2094993, 0.782731175, -0.130201787, 0.938195288, 0.320682228, 0.0102973841, 0.324697614, -0.94576174, -0.991434038, -0.119837672, -0.0519371629) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.331591249, -1.09486377, -0.730734944, 0.963866234, 0.0929114968, 0.249658227, -0.169844568, 0.936345816, 0.307260811, -0.205218434, -0.338561416, 0.918292761) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.9765954, -1.01357126, 0.00159786269, -0.327806532, 0.801005006, 0.500933051, -0.416485995, 0.353401542, -0.837643445, -0.847987175, -0.483216643, 0.217760056) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-9.983778e-07, 0.941152275, -0.678382397, -0.943001568, -0.117466435, -0.311367482, -0.0500460491, 0.975048304, -0.216278017, 0.329003751, -0.188367784, -0.925350785),
- CFrame.new(0.0249286368, 1.46623468, -0.173208877, 0.897906065, 0.0686504692, 0.434801042, -0.210370094, 0.934584379, 0.286873639, -0.386664212, -0.349054694, 0.853610933) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.2152704, 0.247356772, -0.214906856, 0.887202501, 0.0460119247, 0.459080189, 0.443065554, 0.192597091, -0.875556469, -0.128703564, 0.980198503, 0.15048638) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.36202121, 0.352040529, -0.0416090712, 0.945372999, 0.131601393, -0.298246413, -0.274645537, -0.17132239, -0.94615972, -0.175612211, 0.976385951, -0.125819832) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.700069427, -1.1930747, -0.689766884, 0.835668564, 0.388779283, -0.387954473, -0.175747812, 0.858499885, 0.481757611, 0.520356238, -0.334407628, 0.785748541) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.2213124, -1.0917846, -1.22634733, 0.831598401, 0.545206726, 0.105799913, -0.129163504, 0.375139534, -0.917925298, -0.540148854, 0.749679804, 0.382386267) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-3.05473804e-07, -0.329182833, -0.678381979, -0.147760779, -0.0411328338, 0.988167405, 0.24652347, 0.966067016, 0.0770755783, -0.957806289, 0.254995197, -0.132606611),
- CFrame.new(0.027065102, 1.48768973, -0.106597453, 0.9760589, 0.0541290045, -0.21066308, -0.00664077699, 0.975503623, 0.219882965, 0.217404634, -0.213219777, 0.952508569) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.63071275, 0.281685531, 0.271942765, 0.404286206, -0.816159904, -0.41283837, 0.427824855, 0.567694843, -0.703340769, 0.808404803, 0.107728496, 0.578684866) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.60843098, 0.226497442, 0.539252341, 0.397062898, 0.835667789, 0.379473835, -0.173271924, 0.474283606, -0.863152146, -0.901286781, 0.276973546, 0.33311817) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.607100546, -1.14860106, -0.666904628, 0.805102766, 0.409116328, -0.429456919, -0.205302358, 0.871503294, 0.445345521, 0.556471348, -0.270380437, 0.785642326) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.79431808, -1.1441499, -0.455495477, -0.114230029, 0.725516319, 0.678658485, -0.0222931467, 0.681086004, -0.731863678, -0.993204176, -0.0987302959, -0.061626479) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-1.04308128e-07, -0.500196397, -0.678382397, -0.147760779, -0.0411328562, 0.988167405, 0.17918539, 0.981486797, 0.067648381, -0.972655833, 0.187060937, -0.137654841),
- CFrame.new(0.0441945344, 1.4858458, -0.107874185, 0.941249788, 0.0882408842, -0.325978875, -0.00975866616, 0.971963823, 0.234927982, 0.337569952, -0.217944816, 0.915721893) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.64716744, 0.276762187, 0.231089503, 0.47887525, -0.783762991, -0.395467103, 0.471945465, 0.609684646, -0.636829734, 0.740233719, 0.118323058, 0.661856234) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.60475516, 0.175935864, 0.432095379, 0.537642956, 0.74747628, 0.390152842, -0.0994572043, 0.515710115, -0.850970805, -0.837286353, 0.418714911, 0.351609886) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.720491111, -1.14355505, -0.579453528, 0.813850462, 0.27899608, -0.509714127, -0.0667442009, 0.916271091, 0.394958973, 0.577228308, -0.287417084, 0.764329016) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.56730425, -1.08402503, -0.530844927, -0.102275789, 0.635935307, 0.764935315, -0.070587568, 0.762389719, -0.643256783, -0.992248476, -0.119784512, -0.0330848768) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-8.64267349e-07, -0.671210706, -0.678383231, -0.147760764, -0.0411328524, 0.988167405, 0.110976242, 0.992135465, 0.0578923114, -0.982777178, 0.118217319, -0.14203392),
- CFrame.new(0.0613226816, 1.48400199, -0.109151483, 0.891705871, 0.122645698, -0.43568179, -0.0109220371, 0.96813792, 0.250179589, 0.452483445, -0.218328118, 0.864633858) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.66362023, 0.27184087, 0.190235078, 0.549853086, -0.749096155, -0.369481236, 0.507249057, 0.650915444, -0.564807355, 0.663596094, 0.123142093, 0.73788631) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.60108018, 0.125374377, 0.324938774, 0.661268592, 0.636463463, 0.397036672, -0.0195391253, 0.543711126, -0.839044869, -0.749894679, 0.547076344, 0.371975034) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.833881676, -1.1385088, -0.492001712, 0.801104426, 0.144036099, -0.580934644, 0.0720219538, 0.940360069, 0.332469195, 0.594175339, -0.308182627, 0.742952883) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.34029007, -1.02389908, -0.6061939, -0.084414199, 0.537113011, 0.839275777, -0.116953403, 0.831119478, -0.54365629, -0.989543319, -0.144048467, -0.00734111667) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-6.33299351e-07, -0.500196755, -0.678382754, -0.147760823, -0.041132845, 0.988167405, 0.0422276109, 0.997961283, 0.0478548221, -0.988121212, 0.0487990193, -0.145722643),
- CFrame.new(0.0778070539, 1.48581254, -0.0831519663, 0.784896255, 0.160796434, -0.598399818, -0.0217545535, 0.972297549, 0.232732236, 0.619245172, -0.169652715, 0.766650796) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.68007421, 0.266918868, 0.149381667, 0.616271019, -0.712623239, -0.335228294, 0.533263922, 0.690835953, -0.488236606, 0.579516649, 0.122120887, 0.805758595) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.59740448, 0.074811697, 0.217781976, 0.76426208, 0.505931616, 0.399920762, 0.0641043633, 0.55745405, -0.827729106, -0.641711831, 0.658238709, 0.39360854) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.922194302, -1.35764742, -0.417632252, 0.767172873, 0.00750056654, -0.641396463, 0.207640126, 0.943187952, 0.259387612, 0.606903017, -0.332174838, 0.722030938) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.36532426, -1.32102978, -0.483546108, -0.078253597, 0.511830509, 0.855515003, -0.140021011, 0.8439973, -0.517747462, -0.987051427, -0.160305649, 0.00562119484) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-4.54485416e-07, -0.329182655, -0.678382814, -0.147760779, -0.0411328338, 0.988167405, -0.0267262943, 0.998935997, 0.0375846922, -0.988661945, -0.0208565108, -0.14870289),
- CFrame.new(0.094290629, 1.48762226, -0.0571522862, 0.647305489, 0.188579828, -0.73853457, -0.0359039195, 0.975380182, 0.217587933, 0.761384666, -0.114329532, 0.638139606) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.69652772, 0.261996239, 0.108528078, 0.677241564, -0.674831629, -0.293165743, 0.549642622, 0.728913128, -0.408140451, 0.489118457, 0.11527326, 0.864566505) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.59372902, 0.0242501497, 0.110625058, 0.843559623, 0.35976392, 0.398719221, 0.148985431, 0.556529522, -0.81736052, -0.515955806, 0.748895705, 0.415866286) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.01050818, -1.57678533, -0.343261719, 0.712876499, -0.127309099, -0.689637184, 0.336830884, 0.924686432, 0.177481487, 0.615103185, -0.358813524, 0.702069044) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.39035821, -1.61816072, -0.360897511, -0.071397081, 0.486208171, 0.870921373, -0.162832513, 0.855754733, -0.49108988, -0.984067023, -0.176876694, 0.0180721134) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- attack = false
- end
- function beatmeup()
- attack = true
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-2.68220901e-07, -0.999893248, -2.68220901e-07, 0.954200089, -0.00391276274, -0.299143642, 0.268353909, 0.453180045, 0.850060284, 0.132240608, -0.891409099, 0.433476955),
- CFrame.new(0.0152890515, 1.49958897, -0.0132527612, 0.947095871, 0.0305804089, 0.319489479, -0.0374381319, 0.999179959, 0.0153393447, -0.318759918, -0.0264934003, 0.947460771) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.244054884, 0.760140538, -0.882296562, 0.324009687, 0.942025781, 0.087203607, 0.776880264, -0.212337226, -0.592762589, -0.539884031, 0.259805381, -0.800636113) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.61807597, 0.865841269, 0.247788012, 0.776497781, -0.0114205256, -0.63001579, -0.610952497, -0.258373886, -0.748316407, -0.154232383, 0.965974569, -0.207598612) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.162140846, -0.487857193, -1.07413805, 0.969012618, 0.234132111, -0.0787148774, -0.196268559, 0.536322355, -0.820874155, -0.149977773, 0.810881615, 0.565658271) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.770895422, -1.45925665, -0.751712978, 0.9308303, -0.2075831, 0.300771624, 0.0780321509, 0.916931391, 0.391338021, -0.357023984, -0.340802133, 0.869700789) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(6.03497028e-07, -0.999893248, 2.38418579e-07, 0.998761952, 0.0178419854, -0.0464358255, 0.03351878, 0.448369652, 0.893213153, 0.0367573202, -0.89366889, 0.447219044),
- CFrame.new(-0.00448577758, 1.4987936, -0.0253925398, 0.998874366, -0.0124089196, 0.0457824394, 0.0103109125, 0.998897374, 0.0457764864, -0.046300225, -0.0452573001, 0.997897267) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.714897156, 0.587207496, -1.09933567, 0.622750521, 0.657323837, 0.424390614, 0.666898847, -0.162277102, -0.727261782, -0.409179419, 0.73592633, -0.539421618) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.67686212, 0.759229779, 0.541159928, 0.776497602, -0.0114196949, -0.630016863, -0.610952139, -0.258373946, -0.748316824, -0.154231384, 0.965974212, -0.207599372) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.341561019, -0.455413282, -0.983077049, 0.993646085, 0.0115812607, -0.111953251, -0.099227041, 0.559593976, -0.822803915, 0.0531191789, 0.828679264, 0.557189345) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.623640537, -1.40094459, -0.807941079, 0.984673023, -0.138103008, 0.10651999, 0.112384647, 0.969453514, 0.218007401, -0.133374065, -0.202698529, 0.970111072) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(2.83122063e-07, -0.99989301, 1.78813934e-07, 0.977104902, 0.0375199914, 0.209423587, -0.204409793, 0.438559324, 0.875140488, -0.059009742, -0.897917449, 0.436190426),
- CFrame.new(-0.0242593139, 1.4979986, -0.03753189, 0.971408665, -0.0485223904, -0.232401133, 0.0645403415, 0.995997548, 0.0618148446, 0.228472546, -0.0750510097, 0.970648646) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.18573701, 0.414276123, -1.31637478, 0.802844584, 0.177142143, 0.569263339, 0.582189262, -0.0272423327, -0.812595367, -0.128437385, 0.983804226, -0.124996483) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.73564446, 0.652620435, 0.834532022, 0.776496887, -0.0114186555, -0.630017281, -0.610951602, -0.258373797, -0.748317242, -0.154230401, 0.965974331, -0.207599998) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.520981669, -0.422968447, -0.892016351, 0.967023134, -0.211135179, -0.14243412, 0.000440508127, 0.560633063, -0.828062773, 0.254687697, 0.800687909, 0.542239964) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.476386189, -1.34263158, -0.864169657, 0.989634395, -0.0998843908, -0.103182182, 0.104020357, 0.993940651, 0.0354899466, 0.099013336, -0.0458596051, 0.994024336) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-5.96046448e-07, -0.999893427, 7.74860382e-07, 0.961799145, 0.0658702701, 0.265713274, -0.267319024, 0.435204655, 0.859724402, -0.0590097196, -0.897917509, 0.436190337),
- CFrame.new(-0.0252212435, 1.49850059, -0.0275647566, 0.966137707, -0.0502350517, -0.253087848, 0.0625038892, 0.997215033, 0.0406612456, 0.250341982, -0.0551075637, 0.96658349) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.21471298, 0.424310327, -1.2917999, 0.788307428, 0.102404594, 0.606699228, 0.611210406, -0.0170902312, -0.791282058, -0.070662573, 0.99459219, -0.0760580301) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.75177062, 0.673558176, 0.875452578, 0.751103342, 0.0332292244, -0.659347296, -0.630086064, -0.262031913, -0.730977774, -0.197054639, 0.964484036, -0.175873935) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.604441464, -0.430216074, -0.895644188, 0.95117718, -0.269755483, -0.149977282, 0.0271138474, 0.557071149, -0.830020666, 0.307452261, 0.785425067, 0.537189126) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.349507213, -1.34481061, -0.851489842, 0.974119723, -0.133618444, -0.182307869, 0.142266124, 0.989203215, 0.0351443291, 0.175645098, -0.0601754785, 0.982608438) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(5.96046448e-07, -0.999893546, 8.64267349e-07, 0.942447543, 0.093943432, 0.320885152, -0.329103708, 0.430019498, 0.840691745, -0.0590097383, -0.897917449, 0.436190426),
- CFrame.new(-0.0261842869, 1.49900281, -0.0175977293, 0.960412085, -0.0523733161, -0.273613572, 0.0599914901, 0.998006582, 0.0195385814, 0.272046983, -0.0351837575, 0.961636364) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.24368668, 0.434344113, -1.26722538, 0.768342555, 0.0267384127, 0.639479101, 0.639877915, -0.00968885422, -0.768414021, -0.0143505037, 0.999591708, -0.0245484114) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.76789629, 0.694496214, 0.916373134, 0.722982705, 0.0776249394, -0.686490357, -0.648381114, -0.266831756, -0.713022053, -0.238520324, 0.960609317, -0.142583132) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.68790102, -0.437463164, -0.899271846, 0.931745231, -0.327330798, -0.157176048, 0.0535043478, 0.551894009, -0.832194746, 0.359149396, 0.766978681, 0.531739891) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.222629815, -1.34698939, -0.83881104, 0.951186299, -0.165918007, -0.260220498, 0.180168867, 0.983122885, 0.031722039, 0.250567198, -0.0770615637, 0.965023041) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(2.30967999e-07, -0.999893963, 5.06639481e-07, 0.986100018, 0.140607759, -0.0885225981, 0.0181170646, 0.438606352, 0.89849031, 0.165162221, -0.887610137, 0.429964781),
- CFrame.new(-0.0640343279, 1.49422717, -0.0125310048, 0.990809321, -0.130005136, 0.0373591334, 0.128403872, 0.99081099, 0.0424716175, -0.0425379872, -0.0372885466, 0.998394191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.15180314, 0.550270677, -1.05980325, 0.768902063, 0.424801946, 0.477842063, 0.527837694, -7.74860382e-06, -0.849343956, -0.360800505, 0.90528214, -0.224227875) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.58762348, 0.737942457, -0.15229927, 0.778471112, 0.0644336343, -0.624364495, -0.614694655, -0.12302509, -0.779110312, -0.127010316, 0.990305543, -0.056160599) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.37572515, -0.515403211, -0.991176069, 0.995582402, 0.016173996, 0.0924883261, 0.0711732283, 0.512458861, -0.855755806, -0.0612377338, 0.858552814, 0.509046078) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.491690487, -1.35698009, -0.82369113, 0.956947505, -0.275629193, 0.090995416, 0.262711406, 0.955764771, 0.132265508, -0.123427376, -0.102669537, 0.987023532) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-5.06639481e-07, -0.999894142, 1.07288361e-06, 0.858471572, 0.178060263, -0.480958581, 0.358273476, 0.462803632, 0.810827672, 0.366967648, -0.86839211, 0.333511382),
- CFrame.new(-0.101883829, 1.48945296, -0.0074640438, 0.917335093, -0.203765288, 0.342015803, 0.185582131, 0.978905261, 0.0854466856, -0.352215439, -0.0149147213, 0.935796142) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.05991518, 0.666196585, -0.852383673, 0.61665988, 0.749396563, 0.241109774, 0.412197709, -0.0464370549, -0.909908772, -0.670688808, 0.660485744, -0.337531775) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.40734005, 0.781389475, -1.22097242, 0.827298582, 0.039218843, -0.560390532, -0.561401725, 0.0219762027, -0.827249944, -0.020128876, 0.998984993, 0.0402037501) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.0635492206, -0.593341887, -1.08308196, 0.877068341, 0.366972506, 0.309969127, 0.106246166, 0.481096804, -0.870203972, -0.468468666, 0.796156824, 0.382967353) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.760750234, -1.36696911, -0.80857408, 0.82395941, -0.38422668, 0.416484386, 0.300041229, 0.919338584, 0.254537076, -0.4806934, -0.0847682357, 0.872777641) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-4.47034836e-07, -0.999894261, 5.66244125e-07, 0.849292338, 0.166491091, -0.500982285, 0.379520297, 0.467090189, 0.798611104, 0.366967648, -0.868392169, 0.333511293),
- CFrame.new(-0.094722636, 1.49072301, -0.0120365694, 0.90496558, -0.18927525, 0.381065071, 0.165003479, 0.981636047, 0.0957182646, -0.392187506, -0.0237482488, 0.919574738) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.14258587, 0.588058114, -0.717229545, 0.605233371, 0.766759098, 0.213942304, 0.404277116, -0.064547956, -0.912354648, -0.685749471, 0.638676047, -0.349046022) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.41818511, 0.758238077, -1.2693187, 0.822256386, 0.0601323396, -0.565930188, -0.568200827, 0.0303300619, -0.822329164, -0.0322842002, 0.997725546, 0.0591117293) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.00176043436, -0.602468848, -1.03498507, 0.871310949, 0.379908383, 0.310620844, 0.0991499573, 0.483629704, -0.869637251, -0.480610579, 0.788517952, 0.38372606) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.760748982, -1.36696899, -0.808574021, 0.823959351, -0.384226739, 0.416484296, 0.300041199, 0.919338644, 0.254537046, -0.48069346, -0.0847682059, 0.872777641) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-4.47034836e-07, -0.9998945, 5.66244125e-07, 0.83958739, 0.154818773, -0.520695865, 0.400532097, 0.471087784, 0.785900056, 0.366967648, -0.868392169, 0.333511382),
- CFrame.new(-0.0875619128, 1.49199355, -0.0166099146, 0.890668392, -0.175116688, 0.419573903, 0.143955007, 0.983986795, 0.105092585, -0.431261867, -0.0332064331, 0.901611626) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.22525573, 0.509919107, -0.582074583, 0.593235552, 0.783146381, 0.186417744, 0.39666304, -0.0828590691, -0.914215565, -0.700521111, 0.616286933, -0.359796435) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.42903042, 0.735086501, -1.31766438, 0.816909552, 0.0810803846, -0.571036816, -0.575064123, 0.0385041535, -0.817200065, -0.0442720056, 0.99595958, 0.0780862272) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.0670694858, -0.611595213, -0.986888885, 0.865357518, 0.392754436, 0.311285377, 0.092016086, 0.486053675, -0.869069755, -0.49263525, 0.780694842, 0.384472579) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.760748923, -1.36696815, -0.808573961, 0.823959351, -0.384226769, 0.416484147, 0.300041109, 0.919338703, 0.254537016, -0.480693609, -0.0847682357, 0.87277776) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-2.08616257e-07, -0.966068625, 1.43051147e-06, 0.815178335, 0.129189402, -0.564618826, 0.42910862, 0.520038009, 0.738522112, 0.389034688, -0.844314754, 0.368489563),
- CFrame.new(-0.0875611007, 1.49199224, -0.0166103169, 0.890668213, -0.175116792, 0.419573784, 0.143954813, 0.983986437, 0.105092406, -0.431262046, -0.0332064629, 0.901612043) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.52863717, 0.657275081, -0.318234116, 0.679287672, 0.633161545, 0.371042758, 0.53664577, -0.0836998224, -0.839644074, -0.500578761, 0.769476354, -0.396637291) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.34852469, 0.698678017, -1.09496355, 0.790168524, -0.220005214, -0.572039604, -0.591695845, -0.030509606, -0.805581689, 0.159779161, 0.975019395, -0.154278293) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.119650036, -0.640211701, -0.991198599, 0.849794805, 0.426327944, 0.309985965, 0.0695280582, 0.492281109, -0.867653012, -0.522508204, 0.758875847, 0.388698667) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.814164042, -1.35116899, -0.669189095, 0.790540636, -0.371530592, 0.486835092, 0.231098235, 0.917160392, 0.324664533, -0.567132354, -0.144156396, 0.810909152) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-3.87430191e-07, -0.932242632, 1.49011612e-07, 0.789167523, 0.100808881, -0.605848312, 0.455179006, 0.566261947, 0.687130272, 0.412340045, -0.818035007, 0.400991738),
- CFrame.new(-0.0875622183, 1.49199128, -0.0166100115, 0.890668035, -0.175116986, 0.419573724, 0.143954605, 0.983986139, 0.105092347, -0.431262165, -0.0332065523, 0.901612401) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.83201766, 0.804629385, -0.0543928742, 0.701660335, 0.454507709, 0.548719645, 0.658078492, -0.118182898, -0.743613839, -0.27313453, 0.882864177, -0.382024795) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.2680192, 0.662270904, -0.872260809, 0.703609347, -0.501396656, -0.503520608, -0.621284127, -0.0901664197, -0.778377831, 0.344875813, 0.860505819, -0.374946654) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.172228545, -0.668826401, -0.995510042, 0.832885325, 0.459249943, 0.308851242, 0.0468116701, 0.497590601, -0.866145611, -0.551462293, 0.735854328, 0.392940581) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.867577791, -1.33536863, -0.529804945, 0.749274909, -0.363453418, 0.553612113, 0.155212194, 0.909038901, 0.386721551, -0.643813848, -0.203836203, 0.737529039) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-2.68220901e-07, -0.999893248, -2.68220901e-07, 0.954200089, -0.00391276274, -0.299143642, 0.268353909, 0.453180045, 0.850060284, 0.132240608, -0.891409099, 0.433476955),
- CFrame.new(0.0152890515, 1.49958897, -0.0132527612, 0.947095871, 0.0305804089, 0.319489479, -0.0374381319, 0.999179959, 0.0153393447, -0.318759918, -0.0264934003, 0.947460771) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.244054884, 0.760140538, -0.882296562, 0.324009687, 0.942025781, 0.087203607, 0.776880264, -0.212337226, -0.592762589, -0.539884031, 0.259805381, -0.800636113) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.61807597, 0.865841269, 0.247788012, 0.776497781, -0.0114205256, -0.63001579, -0.610952497, -0.258373886, -0.748316407, -0.154232383, 0.965974569, -0.207598612) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.162140846, -0.487857193, -1.07413805, 0.969012618, 0.234132111, -0.0787148774, -0.196268559, 0.536322355, -0.820874155, -0.149977773, 0.810881615, 0.565658271) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.770895422, -1.45925665, -0.751712978, 0.9308303, -0.2075831, 0.300771624, 0.0780321509, 0.916931391, 0.391338021, -0.357023984, -0.340802133, 0.869700789) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(6.03497028e-07, -0.999893248, 2.38418579e-07, 0.998761952, 0.0178419854, -0.0464358255, 0.03351878, 0.448369652, 0.893213153, 0.0367573202, -0.89366889, 0.447219044),
- CFrame.new(-0.00448577758, 1.4987936, -0.0253925398, 0.998874366, -0.0124089196, 0.0457824394, 0.0103109125, 0.998897374, 0.0457764864, -0.046300225, -0.0452573001, 0.997897267) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.714897156, 0.587207496, -1.09933567, 0.622750521, 0.657323837, 0.424390614, 0.666898847, -0.162277102, -0.727261782, -0.409179419, 0.73592633, -0.539421618) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.67686212, 0.759229779, 0.541159928, 0.776497602, -0.0114196949, -0.630016863, -0.610952139, -0.258373946, -0.748316824, -0.154231384, 0.965974212, -0.207599372) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.341561019, -0.455413282, -0.983077049, 0.993646085, 0.0115812607, -0.111953251, -0.099227041, 0.559593976, -0.822803915, 0.0531191789, 0.828679264, 0.557189345) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.623640537, -1.40094459, -0.807941079, 0.984673023, -0.138103008, 0.10651999, 0.112384647, 0.969453514, 0.218007401, -0.133374065, -0.202698529, 0.970111072) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(2.83122063e-07, -0.99989301, 1.78813934e-07, 0.977104902, 0.0375199914, 0.209423587, -0.204409793, 0.438559324, 0.875140488, -0.059009742, -0.897917449, 0.436190426),
- CFrame.new(-0.0242593139, 1.4979986, -0.03753189, 0.971408665, -0.0485223904, -0.232401133, 0.0645403415, 0.995997548, 0.0618148446, 0.228472546, -0.0750510097, 0.970648646) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.18573701, 0.414276123, -1.31637478, 0.802844584, 0.177142143, 0.569263339, 0.582189262, -0.0272423327, -0.812595367, -0.128437385, 0.983804226, -0.124996483) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.73564446, 0.652620435, 0.834532022, 0.776496887, -0.0114186555, -0.630017281, -0.610951602, -0.258373797, -0.748317242, -0.154230401, 0.965974331, -0.207599998) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.520981669, -0.422968447, -0.892016351, 0.967023134, -0.211135179, -0.14243412, 0.000440508127, 0.560633063, -0.828062773, 0.254687697, 0.800687909, 0.542239964) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.476386189, -1.34263158, -0.864169657, 0.989634395, -0.0998843908, -0.103182182, 0.104020357, 0.993940651, 0.0354899466, 0.099013336, -0.0458596051, 0.994024336) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-5.96046448e-07, -0.999893427, 7.74860382e-07, 0.961799145, 0.0658702701, 0.265713274, -0.267319024, 0.435204655, 0.859724402, -0.0590097196, -0.897917509, 0.436190337),
- CFrame.new(-0.0252212435, 1.49850059, -0.0275647566, 0.966137707, -0.0502350517, -0.253087848, 0.0625038892, 0.997215033, 0.0406612456, 0.250341982, -0.0551075637, 0.96658349) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.21471298, 0.424310327, -1.2917999, 0.788307428, 0.102404594, 0.606699228, 0.611210406, -0.0170902312, -0.791282058, -0.070662573, 0.99459219, -0.0760580301) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.75177062, 0.673558176, 0.875452578, 0.751103342, 0.0332292244, -0.659347296, -0.630086064, -0.262031913, -0.730977774, -0.197054639, 0.964484036, -0.175873935) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.604441464, -0.430216074, -0.895644188, 0.95117718, -0.269755483, -0.149977282, 0.0271138474, 0.557071149, -0.830020666, 0.307452261, 0.785425067, 0.537189126) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.349507213, -1.34481061, -0.851489842, 0.974119723, -0.133618444, -0.182307869, 0.142266124, 0.989203215, 0.0351443291, 0.175645098, -0.0601754785, 0.982608438) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(5.96046448e-07, -0.999893546, 8.64267349e-07, 0.942447543, 0.093943432, 0.320885152, -0.329103708, 0.430019498, 0.840691745, -0.0590097383, -0.897917449, 0.436190426),
- CFrame.new(-0.0261842869, 1.49900281, -0.0175977293, 0.960412085, -0.0523733161, -0.273613572, 0.0599914901, 0.998006582, 0.0195385814, 0.272046983, -0.0351837575, 0.961636364) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.24368668, 0.434344113, -1.26722538, 0.768342555, 0.0267384127, 0.639479101, 0.639877915, -0.00968885422, -0.768414021, -0.0143505037, 0.999591708, -0.0245484114) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.76789629, 0.694496214, 0.916373134, 0.722982705, 0.0776249394, -0.686490357, -0.648381114, -0.266831756, -0.713022053, -0.238520324, 0.960609317, -0.142583132) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.68790102, -0.437463164, -0.899271846, 0.931745231, -0.327330798, -0.157176048, 0.0535043478, 0.551894009, -0.832194746, 0.359149396, 0.766978681, 0.531739891) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.222629815, -1.34698939, -0.83881104, 0.951186299, -0.165918007, -0.260220498, 0.180168867, 0.983122885, 0.031722039, 0.250567198, -0.0770615637, 0.965023041) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(2.30967999e-07, -0.999893963, 5.06639481e-07, 0.986100018, 0.140607759, -0.0885225981, 0.0181170646, 0.438606352, 0.89849031, 0.165162221, -0.887610137, 0.429964781),
- CFrame.new(-0.0640343279, 1.49422717, -0.0125310048, 0.990809321, -0.130005136, 0.0373591334, 0.128403872, 0.99081099, 0.0424716175, -0.0425379872, -0.0372885466, 0.998394191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.15180314, 0.550270677, -1.05980325, 0.768902063, 0.424801946, 0.477842063, 0.527837694, -7.74860382e-06, -0.849343956, -0.360800505, 0.90528214, -0.224227875) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.58762348, 0.737942457, -0.15229927, 0.778471112, 0.0644336343, -0.624364495, -0.614694655, -0.12302509, -0.779110312, -0.127010316, 0.990305543, -0.056160599) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.37572515, -0.515403211, -0.991176069, 0.995582402, 0.016173996, 0.0924883261, 0.0711732283, 0.512458861, -0.855755806, -0.0612377338, 0.858552814, 0.509046078) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.491690487, -1.35698009, -0.82369113, 0.956947505, -0.275629193, 0.090995416, 0.262711406, 0.955764771, 0.132265508, -0.123427376, -0.102669537, 0.987023532) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-5.06639481e-07, -0.999894142, 1.07288361e-06, 0.858471572, 0.178060263, -0.480958581, 0.358273476, 0.462803632, 0.810827672, 0.366967648, -0.86839211, 0.333511382),
- CFrame.new(-0.101883829, 1.48945296, -0.0074640438, 0.917335093, -0.203765288, 0.342015803, 0.185582131, 0.978905261, 0.0854466856, -0.352215439, -0.0149147213, 0.935796142) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.05991518, 0.666196585, -0.852383673, 0.61665988, 0.749396563, 0.241109774, 0.412197709, -0.0464370549, -0.909908772, -0.670688808, 0.660485744, -0.337531775) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.40734005, 0.781389475, -1.22097242, 0.827298582, 0.039218843, -0.560390532, -0.561401725, 0.0219762027, -0.827249944, -0.020128876, 0.998984993, 0.0402037501) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.0635492206, -0.593341887, -1.08308196, 0.877068341, 0.366972506, 0.309969127, 0.106246166, 0.481096804, -0.870203972, -0.468468666, 0.796156824, 0.382967353) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.760750234, -1.36696911, -0.80857408, 0.82395941, -0.38422668, 0.416484386, 0.300041229, 0.919338584, 0.254537076, -0.4806934, -0.0847682357, 0.872777641) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-4.47034836e-07, -0.999894261, 5.66244125e-07, 0.849292338, 0.166491091, -0.500982285, 0.379520297, 0.467090189, 0.798611104, 0.366967648, -0.868392169, 0.333511293),
- CFrame.new(-0.094722636, 1.49072301, -0.0120365694, 0.90496558, -0.18927525, 0.381065071, 0.165003479, 0.981636047, 0.0957182646, -0.392187506, -0.0237482488, 0.919574738) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.14258587, 0.588058114, -0.717229545, 0.605233371, 0.766759098, 0.213942304, 0.404277116, -0.064547956, -0.912354648, -0.685749471, 0.638676047, -0.349046022) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.41818511, 0.758238077, -1.2693187, 0.822256386, 0.0601323396, -0.565930188, -0.568200827, 0.0303300619, -0.822329164, -0.0322842002, 0.997725546, 0.0591117293) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.00176043436, -0.602468848, -1.03498507, 0.871310949, 0.379908383, 0.310620844, 0.0991499573, 0.483629704, -0.869637251, -0.480610579, 0.788517952, 0.38372606) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.760748982, -1.36696899, -0.808574021, 0.823959351, -0.384226739, 0.416484296, 0.300041199, 0.919338644, 0.254537046, -0.48069346, -0.0847682059, 0.872777641) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-4.47034836e-07, -0.9998945, 5.66244125e-07, 0.83958739, 0.154818773, -0.520695865, 0.400532097, 0.471087784, 0.785900056, 0.366967648, -0.868392169, 0.333511382),
- CFrame.new(-0.0875619128, 1.49199355, -0.0166099146, 0.890668392, -0.175116688, 0.419573903, 0.143955007, 0.983986795, 0.105092585, -0.431261867, -0.0332064331, 0.901611626) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.22525573, 0.509919107, -0.582074583, 0.593235552, 0.783146381, 0.186417744, 0.39666304, -0.0828590691, -0.914215565, -0.700521111, 0.616286933, -0.359796435) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.42903042, 0.735086501, -1.31766438, 0.816909552, 0.0810803846, -0.571036816, -0.575064123, 0.0385041535, -0.817200065, -0.0442720056, 0.99595958, 0.0780862272) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.0670694858, -0.611595213, -0.986888885, 0.865357518, 0.392754436, 0.311285377, 0.092016086, 0.486053675, -0.869069755, -0.49263525, 0.780694842, 0.384472579) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.760748923, -1.36696815, -0.808573961, 0.823959351, -0.384226769, 0.416484147, 0.300041109, 0.919338703, 0.254537016, -0.480693609, -0.0847682357, 0.87277776) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-2.08616257e-07, -0.966068625, 1.43051147e-06, 0.815178335, 0.129189402, -0.564618826, 0.42910862, 0.520038009, 0.738522112, 0.389034688, -0.844314754, 0.368489563),
- CFrame.new(-0.0875611007, 1.49199224, -0.0166103169, 0.890668213, -0.175116792, 0.419573784, 0.143954813, 0.983986437, 0.105092406, -0.431262046, -0.0332064629, 0.901612043) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.52863717, 0.657275081, -0.318234116, 0.679287672, 0.633161545, 0.371042758, 0.53664577, -0.0836998224, -0.839644074, -0.500578761, 0.769476354, -0.396637291) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.34852469, 0.698678017, -1.09496355, 0.790168524, -0.220005214, -0.572039604, -0.591695845, -0.030509606, -0.805581689, 0.159779161, 0.975019395, -0.154278293) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.119650036, -0.640211701, -0.991198599, 0.849794805, 0.426327944, 0.309985965, 0.0695280582, 0.492281109, -0.867653012, -0.522508204, 0.758875847, 0.388698667) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.814164042, -1.35116899, -0.669189095, 0.790540636, -0.371530592, 0.486835092, 0.231098235, 0.917160392, 0.324664533, -0.567132354, -0.144156396, 0.810909152) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-3.87430191e-07, -0.932242632, 1.49011612e-07, 0.789167523, 0.100808881, -0.605848312, 0.455179006, 0.566261947, 0.687130272, 0.412340045, -0.818035007, 0.400991738),
- CFrame.new(-0.0875622183, 1.49199128, -0.0166100115, 0.890668035, -0.175116986, 0.419573724, 0.143954605, 0.983986139, 0.105092347, -0.431262165, -0.0332065523, 0.901612401) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.83201766, 0.804629385, -0.0543928742, 0.701660335, 0.454507709, 0.548719645, 0.658078492, -0.118182898, -0.743613839, -0.27313453, 0.882864177, -0.382024795) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.2680192, 0.662270904, -0.872260809, 0.703609347, -0.501396656, -0.503520608, -0.621284127, -0.0901664197, -0.778377831, 0.344875813, 0.860505819, -0.374946654) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.172228545, -0.668826401, -0.995510042, 0.832885325, 0.459249943, 0.308851242, 0.0468116701, 0.497590601, -0.866145611, -0.551462293, 0.735854328, 0.392940581) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.867577791, -1.33536863, -0.529804945, 0.749274909, -0.363453418, 0.553612113, 0.155212194, 0.909038901, 0.386721551, -0.643813848, -0.203836203, 0.737529039) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-2.68220901e-07, -0.999893248, -2.68220901e-07, 0.954200089, -0.00391276274, -0.299143642, 0.268353909, 0.453180045, 0.850060284, 0.132240608, -0.891409099, 0.433476955),
- CFrame.new(0.0152890515, 1.49958897, -0.0132527612, 0.947095871, 0.0305804089, 0.319489479, -0.0374381319, 0.999179959, 0.0153393447, -0.318759918, -0.0264934003, 0.947460771) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.244054884, 0.760140538, -0.882296562, 0.324009687, 0.942025781, 0.087203607, 0.776880264, -0.212337226, -0.592762589, -0.539884031, 0.259805381, -0.800636113) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.61807597, 0.865841269, 0.247788012, 0.776497781, -0.0114205256, -0.63001579, -0.610952497, -0.258373886, -0.748316407, -0.154232383, 0.965974569, -0.207598612) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.162140846, -0.487857193, -1.07413805, 0.969012618, 0.234132111, -0.0787148774, -0.196268559, 0.536322355, -0.820874155, -0.149977773, 0.810881615, 0.565658271) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.770895422, -1.45925665, -0.751712978, 0.9308303, -0.2075831, 0.300771624, 0.0780321509, 0.916931391, 0.391338021, -0.357023984, -0.340802133, 0.869700789) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(6.03497028e-07, -0.999893248, 2.38418579e-07, 0.998761952, 0.0178419854, -0.0464358255, 0.03351878, 0.448369652, 0.893213153, 0.0367573202, -0.89366889, 0.447219044),
- CFrame.new(-0.00448577758, 1.4987936, -0.0253925398, 0.998874366, -0.0124089196, 0.0457824394, 0.0103109125, 0.998897374, 0.0457764864, -0.046300225, -0.0452573001, 0.997897267) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.714897156, 0.587207496, -1.09933567, 0.622750521, 0.657323837, 0.424390614, 0.666898847, -0.162277102, -0.727261782, -0.409179419, 0.73592633, -0.539421618) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.67686212, 0.759229779, 0.541159928, 0.776497602, -0.0114196949, -0.630016863, -0.610952139, -0.258373946, -0.748316824, -0.154231384, 0.965974212, -0.207599372) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.341561019, -0.455413282, -0.983077049, 0.993646085, 0.0115812607, -0.111953251, -0.099227041, 0.559593976, -0.822803915, 0.0531191789, 0.828679264, 0.557189345) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.623640537, -1.40094459, -0.807941079, 0.984673023, -0.138103008, 0.10651999, 0.112384647, 0.969453514, 0.218007401, -0.133374065, -0.202698529, 0.970111072) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(2.83122063e-07, -0.99989301, 1.78813934e-07, 0.977104902, 0.0375199914, 0.209423587, -0.204409793, 0.438559324, 0.875140488, -0.059009742, -0.897917449, 0.436190426),
- CFrame.new(-0.0242593139, 1.4979986, -0.03753189, 0.971408665, -0.0485223904, -0.232401133, 0.0645403415, 0.995997548, 0.0618148446, 0.228472546, -0.0750510097, 0.970648646) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.18573701, 0.414276123, -1.31637478, 0.802844584, 0.177142143, 0.569263339, 0.582189262, -0.0272423327, -0.812595367, -0.128437385, 0.983804226, -0.124996483) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.73564446, 0.652620435, 0.834532022, 0.776496887, -0.0114186555, -0.630017281, -0.610951602, -0.258373797, -0.748317242, -0.154230401, 0.965974331, -0.207599998) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.520981669, -0.422968447, -0.892016351, 0.967023134, -0.211135179, -0.14243412, 0.000440508127, 0.560633063, -0.828062773, 0.254687697, 0.800687909, 0.542239964) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.476386189, -1.34263158, -0.864169657, 0.989634395, -0.0998843908, -0.103182182, 0.104020357, 0.993940651, 0.0354899466, 0.099013336, -0.0458596051, 0.994024336) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-5.96046448e-07, -0.999893427, 7.74860382e-07, 0.961799145, 0.0658702701, 0.265713274, -0.267319024, 0.435204655, 0.859724402, -0.0590097196, -0.897917509, 0.436190337),
- CFrame.new(-0.0252212435, 1.49850059, -0.0275647566, 0.966137707, -0.0502350517, -0.253087848, 0.0625038892, 0.997215033, 0.0406612456, 0.250341982, -0.0551075637, 0.96658349) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.21471298, 0.424310327, -1.2917999, 0.788307428, 0.102404594, 0.606699228, 0.611210406, -0.0170902312, -0.791282058, -0.070662573, 0.99459219, -0.0760580301) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.75177062, 0.673558176, 0.875452578, 0.751103342, 0.0332292244, -0.659347296, -0.630086064, -0.262031913, -0.730977774, -0.197054639, 0.964484036, -0.175873935) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.604441464, -0.430216074, -0.895644188, 0.95117718, -0.269755483, -0.149977282, 0.0271138474, 0.557071149, -0.830020666, 0.307452261, 0.785425067, 0.537189126) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.349507213, -1.34481061, -0.851489842, 0.974119723, -0.133618444, -0.182307869, 0.142266124, 0.989203215, 0.0351443291, 0.175645098, -0.0601754785, 0.982608438) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(5.96046448e-07, -0.999893546, 8.64267349e-07, 0.942447543, 0.093943432, 0.320885152, -0.329103708, 0.430019498, 0.840691745, -0.0590097383, -0.897917449, 0.436190426),
- CFrame.new(-0.0261842869, 1.49900281, -0.0175977293, 0.960412085, -0.0523733161, -0.273613572, 0.0599914901, 0.998006582, 0.0195385814, 0.272046983, -0.0351837575, 0.961636364) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.24368668, 0.434344113, -1.26722538, 0.768342555, 0.0267384127, 0.639479101, 0.639877915, -0.00968885422, -0.768414021, -0.0143505037, 0.999591708, -0.0245484114) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.76789629, 0.694496214, 0.916373134, 0.722982705, 0.0776249394, -0.686490357, -0.648381114, -0.266831756, -0.713022053, -0.238520324, 0.960609317, -0.142583132) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.68790102, -0.437463164, -0.899271846, 0.931745231, -0.327330798, -0.157176048, 0.0535043478, 0.551894009, -0.832194746, 0.359149396, 0.766978681, 0.531739891) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.222629815, -1.34698939, -0.83881104, 0.951186299, -0.165918007, -0.260220498, 0.180168867, 0.983122885, 0.031722039, 0.250567198, -0.0770615637, 0.965023041) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(2.30967999e-07, -0.999893963, 5.06639481e-07, 0.986100018, 0.140607759, -0.0885225981, 0.0181170646, 0.438606352, 0.89849031, 0.165162221, -0.887610137, 0.429964781),
- CFrame.new(-0.0640343279, 1.49422717, -0.0125310048, 0.990809321, -0.130005136, 0.0373591334, 0.128403872, 0.99081099, 0.0424716175, -0.0425379872, -0.0372885466, 0.998394191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.15180314, 0.550270677, -1.05980325, 0.768902063, 0.424801946, 0.477842063, 0.527837694, -7.74860382e-06, -0.849343956, -0.360800505, 0.90528214, -0.224227875) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.58762348, 0.737942457, -0.15229927, 0.778471112, 0.0644336343, -0.624364495, -0.614694655, -0.12302509, -0.779110312, -0.127010316, 0.990305543, -0.056160599) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.37572515, -0.515403211, -0.991176069, 0.995582402, 0.016173996, 0.0924883261, 0.0711732283, 0.512458861, -0.855755806, -0.0612377338, 0.858552814, 0.509046078) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.491690487, -1.35698009, -0.82369113, 0.956947505, -0.275629193, 0.090995416, 0.262711406, 0.955764771, 0.132265508, -0.123427376, -0.102669537, 0.987023532) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-5.06639481e-07, -0.999894142, 1.07288361e-06, 0.858471572, 0.178060263, -0.480958581, 0.358273476, 0.462803632, 0.810827672, 0.366967648, -0.86839211, 0.333511382),
- CFrame.new(-0.101883829, 1.48945296, -0.0074640438, 0.917335093, -0.203765288, 0.342015803, 0.185582131, 0.978905261, 0.0854466856, -0.352215439, -0.0149147213, 0.935796142) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.05991518, 0.666196585, -0.852383673, 0.61665988, 0.749396563, 0.241109774, 0.412197709, -0.0464370549, -0.909908772, -0.670688808, 0.660485744, -0.337531775) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.40734005, 0.781389475, -1.22097242, 0.827298582, 0.039218843, -0.560390532, -0.561401725, 0.0219762027, -0.827249944, -0.020128876, 0.998984993, 0.0402037501) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.0635492206, -0.593341887, -1.08308196, 0.877068341, 0.366972506, 0.309969127, 0.106246166, 0.481096804, -0.870203972, -0.468468666, 0.796156824, 0.382967353) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.760750234, -1.36696911, -0.80857408, 0.82395941, -0.38422668, 0.416484386, 0.300041229, 0.919338584, 0.254537076, -0.4806934, -0.0847682357, 0.872777641) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-4.47034836e-07, -0.999894261, 5.66244125e-07, 0.849292338, 0.166491091, -0.500982285, 0.379520297, 0.467090189, 0.798611104, 0.366967648, -0.868392169, 0.333511293),
- CFrame.new(-0.094722636, 1.49072301, -0.0120365694, 0.90496558, -0.18927525, 0.381065071, 0.165003479, 0.981636047, 0.0957182646, -0.392187506, -0.0237482488, 0.919574738) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.14258587, 0.588058114, -0.717229545, 0.605233371, 0.766759098, 0.213942304, 0.404277116, -0.064547956, -0.912354648, -0.685749471, 0.638676047, -0.349046022) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.41818511, 0.758238077, -1.2693187, 0.822256386, 0.0601323396, -0.565930188, -0.568200827, 0.0303300619, -0.822329164, -0.0322842002, 0.997725546, 0.0591117293) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.00176043436, -0.602468848, -1.03498507, 0.871310949, 0.379908383, 0.310620844, 0.0991499573, 0.483629704, -0.869637251, -0.480610579, 0.788517952, 0.38372606) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.760748982, -1.36696899, -0.808574021, 0.823959351, -0.384226739, 0.416484296, 0.300041199, 0.919338644, 0.254537046, -0.48069346, -0.0847682059, 0.872777641) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-4.47034836e-07, -0.9998945, 5.66244125e-07, 0.83958739, 0.154818773, -0.520695865, 0.400532097, 0.471087784, 0.785900056, 0.366967648, -0.868392169, 0.333511382),
- CFrame.new(-0.0875619128, 1.49199355, -0.0166099146, 0.890668392, -0.175116688, 0.419573903, 0.143955007, 0.983986795, 0.105092585, -0.431261867, -0.0332064331, 0.901611626) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.22525573, 0.509919107, -0.582074583, 0.593235552, 0.783146381, 0.186417744, 0.39666304, -0.0828590691, -0.914215565, -0.700521111, 0.616286933, -0.359796435) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.42903042, 0.735086501, -1.31766438, 0.816909552, 0.0810803846, -0.571036816, -0.575064123, 0.0385041535, -0.817200065, -0.0442720056, 0.99595958, 0.0780862272) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.0670694858, -0.611595213, -0.986888885, 0.865357518, 0.392754436, 0.311285377, 0.092016086, 0.486053675, -0.869069755, -0.49263525, 0.780694842, 0.384472579) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.760748923, -1.36696815, -0.808573961, 0.823959351, -0.384226769, 0.416484147, 0.300041109, 0.919338703, 0.254537016, -0.480693609, -0.0847682357, 0.87277776) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-2.08616257e-07, -0.966068625, 1.43051147e-06, 0.815178335, 0.129189402, -0.564618826, 0.42910862, 0.520038009, 0.738522112, 0.389034688, -0.844314754, 0.368489563),
- CFrame.new(-0.0875611007, 1.49199224, -0.0166103169, 0.890668213, -0.175116792, 0.419573784, 0.143954813, 0.983986437, 0.105092406, -0.431262046, -0.0332064629, 0.901612043) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.52863717, 0.657275081, -0.318234116, 0.679287672, 0.633161545, 0.371042758, 0.53664577, -0.0836998224, -0.839644074, -0.500578761, 0.769476354, -0.396637291) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.34852469, 0.698678017, -1.09496355, 0.790168524, -0.220005214, -0.572039604, -0.591695845, -0.030509606, -0.805581689, 0.159779161, 0.975019395, -0.154278293) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.119650036, -0.640211701, -0.991198599, 0.849794805, 0.426327944, 0.309985965, 0.0695280582, 0.492281109, -0.867653012, -0.522508204, 0.758875847, 0.388698667) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.814164042, -1.35116899, -0.669189095, 0.790540636, -0.371530592, 0.486835092, 0.231098235, 0.917160392, 0.324664533, -0.567132354, -0.144156396, 0.810909152) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-3.87430191e-07, -0.932242632, 1.49011612e-07, 0.789167523, 0.100808881, -0.605848312, 0.455179006, 0.566261947, 0.687130272, 0.412340045, -0.818035007, 0.400991738),
- CFrame.new(-0.0875622183, 1.49199128, -0.0166100115, 0.890668035, -0.175116986, 0.419573724, 0.143954605, 0.983986139, 0.105092347, -0.431262165, -0.0332065523, 0.901612401) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.83201766, 0.804629385, -0.0543928742, 0.701660335, 0.454507709, 0.548719645, 0.658078492, -0.118182898, -0.743613839, -0.27313453, 0.882864177, -0.382024795) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.2680192, 0.662270904, -0.872260809, 0.703609347, -0.501396656, -0.503520608, -0.621284127, -0.0901664197, -0.778377831, 0.344875813, 0.860505819, -0.374946654) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.172228545, -0.668826401, -0.995510042, 0.832885325, 0.459249943, 0.308851242, 0.0468116701, 0.497590601, -0.866145611, -0.551462293, 0.735854328, 0.392940581) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.867577791, -1.33536863, -0.529804945, 0.749274909, -0.363453418, 0.553612113, 0.155212194, 0.909038901, 0.386721551, -0.643813848, -0.203836203, 0.737529039) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-2.68220901e-07, -0.999893248, -2.68220901e-07, 0.954200089, -0.00391276274, -0.299143642, 0.268353909, 0.453180045, 0.850060284, 0.132240608, -0.891409099, 0.433476955),
- CFrame.new(0.0152890515, 1.49958897, -0.0132527612, 0.947095871, 0.0305804089, 0.319489479, -0.0374381319, 0.999179959, 0.0153393447, -0.318759918, -0.0264934003, 0.947460771) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.244054884, 0.760140538, -0.882296562, 0.324009687, 0.942025781, 0.087203607, 0.776880264, -0.212337226, -0.592762589, -0.539884031, 0.259805381, -0.800636113) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.61807597, 0.865841269, 0.247788012, 0.776497781, -0.0114205256, -0.63001579, -0.610952497, -0.258373886, -0.748316407, -0.154232383, 0.965974569, -0.207598612) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.162140846, -0.487857193, -1.07413805, 0.969012618, 0.234132111, -0.0787148774, -0.196268559, 0.536322355, -0.820874155, -0.149977773, 0.810881615, 0.565658271) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.770895422, -1.45925665, -0.751712978, 0.9308303, -0.2075831, 0.300771624, 0.0780321509, 0.916931391, 0.391338021, -0.357023984, -0.340802133, 0.869700789) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(6.03497028e-07, -0.999893248, 2.38418579e-07, 0.998761952, 0.0178419854, -0.0464358255, 0.03351878, 0.448369652, 0.893213153, 0.0367573202, -0.89366889, 0.447219044),
- CFrame.new(-0.00448577758, 1.4987936, -0.0253925398, 0.998874366, -0.0124089196, 0.0457824394, 0.0103109125, 0.998897374, 0.0457764864, -0.046300225, -0.0452573001, 0.997897267) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.714897156, 0.587207496, -1.09933567, 0.622750521, 0.657323837, 0.424390614, 0.666898847, -0.162277102, -0.727261782, -0.409179419, 0.73592633, -0.539421618) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.67686212, 0.759229779, 0.541159928, 0.776497602, -0.0114196949, -0.630016863, -0.610952139, -0.258373946, -0.748316824, -0.154231384, 0.965974212, -0.207599372) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.341561019, -0.455413282, -0.983077049, 0.993646085, 0.0115812607, -0.111953251, -0.099227041, 0.559593976, -0.822803915, 0.0531191789, 0.828679264, 0.557189345) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.623640537, -1.40094459, -0.807941079, 0.984673023, -0.138103008, 0.10651999, 0.112384647, 0.969453514, 0.218007401, -0.133374065, -0.202698529, 0.970111072) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(2.83122063e-07, -0.99989301, 1.78813934e-07, 0.977104902, 0.0375199914, 0.209423587, -0.204409793, 0.438559324, 0.875140488, -0.059009742, -0.897917449, 0.436190426),
- CFrame.new(-0.0242593139, 1.4979986, -0.03753189, 0.971408665, -0.0485223904, -0.232401133, 0.0645403415, 0.995997548, 0.0618148446, 0.228472546, -0.0750510097, 0.970648646) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.18573701, 0.414276123, -1.31637478, 0.802844584, 0.177142143, 0.569263339, 0.582189262, -0.0272423327, -0.812595367, -0.128437385, 0.983804226, -0.124996483) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.73564446, 0.652620435, 0.834532022, 0.776496887, -0.0114186555, -0.630017281, -0.610951602, -0.258373797, -0.748317242, -0.154230401, 0.965974331, -0.207599998) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.520981669, -0.422968447, -0.892016351, 0.967023134, -0.211135179, -0.14243412, 0.000440508127, 0.560633063, -0.828062773, 0.254687697, 0.800687909, 0.542239964) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.476386189, -1.34263158, -0.864169657, 0.989634395, -0.0998843908, -0.103182182, 0.104020357, 0.993940651, 0.0354899466, 0.099013336, -0.0458596051, 0.994024336) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-5.96046448e-07, -0.999893427, 7.74860382e-07, 0.961799145, 0.0658702701, 0.265713274, -0.267319024, 0.435204655, 0.859724402, -0.0590097196, -0.897917509, 0.436190337),
- CFrame.new(-0.0252212435, 1.49850059, -0.0275647566, 0.966137707, -0.0502350517, -0.253087848, 0.0625038892, 0.997215033, 0.0406612456, 0.250341982, -0.0551075637, 0.96658349) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.21471298, 0.424310327, -1.2917999, 0.788307428, 0.102404594, 0.606699228, 0.611210406, -0.0170902312, -0.791282058, -0.070662573, 0.99459219, -0.0760580301) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.75177062, 0.673558176, 0.875452578, 0.751103342, 0.0332292244, -0.659347296, -0.630086064, -0.262031913, -0.730977774, -0.197054639, 0.964484036, -0.175873935) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.604441464, -0.430216074, -0.895644188, 0.95117718, -0.269755483, -0.149977282, 0.0271138474, 0.557071149, -0.830020666, 0.307452261, 0.785425067, 0.537189126) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.349507213, -1.34481061, -0.851489842, 0.974119723, -0.133618444, -0.182307869, 0.142266124, 0.989203215, 0.0351443291, 0.175645098, -0.0601754785, 0.982608438) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(5.96046448e-07, -0.999893546, 8.64267349e-07, 0.942447543, 0.093943432, 0.320885152, -0.329103708, 0.430019498, 0.840691745, -0.0590097383, -0.897917449, 0.436190426),
- CFrame.new(-0.0261842869, 1.49900281, -0.0175977293, 0.960412085, -0.0523733161, -0.273613572, 0.0599914901, 0.998006582, 0.0195385814, 0.272046983, -0.0351837575, 0.961636364) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.24368668, 0.434344113, -1.26722538, 0.768342555, 0.0267384127, 0.639479101, 0.639877915, -0.00968885422, -0.768414021, -0.0143505037, 0.999591708, -0.0245484114) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.76789629, 0.694496214, 0.916373134, 0.722982705, 0.0776249394, -0.686490357, -0.648381114, -0.266831756, -0.713022053, -0.238520324, 0.960609317, -0.142583132) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.68790102, -0.437463164, -0.899271846, 0.931745231, -0.327330798, -0.157176048, 0.0535043478, 0.551894009, -0.832194746, 0.359149396, 0.766978681, 0.531739891) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.222629815, -1.34698939, -0.83881104, 0.951186299, -0.165918007, -0.260220498, 0.180168867, 0.983122885, 0.031722039, 0.250567198, -0.0770615637, 0.965023041) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(2.30967999e-07, -0.999893963, 5.06639481e-07, 0.986100018, 0.140607759, -0.0885225981, 0.0181170646, 0.438606352, 0.89849031, 0.165162221, -0.887610137, 0.429964781),
- CFrame.new(-0.0640343279, 1.49422717, -0.0125310048, 0.990809321, -0.130005136, 0.0373591334, 0.128403872, 0.99081099, 0.0424716175, -0.0425379872, -0.0372885466, 0.998394191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.15180314, 0.550270677, -1.05980325, 0.768902063, 0.424801946, 0.477842063, 0.527837694, -7.74860382e-06, -0.849343956, -0.360800505, 0.90528214, -0.224227875) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.58762348, 0.737942457, -0.15229927, 0.778471112, 0.0644336343, -0.624364495, -0.614694655, -0.12302509, -0.779110312, -0.127010316, 0.990305543, -0.056160599) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.37572515, -0.515403211, -0.991176069, 0.995582402, 0.016173996, 0.0924883261, 0.0711732283, 0.512458861, -0.855755806, -0.0612377338, 0.858552814, 0.509046078) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.491690487, -1.35698009, -0.82369113, 0.956947505, -0.275629193, 0.090995416, 0.262711406, 0.955764771, 0.132265508, -0.123427376, -0.102669537, 0.987023532) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-5.06639481e-07, -0.999894142, 1.07288361e-06, 0.858471572, 0.178060263, -0.480958581, 0.358273476, 0.462803632, 0.810827672, 0.366967648, -0.86839211, 0.333511382),
- CFrame.new(-0.101883829, 1.48945296, -0.0074640438, 0.917335093, -0.203765288, 0.342015803, 0.185582131, 0.978905261, 0.0854466856, -0.352215439, -0.0149147213, 0.935796142) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.05991518, 0.666196585, -0.852383673, 0.61665988, 0.749396563, 0.241109774, 0.412197709, -0.0464370549, -0.909908772, -0.670688808, 0.660485744, -0.337531775) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.40734005, 0.781389475, -1.22097242, 0.827298582, 0.039218843, -0.560390532, -0.561401725, 0.0219762027, -0.827249944, -0.020128876, 0.998984993, 0.0402037501) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.0635492206, -0.593341887, -1.08308196, 0.877068341, 0.366972506, 0.309969127, 0.106246166, 0.481096804, -0.870203972, -0.468468666, 0.796156824, 0.382967353) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.760750234, -1.36696911, -0.80857408, 0.82395941, -0.38422668, 0.416484386, 0.300041229, 0.919338584, 0.254537076, -0.4806934, -0.0847682357, 0.872777641) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-4.47034836e-07, -0.999894261, 5.66244125e-07, 0.849292338, 0.166491091, -0.500982285, 0.379520297, 0.467090189, 0.798611104, 0.366967648, -0.868392169, 0.333511293),
- CFrame.new(-0.094722636, 1.49072301, -0.0120365694, 0.90496558, -0.18927525, 0.381065071, 0.165003479, 0.981636047, 0.0957182646, -0.392187506, -0.0237482488, 0.919574738) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.14258587, 0.588058114, -0.717229545, 0.605233371, 0.766759098, 0.213942304, 0.404277116, -0.064547956, -0.912354648, -0.685749471, 0.638676047, -0.349046022) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.41818511, 0.758238077, -1.2693187, 0.822256386, 0.0601323396, -0.565930188, -0.568200827, 0.0303300619, -0.822329164, -0.0322842002, 0.997725546, 0.0591117293) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.00176043436, -0.602468848, -1.03498507, 0.871310949, 0.379908383, 0.310620844, 0.0991499573, 0.483629704, -0.869637251, -0.480610579, 0.788517952, 0.38372606) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.760748982, -1.36696899, -0.808574021, 0.823959351, -0.384226739, 0.416484296, 0.300041199, 0.919338644, 0.254537046, -0.48069346, -0.0847682059, 0.872777641) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-4.47034836e-07, -0.9998945, 5.66244125e-07, 0.83958739, 0.154818773, -0.520695865, 0.400532097, 0.471087784, 0.785900056, 0.366967648, -0.868392169, 0.333511382),
- CFrame.new(-0.0875619128, 1.49199355, -0.0166099146, 0.890668392, -0.175116688, 0.419573903, 0.143955007, 0.983986795, 0.105092585, -0.431261867, -0.0332064331, 0.901611626) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.22525573, 0.509919107, -0.582074583, 0.593235552, 0.783146381, 0.186417744, 0.39666304, -0.0828590691, -0.914215565, -0.700521111, 0.616286933, -0.359796435) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.42903042, 0.735086501, -1.31766438, 0.816909552, 0.0810803846, -0.571036816, -0.575064123, 0.0385041535, -0.817200065, -0.0442720056, 0.99595958, 0.0780862272) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.0670694858, -0.611595213, -0.986888885, 0.865357518, 0.392754436, 0.311285377, 0.092016086, 0.486053675, -0.869069755, -0.49263525, 0.780694842, 0.384472579) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.760748923, -1.36696815, -0.808573961, 0.823959351, -0.384226769, 0.416484147, 0.300041109, 0.919338703, 0.254537016, -0.480693609, -0.0847682357, 0.87277776) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-2.08616257e-07, -0.966068625, 1.43051147e-06, 0.815178335, 0.129189402, -0.564618826, 0.42910862, 0.520038009, 0.738522112, 0.389034688, -0.844314754, 0.368489563),
- CFrame.new(-0.0875611007, 1.49199224, -0.0166103169, 0.890668213, -0.175116792, 0.419573784, 0.143954813, 0.983986437, 0.105092406, -0.431262046, -0.0332064629, 0.901612043) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.52863717, 0.657275081, -0.318234116, 0.679287672, 0.633161545, 0.371042758, 0.53664577, -0.0836998224, -0.839644074, -0.500578761, 0.769476354, -0.396637291) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.34852469, 0.698678017, -1.09496355, 0.790168524, -0.220005214, -0.572039604, -0.591695845, -0.030509606, -0.805581689, 0.159779161, 0.975019395, -0.154278293) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.119650036, -0.640211701, -0.991198599, 0.849794805, 0.426327944, 0.309985965, 0.0695280582, 0.492281109, -0.867653012, -0.522508204, 0.758875847, 0.388698667) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.814164042, -1.35116899, -0.669189095, 0.790540636, -0.371530592, 0.486835092, 0.231098235, 0.917160392, 0.324664533, -0.567132354, -0.144156396, 0.810909152) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-3.87430191e-07, -0.932242632, 1.49011612e-07, 0.789167523, 0.100808881, -0.605848312, 0.455179006, 0.566261947, 0.687130272, 0.412340045, -0.818035007, 0.400991738),
- CFrame.new(-0.0875622183, 1.49199128, -0.0166100115, 0.890668035, -0.175116986, 0.419573724, 0.143954605, 0.983986139, 0.105092347, -0.431262165, -0.0332065523, 0.901612401) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.83201766, 0.804629385, -0.0543928742, 0.701660335, 0.454507709, 0.548719645, 0.658078492, -0.118182898, -0.743613839, -0.27313453, 0.882864177, -0.382024795) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.2680192, 0.662270904, -0.872260809, 0.703609347, -0.501396656, -0.503520608, -0.621284127, -0.0901664197, -0.778377831, 0.344875813, 0.860505819, -0.374946654) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.172228545, -0.668826401, -0.995510042, 0.832885325, 0.459249943, 0.308851242, 0.0468116701, 0.497590601, -0.866145611, -0.551462293, 0.735854328, 0.392940581) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.867577791, -1.33536863, -0.529804945, 0.749274909, -0.363453418, 0.553612113, 0.155212194, 0.909038901, 0.386721551, -0.643813848, -0.203836203, 0.737529039) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-2.68220901e-07, -0.999893248, -2.68220901e-07, 0.954200089, -0.00391276274, -0.299143642, 0.268353909, 0.453180045, 0.850060284, 0.132240608, -0.891409099, 0.433476955),
- CFrame.new(0.0152890515, 1.49958897, -0.0132527612, 0.947095871, 0.0305804089, 0.319489479, -0.0374381319, 0.999179959, 0.0153393447, -0.318759918, -0.0264934003, 0.947460771) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.244054884, 0.760140538, -0.882296562, 0.324009687, 0.942025781, 0.087203607, 0.776880264, -0.212337226, -0.592762589, -0.539884031, 0.259805381, -0.800636113) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.61807597, 0.865841269, 0.247788012, 0.776497781, -0.0114205256, -0.63001579, -0.610952497, -0.258373886, -0.748316407, -0.154232383, 0.965974569, -0.207598612) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.162140846, -0.487857193, -1.07413805, 0.969012618, 0.234132111, -0.0787148774, -0.196268559, 0.536322355, -0.820874155, -0.149977773, 0.810881615, 0.565658271) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.770895422, -1.45925665, -0.751712978, 0.9308303, -0.2075831, 0.300771624, 0.0780321509, 0.916931391, 0.391338021, -0.357023984, -0.340802133, 0.869700789) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(6.03497028e-07, -0.999893248, 2.38418579e-07, 0.998761952, 0.0178419854, -0.0464358255, 0.03351878, 0.448369652, 0.893213153, 0.0367573202, -0.89366889, 0.447219044),
- CFrame.new(-0.00448577758, 1.4987936, -0.0253925398, 0.998874366, -0.0124089196, 0.0457824394, 0.0103109125, 0.998897374, 0.0457764864, -0.046300225, -0.0452573001, 0.997897267) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.714897156, 0.587207496, -1.09933567, 0.622750521, 0.657323837, 0.424390614, 0.666898847, -0.162277102, -0.727261782, -0.409179419, 0.73592633, -0.539421618) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.67686212, 0.759229779, 0.541159928, 0.776497602, -0.0114196949, -0.630016863, -0.610952139, -0.258373946, -0.748316824, -0.154231384, 0.965974212, -0.207599372) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.341561019, -0.455413282, -0.983077049, 0.993646085, 0.0115812607, -0.111953251, -0.099227041, 0.559593976, -0.822803915, 0.0531191789, 0.828679264, 0.557189345) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.623640537, -1.40094459, -0.807941079, 0.984673023, -0.138103008, 0.10651999, 0.112384647, 0.969453514, 0.218007401, -0.133374065, -0.202698529, 0.970111072) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(2.83122063e-07, -0.99989301, 1.78813934e-07, 0.977104902, 0.0375199914, 0.209423587, -0.204409793, 0.438559324, 0.875140488, -0.059009742, -0.897917449, 0.436190426),
- CFrame.new(-0.0242593139, 1.4979986, -0.03753189, 0.971408665, -0.0485223904, -0.232401133, 0.0645403415, 0.995997548, 0.0618148446, 0.228472546, -0.0750510097, 0.970648646) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.18573701, 0.414276123, -1.31637478, 0.802844584, 0.177142143, 0.569263339, 0.582189262, -0.0272423327, -0.812595367, -0.128437385, 0.983804226, -0.124996483) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.73564446, 0.652620435, 0.834532022, 0.776496887, -0.0114186555, -0.630017281, -0.610951602, -0.258373797, -0.748317242, -0.154230401, 0.965974331, -0.207599998) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.520981669, -0.422968447, -0.892016351, 0.967023134, -0.211135179, -0.14243412, 0.000440508127, 0.560633063, -0.828062773, 0.254687697, 0.800687909, 0.542239964) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.476386189, -1.34263158, -0.864169657, 0.989634395, -0.0998843908, -0.103182182, 0.104020357, 0.993940651, 0.0354899466, 0.099013336, -0.0458596051, 0.994024336) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-5.96046448e-07, -0.999893427, 7.74860382e-07, 0.961799145, 0.0658702701, 0.265713274, -0.267319024, 0.435204655, 0.859724402, -0.0590097196, -0.897917509, 0.436190337),
- CFrame.new(-0.0252212435, 1.49850059, -0.0275647566, 0.966137707, -0.0502350517, -0.253087848, 0.0625038892, 0.997215033, 0.0406612456, 0.250341982, -0.0551075637, 0.96658349) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.21471298, 0.424310327, -1.2917999, 0.788307428, 0.102404594, 0.606699228, 0.611210406, -0.0170902312, -0.791282058, -0.070662573, 0.99459219, -0.0760580301) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.75177062, 0.673558176, 0.875452578, 0.751103342, 0.0332292244, -0.659347296, -0.630086064, -0.262031913, -0.730977774, -0.197054639, 0.964484036, -0.175873935) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.604441464, -0.430216074, -0.895644188, 0.95117718, -0.269755483, -0.149977282, 0.0271138474, 0.557071149, -0.830020666, 0.307452261, 0.785425067, 0.537189126) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.349507213, -1.34481061, -0.851489842, 0.974119723, -0.133618444, -0.182307869, 0.142266124, 0.989203215, 0.0351443291, 0.175645098, -0.0601754785, 0.982608438) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(5.96046448e-07, -0.999893546, 8.64267349e-07, 0.942447543, 0.093943432, 0.320885152, -0.329103708, 0.430019498, 0.840691745, -0.0590097383, -0.897917449, 0.436190426),
- CFrame.new(-0.0261842869, 1.49900281, -0.0175977293, 0.960412085, -0.0523733161, -0.273613572, 0.0599914901, 0.998006582, 0.0195385814, 0.272046983, -0.0351837575, 0.961636364) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.24368668, 0.434344113, -1.26722538, 0.768342555, 0.0267384127, 0.639479101, 0.639877915, -0.00968885422, -0.768414021, -0.0143505037, 0.999591708, -0.0245484114) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.76789629, 0.694496214, 0.916373134, 0.722982705, 0.0776249394, -0.686490357, -0.648381114, -0.266831756, -0.713022053, -0.238520324, 0.960609317, -0.142583132) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.68790102, -0.437463164, -0.899271846, 0.931745231, -0.327330798, -0.157176048, 0.0535043478, 0.551894009, -0.832194746, 0.359149396, 0.766978681, 0.531739891) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.222629815, -1.34698939, -0.83881104, 0.951186299, -0.165918007, -0.260220498, 0.180168867, 0.983122885, 0.031722039, 0.250567198, -0.0770615637, 0.965023041) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(2.30967999e-07, -0.999893963, 5.06639481e-07, 0.986100018, 0.140607759, -0.0885225981, 0.0181170646, 0.438606352, 0.89849031, 0.165162221, -0.887610137, 0.429964781),
- CFrame.new(-0.0640343279, 1.49422717, -0.0125310048, 0.990809321, -0.130005136, 0.0373591334, 0.128403872, 0.99081099, 0.0424716175, -0.0425379872, -0.0372885466, 0.998394191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.15180314, 0.550270677, -1.05980325, 0.768902063, 0.424801946, 0.477842063, 0.527837694, -7.74860382e-06, -0.849343956, -0.360800505, 0.90528214, -0.224227875) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.58762348, 0.737942457, -0.15229927, 0.778471112, 0.0644336343, -0.624364495, -0.614694655, -0.12302509, -0.779110312, -0.127010316, 0.990305543, -0.056160599) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.37572515, -0.515403211, -0.991176069, 0.995582402, 0.016173996, 0.0924883261, 0.0711732283, 0.512458861, -0.855755806, -0.0612377338, 0.858552814, 0.509046078) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.491690487, -1.35698009, -0.82369113, 0.956947505, -0.275629193, 0.090995416, 0.262711406, 0.955764771, 0.132265508, -0.123427376, -0.102669537, 0.987023532) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-5.06639481e-07, -0.999894142, 1.07288361e-06, 0.858471572, 0.178060263, -0.480958581, 0.358273476, 0.462803632, 0.810827672, 0.366967648, -0.86839211, 0.333511382),
- CFrame.new(-0.101883829, 1.48945296, -0.0074640438, 0.917335093, -0.203765288, 0.342015803, 0.185582131, 0.978905261, 0.0854466856, -0.352215439, -0.0149147213, 0.935796142) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.05991518, 0.666196585, -0.852383673, 0.61665988, 0.749396563, 0.241109774, 0.412197709, -0.0464370549, -0.909908772, -0.670688808, 0.660485744, -0.337531775) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.40734005, 0.781389475, -1.22097242, 0.827298582, 0.039218843, -0.560390532, -0.561401725, 0.0219762027, -0.827249944, -0.020128876, 0.998984993, 0.0402037501) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.0635492206, -0.593341887, -1.08308196, 0.877068341, 0.366972506, 0.309969127, 0.106246166, 0.481096804, -0.870203972, -0.468468666, 0.796156824, 0.382967353) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.760750234, -1.36696911, -0.80857408, 0.82395941, -0.38422668, 0.416484386, 0.300041229, 0.919338584, 0.254537076, -0.4806934, -0.0847682357, 0.872777641) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-4.47034836e-07, -0.999894261, 5.66244125e-07, 0.849292338, 0.166491091, -0.500982285, 0.379520297, 0.467090189, 0.798611104, 0.366967648, -0.868392169, 0.333511293),
- CFrame.new(-0.094722636, 1.49072301, -0.0120365694, 0.90496558, -0.18927525, 0.381065071, 0.165003479, 0.981636047, 0.0957182646, -0.392187506, -0.0237482488, 0.919574738) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.14258587, 0.588058114, -0.717229545, 0.605233371, 0.766759098, 0.213942304, 0.404277116, -0.064547956, -0.912354648, -0.685749471, 0.638676047, -0.349046022) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.41818511, 0.758238077, -1.2693187, 0.822256386, 0.0601323396, -0.565930188, -0.568200827, 0.0303300619, -0.822329164, -0.0322842002, 0.997725546, 0.0591117293) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.00176043436, -0.602468848, -1.03498507, 0.871310949, 0.379908383, 0.310620844, 0.0991499573, 0.483629704, -0.869637251, -0.480610579, 0.788517952, 0.38372606) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.760748982, -1.36696899, -0.808574021, 0.823959351, -0.384226739, 0.416484296, 0.300041199, 0.919338644, 0.254537046, -0.48069346, -0.0847682059, 0.872777641) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-4.47034836e-07, -0.9998945, 5.66244125e-07, 0.83958739, 0.154818773, -0.520695865, 0.400532097, 0.471087784, 0.785900056, 0.366967648, -0.868392169, 0.333511382),
- CFrame.new(-0.0875619128, 1.49199355, -0.0166099146, 0.890668392, -0.175116688, 0.419573903, 0.143955007, 0.983986795, 0.105092585, -0.431261867, -0.0332064331, 0.901611626) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.22525573, 0.509919107, -0.582074583, 0.593235552, 0.783146381, 0.186417744, 0.39666304, -0.0828590691, -0.914215565, -0.700521111, 0.616286933, -0.359796435) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.42903042, 0.735086501, -1.31766438, 0.816909552, 0.0810803846, -0.571036816, -0.575064123, 0.0385041535, -0.817200065, -0.0442720056, 0.99595958, 0.0780862272) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.0670694858, -0.611595213, -0.986888885, 0.865357518, 0.392754436, 0.311285377, 0.092016086, 0.486053675, -0.869069755, -0.49263525, 0.780694842, 0.384472579) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.760748923, -1.36696815, -0.808573961, 0.823959351, -0.384226769, 0.416484147, 0.300041109, 0.919338703, 0.254537016, -0.480693609, -0.0847682357, 0.87277776) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-2.08616257e-07, -0.966068625, 1.43051147e-06, 0.815178335, 0.129189402, -0.564618826, 0.42910862, 0.520038009, 0.738522112, 0.389034688, -0.844314754, 0.368489563),
- CFrame.new(-0.0875611007, 1.49199224, -0.0166103169, 0.890668213, -0.175116792, 0.419573784, 0.143954813, 0.983986437, 0.105092406, -0.431262046, -0.0332064629, 0.901612043) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.52863717, 0.657275081, -0.318234116, 0.679287672, 0.633161545, 0.371042758, 0.53664577, -0.0836998224, -0.839644074, -0.500578761, 0.769476354, -0.396637291) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.34852469, 0.698678017, -1.09496355, 0.790168524, -0.220005214, -0.572039604, -0.591695845, -0.030509606, -0.805581689, 0.159779161, 0.975019395, -0.154278293) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.119650036, -0.640211701, -0.991198599, 0.849794805, 0.426327944, 0.309985965, 0.0695280582, 0.492281109, -0.867653012, -0.522508204, 0.758875847, 0.388698667) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.814164042, -1.35116899, -0.669189095, 0.790540636, -0.371530592, 0.486835092, 0.231098235, 0.917160392, 0.324664533, -0.567132354, -0.144156396, 0.810909152) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-3.87430191e-07, -0.932242632, 1.49011612e-07, 0.789167523, 0.100808881, -0.605848312, 0.455179006, 0.566261947, 0.687130272, 0.412340045, -0.818035007, 0.400991738),
- CFrame.new(-0.0875622183, 1.49199128, -0.0166100115, 0.890668035, -0.175116986, 0.419573724, 0.143954605, 0.983986139, 0.105092347, -0.431262165, -0.0332065523, 0.901612401) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.83201766, 0.804629385, -0.0543928742, 0.701660335, 0.454507709, 0.548719645, 0.658078492, -0.118182898, -0.743613839, -0.27313453, 0.882864177, -0.382024795) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.2680192, 0.662270904, -0.872260809, 0.703609347, -0.501396656, -0.503520608, -0.621284127, -0.0901664197, -0.778377831, 0.344875813, 0.860505819, -0.374946654) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.172228545, -0.668826401, -0.995510042, 0.832885325, 0.459249943, 0.308851242, 0.0468116701, 0.497590601, -0.866145611, -0.551462293, 0.735854328, 0.392940581) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.867577791, -1.33536863, -0.529804945, 0.749274909, -0.363453418, 0.553612113, 0.155212194, 0.909038901, 0.386721551, -0.643813848, -0.203836203, 0.737529039) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- attack = false
- end
- function attackone()
- attack = true
- for i = 0, 2, 2.5 do
- swait()
- RootPart.Velocity = RootPart.CFrame.lookVector * 150
- PlayAnimationFromTable({
- CFrame.new(-1.02445483e-06, 0.410549074, 4.47034836e-08, 0.434770137, 0.134353459, -0.890462816, -0.0925257355, 0.990239739, 0.104231983, 0.895775616, 0.0370737724, 0.442957819),
- CFrame.new(0.00651060045, 1.48299849, -0.129106343, 0.950309157, 0.0130237006, 0.311035335, -0.0922943354, 0.965992033, 0.241539657, -0.297311872, -0.258244127, 0.91919291) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.64502442, 0.548664153, -0.285591602, 0.929613054, -0.360452771, 0.0767680407, 0.0728404969, -0.0244901273, -0.997042835, 0.361266971, 0.932455897, 0.0034891963) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.43776643, 0.707904458, -0.514912903, 0.978386879, -0.102860242, -0.179385111, -0.198111996, -0.217692047, -0.955699563, 0.0592528284, 0.970582187, -0.23336488) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.913873136, -2.09081984, -0.025899142, 0.796060801, -0.211923957, -0.566899896, 0.207370847, 0.975499392, -0.0734730512, 0.568581164, -0.0590694696, 0.820503533) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.27775574, -1.66723752, -0.382243156, 0.68890655, 0.672476113, 0.2705248, -0.60139519, 0.738616288, -0.304581314, -0.404637635, 0.0471358001, 0.913261414) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(1.10268593e-06, 0.410549194, -1.47614628e-06, -0.196643725, 0.184377924, -0.962982893, 0.115258187, 0.979696751, 0.164042026, 0.97367692, -0.0787338242, -0.213902295),
- CFrame.new(0.0145384185, 1.48090792, -0.135671869, 0.962433279, 0.0287968218, 0.269986629, -0.100111268, 0.961937726, 0.254270703, -0.252388149, -0.271747291, 0.928683758) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.33355749, 0.392298013, -0.470583677, 0.979428947, 0.193064958, 0.0586915836, 0.0167900398, 0.21187675, -0.97715199, -0.201089233, 0.958036602, 0.204276666) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.28386128, 0.539746404, -0.599012494, 0.930650711, -0.339781404, -0.135785848, -0.132567734, 0.032784231, -0.990631461, 0.34104985, 0.939932942, -0.0145333977) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.868015289, -1.92250562, -0.200288475, 0.690728724, -0.0638263449, -0.720291615, 0.210711166, 0.970634937, 0.116053253, 0.691733003, -0.231934816, 0.683894455) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.26545334, -1.80733383, -0.357061625, 0.742263675, 0.620287597, 0.253550589, -0.511834025, 0.769014597, -0.382938892, -0.432516456, 0.154465839, 0.888296068) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(4.98816371e-06, 0.410549134, 1.95764005e-06, -0.725298047, 0.292184472, -0.623354673, 0.312188238, 0.946607053, 0.0804587752, 0.613580704, -0.136247396, -0.777788758),
- CFrame.new(0.0225681476, 1.47881377, -0.142227024, 0.972472131, 0.0451496392, 0.228603244, -0.107292846, 0.957624912, 0.267287731, -0.206848055, -0.284457415, 0.936107874) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.02208495, 0.235927522, -0.655578434, 0.720755279, 0.676586986, 0.150804222, -0.1569556, 0.371189386, -0.915195704, -0.675186455, 0.635962665, 0.373730928) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.12995195, 0.371587455, -0.683095098, 0.817159653, -0.557261109, -0.147343919, 0.000507799909, 0.256318748, -0.966592073, 0.576411366, 0.789785326, 0.209736362) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.822167754, -1.75419521, -0.374673516, 0.564870477, 0.11305362, -0.817398548, 0.244339973, 0.923232973, 0.29654479, 0.788174808, -0.367232531, 0.493883461) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.25313973, -1.9474436, -0.331881523, 0.790704072, 0.562016726, 0.242743522, -0.416731298, 0.784586787, -0.459084451, -0.448466361, 0.261841238, 0.854585886) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-1.10641122e-06, 0.410550356, -0.26234901, -0.946502924, 0.317195982, -0.059320461, 0.312188238, 0.946607053, 0.0804587826, 0.0816743672, 0.0576353222, -0.994991183),
- CFrame.new(0.113830432, 1.46169829, -0.121848911, 0.912899554, 0.240586013, -0.329746246, -0.109108344, 0.922268867, 0.370830864, 0.393331468, -0.302553296, 0.868188858) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.11839008, 0.263480008, -0.648031712, 0.727556586, 0.504263282, -0.465166569, -0.496568412, -0.0807710811, -0.864231348, -0.473372191, 0.859764278, 0.191635698) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.00942695, 0.425372899, -0.6905424, 0.674467504, -0.680293441, 0.286869854, 0.304586172, -0.0975589156, -0.947475255, 0.672547936, 0.726418018, 0.141407624) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.755627453, -1.37600529, -0.682981491, 0.554580271, -0.0541416258, -0.830367029, 0.507638812, 0.812698424, 0.286049098, 0.659350812, -0.580163777, 0.478190899) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.32929492, -1.92115164, -0.345734894, 0.701464295, 0.59210068, 0.396692008, -0.3738437, 0.779564917, -0.502513051, -0.606785417, 0.204194158, 0.768190145) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(8.34465027e-07, 0.410550326, -0.524693966, -0.819686532, 0.225577131, 0.526525378, 0.312188238, 0.946607053, 0.0804587752, -0.480262965, 0.230325997, -0.846343577),
- CFrame.new(0.205081522, 1.44457352, -0.101459652, 0.524106979, 0.410154045, -0.74638164, -0.0476873964, 0.889150739, 0.455122948, 0.850316405, -0.202940121, 0.485569119) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.21468496, 0.291034997, -0.640501857, 0.494097948, 0.0647250712, -0.866993606, -0.793048561, -0.375115037, -0.479960859, -0.356287897, 0.924715817, -0.134013429) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.888906479, 0.479148507, -0.698014557, 0.402031004, -0.624234676, 0.669852376, 0.502684474, -0.460990816, -0.731297255, 0.765296936, 0.630728662, 0.128460467) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.689087152, -0.997809112, -0.991292596, 0.496078253, -0.211195081, -0.842201352, 0.72740221, 0.630736351, 0.270291656, 0.474122763, -0.746704996, 0.466518342) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.4054569, -1.89485514, -0.359579593, 0.584842205, 0.611398876, 0.533058226, -0.323741168, 0.778494835, -0.537714899, -0.743741512, 0.141905457, 0.65323168) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(8.34465027e-07, 0.410550326, -0.524693966, -0.819686532, 0.225577131, 0.526525378, 0.312188238, 0.946607053, 0.0804587752, -0.480262965, 0.230325997, -0.846343577),
- CFrame.new(0.205081522, 1.44457352, -0.101459652, 0.524106979, 0.410154045, -0.74638164, -0.0476873964, 0.889150739, 0.455122948, 0.850316405, -0.202940121, 0.485569119) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.21468496, 0.291034997, -0.640501857, 0.494097948, 0.0647250712, -0.866993606, -0.793048561, -0.375115037, -0.479960859, -0.356287897, 0.924715817, -0.134013429) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.888906479, 0.479148507, -0.698014557, 0.402031004, -0.624234676, 0.669852376, 0.502684474, -0.460990816, -0.731297255, 0.765296936, 0.630728662, 0.128460467) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.689087152, -0.997809112, -0.991292596, 0.496078253, -0.211195081, -0.842201352, 0.72740221, 0.630736351, 0.270291656, 0.474122763, -0.746704996, 0.466518342) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.4054569, -1.89485514, -0.359579593, 0.584842205, 0.611398876, 0.533058226, -0.323741168, 0.778494835, -0.537714899, -0.743741512, 0.141905457, 0.65323168) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(3.34531069e-06, 0.391414076, -0.268225938, -0.160649076, -0.0752771795, 0.98413682, 0.394802094, 0.908945858, 0.133972704, -0.904612184, 0.410061866, -0.116301723),
- CFrame.new(0.118007474, 1.47209167, -0.114904821, 0.912610888, 0.236016631, -0.333822727, -0.134124264, 0.944183886, 0.300877869, 0.386202216, -0.2298107, 0.893328071) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.06181157, 0.687160611, -0.679076195, 0.755286634, 0.631673217, -0.17473191, 0.0514222085, -0.322898686, -0.945035458, -0.653374314, 0.704787672, -0.276363045) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.48905134, 0.776656747, -0.429291815, 0.72844398, 0.249655977, -0.637997806, -0.677507043, 0.124196626, -0.724954605, -0.101752102, 0.960336983, 0.259614021) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(2.00359821, -1.30527902, -0.127873987, 0.37078923, -0.927994013, -0.0366391838, 0.92063272, 0.372469485, -0.117053539, 0.12227194, 0.00967095792, 0.992449522) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.91220206, -0.970860064, -0.589774728, 0.680046916, -0.24140057, 0.692287445, 0.17142728, 0.970420599, 0.169989228, -0.712845623, 0.00307630748, 0.70131433) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(6.40749931e-07, 0.384588212, -0.286238372, -0.141726464, -0.0838225186, 0.986350536, 0.394802094, 0.908945858, 0.13397269, -0.907769203, 0.408400744, -0.0957283825),
- CFrame.new(0.117227331, 1.46943235, -0.125041753, 0.915860891, 0.234656259, -0.325784087, -0.127366632, 0.939321518, 0.318516552, 0.380757898, -0.250222862, 0.890175223) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.04271352, 0.693875313, -0.67807126, 0.73861295, 0.653022826, -0.167368472, 0.0685673952, -0.319759667, -0.945014298, -0.670633733, 0.686523914, -0.280954719) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.50330126, 0.7892344, -0.40086621, 0.717096925, 0.292183399, -0.632772446, -0.681208074, 0.101810783, -0.724975765, -0.147402838, 0.950927675, 0.27204591) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(2.00228715, -1.30084431, -0.0439176261, 0.358535528, -0.926902175, -0.110926017, 0.925947189, 0.3682096, -0.083923161, 0.118632577, -0.0726222247, 0.99027884) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.879360795, -0.948884726, -0.58409369, 0.675978959, -0.277095079, 0.682840228, 0.19373025, 0.96084106, 0.19812347, -0.711000144, -0.00164048746, 0.703190088) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(7.00354576e-07, 0.377758682, -0.304260105, -0.122740254, -0.0923322365, 0.988134384, 0.394802123, 0.908945858, 0.133972779, -0.910530686, 0.406561404, -0.0751112849),
- CFrame.new(0.116439722, 1.46677315, -0.135184884, 0.919068217, 0.233113915, -0.317759991, -0.12071842, 0.934062898, 0.336085618, 0.375154048, -0.270526141, 0.88660872) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.02362394, 0.700585961, -0.67704457, 0.721277118, 0.673885703, -0.160116434, 0.0856197774, -0.316137195, -0.944841981, -0.687334359, 0.667783797, -0.285720497) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.51754725, 0.801810443, -0.372438639, 0.703747869, 0.334055513, -0.627013505, -0.683849812, 0.0792777687, -0.725302875, -0.192583174, 0.939213455, 0.284235358) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(2.00099087, -1.29641569, 0.0400407612, 0.346578896, -0.919614494, -0.184911221, 0.93107909, 0.361201555, -0.0512342975, 0.113906026, -0.154410243, 0.981418729) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.846525669, -0.926917434, -0.578414023, 0.671082973, -0.31239295, 0.672352791, 0.215874568, 0.949931026, 0.225896239, -0.709257305, -0.00645123795, 0.704920232) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(2.7269125e-06, 0.370931298, -0.322270513, -0.103702217, -0.100800768, 0.98948729, 0.394802094, 0.908945858, 0.133972719, -0.912894905, 0.40454492, -0.0544633456),
- CFrame.new(0.115658015, 1.46411324, -0.14532277, 0.922230721, 0.231390417, -0.3097561, -0.11418429, 0.928411543, 0.353572786, 0.369394571, -0.290706456, 0.882631004) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.0045414, 0.707294643, -0.676022172, 0.703302026, 0.69423455, -0.152985275, 0.102557465, -0.312036246, -0.944518447, -0.703454494, 0.648592114, -0.290654689) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.53179872, 0.814388275, -0.344013184, 0.688429058, 0.37517193, -0.620734513, -0.685425878, 0.0566518605, -0.725934982, -0.237184674, 0.925222576, 0.296153426) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.99968565, -1.29198349, 0.124000788, 0.335000157, -0.906180739, -0.25809145, 0.935993493, 0.351492524, -0.0192093477, 0.108124353, -0.235136807, 0.965929508) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.813691139, -0.904939294, -0.572728872, 0.665365696, -0.347244799, 0.660839915, 0.237829164, 0.937705696, 0.253268659, -0.707619905, -0.0113492832, 0.706502199) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(1.89617276e-06, 0.277345806, -0.322267801, -0.0837828666, -0.109889433, 0.990406334, 0.40238288, 0.905535519, 0.134512037, -0.911629558, 0.409792364, -0.0316507369),
- CFrame.new(0.115837581, 1.46570086, -0.140086293, 0.920711279, 0.231730655, -0.313992888, -0.117049694, 0.931545436, 0.344270945, 0.372276753, -0.280221343, 0.88480854) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.00196588, 0.706440806, -0.676299155, 0.70279181, 0.698881984, -0.132844448, 0.116060689, -0.296876043, -0.947836757, -0.701864302, 0.650713921, -0.289754778) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.51938605, 0.837094724, -0.340489268, 0.657910705, 0.381818712, -0.649128556, -0.712996125, 0.0382868946, -0.70012188, -0.242466539, 0.923443854, 0.297424585) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.98717427, -1.30337572, 0.121823728, 0.349616081, -0.901076972, -0.256571293, 0.930598795, 0.365682423, -0.0161971897, 0.108418547, -0.233102128, 0.966389596) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.789708376, -0.885463715, -0.568843484, 0.660749316, -0.373823345, 0.650896728, 0.255457014, 0.927389562, 0.273294926, -0.705798924, -0.0143032447, 0.708267748) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(4.98630106e-06, 0.183763012, -0.322274894, -0.0638980567, -0.119089969, 0.990825236, 0.409954548, 0.902080715, 0.134861395, -0.909864962, 0.414810687, -0.00881973095),
- CFrame.new(0.116013654, 1.46728611, -0.134847879, 0.919182122, 0.232021481, -0.318229616, -0.119945854, 0.934572577, 0.334943205, 0.375122726, -0.269703507, 0.88687259) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.999391258, 0.705588222, -0.676568985, 0.702000499, 0.703211844, -0.112642169, 0.129552305, -0.28162083, -0.950739503, -0.700293899, 0.652826607, -0.288800746) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.50696099, 0.859792709, -0.336955369, 0.62623775, 0.387681395, -0.676409006, -0.739248514, 0.0196649134, -0.673145354, -0.247664452, 0.921583533, 0.298907876) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.97468138, -1.31477332, 0.119650126, 0.364147604, -0.895750821, -0.255003929, 0.924978316, 0.379789889, -0.0132092685, 0.108680151, -0.231063008, 0.966849864) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.765723348, -0.865995765, -0.564959168, 0.655625463, -0.400086135, 0.640379727, 0.272949219, 0.916313648, 0.293032169, -0.704026997, -0.0173282009, 0.709961951) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-1.1138618e-06, -0.420584917, -0.322271496, -0.0299961437, -0.126286328, 0.991540194, 0.23125273, 0.964196146, 0.12979956, -0.972431183, 0.233189866, 0.000281890156),
- CFrame.new(0.116007678, 1.46728814, -0.134852916, 0.919182181, 0.232021481, -0.318229616, -0.119945846, 0.934572577, 0.334943235, 0.375122696, -0.269703478, 0.88687253) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.24546826, 0.473501921, -0.590585768, 0.930526257, 0.349510014, -0.109378465, 0.00518713892, -0.311212778, -0.950326025, -0.366188407, 0.883736074, -0.291404635) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.24695778, 0.68629849, -0.521911085, 0.76039809, -0.133910269, -0.635501921, -0.597407997, 0.239604473, -0.765305936, 0.254751444, 0.961591184, 0.102195725) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.75132132, -1.41122365, 0.0401291251, 0.496255845, -0.749435842, -0.438264817, 0.825931847, 0.563090324, -0.0276694447, 0.267519176, -0.34824577, 0.898419857) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.972852468, -0.874736309, -0.571988702, 0.68141681, -0.188406989, 0.707229733, 0.128790304, 0.982087374, 0.137539834, -0.720475078, -0.00263757724, 0.693475842) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(1.28149986e-06, -1.02492595, -0.322278798, 0.00466179056, -0.126866668, 0.991908848, 0.0439297929, 0.990987957, 0.126542434, -0.999023736, 0.0429844372, 0.0101930052),
- CFrame.new(0.116007864, 1.46728563, -0.134854108, 0.919182181, 0.232021496, -0.318229616, -0.119945869, 0.934572518, 0.334943175, 0.375122726, -0.269703507, 0.886872649) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.4915359, 0.241417959, -0.504607737, 0.992174089, -0.0670507178, -0.105331659, -0.120275602, -0.286683917, -0.950445235, 0.0335311517, 0.955676079, -0.292504966) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.986940384, 0.512805998, -0.706866562, 0.603504062, -0.629616857, -0.489249945, -0.358961165, 0.33335948, -0.871790171, 0.711989999, 0.701750875, -0.0248241443) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.52795672, -1.50769126, -0.0393836498, 0.574498832, -0.552349865, -0.604036987, 0.692418516, 0.721494794, -0.00119855814, 0.43647173, -0.417557895, 0.796955407) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.17997456, -0.883479714, -0.579017401, 0.674341917, 0.032872159, 0.73768723, -0.0173354261, 0.999437869, -0.0286892541, -0.738215864, 0.00655823015, 0.674532831) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-7.82310963e-07, -0.972070396, -0.32227385, 0.00466169231, -0.126866668, 0.991908848, 0.0341646187, 0.991360724, 0.126636013, -0.999405324, 0.033297848, 0.00895577017),
- CFrame.new(0.111249782, 1.47269738, -0.110959023, 0.919485509, 0.222866148, -0.323847085, -0.128744841, 0.949061394, 0.287588298, 0.371444523, -0.222739711, 0.901341259) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.45303226, 0.245747939, -0.536985338, 0.993099153, 0.00363274803, -0.117221549, -0.111243509, -0.287305743, -0.951357007, -0.0371344723, 0.957832098, -0.284918994) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.999497414, 0.51283133, -0.706653237, 0.616835356, -0.617838204, -0.487637192, -0.357639879, 0.33188495, -0.872895062, 0.701147437, 0.712831199, -0.0162451994) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.54061103, -1.48723865, -0.0168376565, 0.565054715, -0.560017943, -0.605881989, 0.691505313, 0.722022057, -0.0224582031, 0.450037241, -0.406280518, 0.795237422) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.17943287, -0.958332777, -0.588597, 0.67465657, 0.0300311446, 0.737520695, -0.0154099353, 0.999527216, -0.0266033802, -0.737971008, 0.00658300566, 0.674800396) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-1.29640102e-06, -0.919214189, -0.32226795, 0.00466170628, -0.126866668, 0.991908848, 0.0243957154, 0.991638839, 0.126717478, -0.999691486, 0.0236076061, 0.00771773187),
- CFrame.new(0.106482081, 1.47811186, -0.0870641023, 0.919889927, 0.21344693, -0.329002917, -0.137348607, 0.961126447, 0.239523381, 0.367338955, -0.175147057, 0.913447142) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.4145472, 0.250077367, -0.569368124, 0.988918364, 0.0742935687, -0.128533527, -0.102201641, -0.287283748, -0.952377379, -0.107681111, 0.954959929, -0.276507348) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.01204884, 0.512871444, -0.706441641, 0.629971385, -0.605860054, -0.485869884, -0.356287539, 0.330436021, -0.873997331, 0.69006902, 0.723702788, -0.00769513939) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.55326271, -1.46677375, 0.00569236279, 0.555588186, -0.567720413, -0.607466221, 0.690239847, 0.722259164, -0.0437097549, 0.463562965, -0.395012766, 0.793142021) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.17888689, -1.03318572, -0.598174095, 0.674965441, 0.0271898583, 0.737348139, -0.0134835411, 0.999608517, -0.0245179851, -0.737726092, 0.0066067297, 0.675067961) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(3.74019146e-06, -0.866357386, -0.322270632, 0.0046618795, -0.126866654, 0.991908848, 0.0146244587, 0.991822183, 0.126786828, -0.999882162, 0.0139150647, 0.0064791115),
- CFrame.new(0.101725347, 1.48352444, -0.0631674677, 0.920394123, 0.203787655, -0.333684057, -0.145735264, 0.970736742, 0.190870076, 0.362816334, -0.127046227, 0.923159599) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.37604618, 0.254406154, -0.601749241, 0.979653299, 0.144568503, -0.139209479, -0.0931964889, -0.286619037, -0.953500807, -0.177746296, 0.947074294, -0.267314076) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.02459574, 0.512902319, -0.706223965, 0.642906129, -0.593687654, -0.483948976, -0.354904532, 0.329013705, -0.875095725, 0.678759515, 0.734360158, 0.000822502654) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.56592035, -1.44632638, 0.0282459259, 0.546105206, -0.575452149, -0.608788729, 0.68862325, 0.722205579, -0.0649387836, 0.477039844, -0.383762777, 0.790670097) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.17834163, -1.10803843, -0.60774368, 0.675269306, 0.0243483447, 0.737169266, -0.0115562864, 0.999681532, -0.0224330854, -0.737480819, 0.00662940787, 0.675335765) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-9.46223736e-07, -0.813501835, -0.322275877, 0.00466179056, -0.126866668, 0.991908848, 0.00485228002, 0.991910815, 0.126844108, -0.99997735, 0.00422169873, 0.00523967296),
- CFrame.new(0.0969548374, 1.48893654, -0.0392783433, 0.920997143, 0.193912908, -0.337878525, -0.153883517, 0.977868319, 0.141752034, 0.357888281, -0.0785593092, 0.930453956) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.33755612, 0.258736461, -0.634128392, 0.965351522, 0.214096531, -0.149194553, -0.0842743069, -0.285314828, -0.95472157, -0.246969998, 0.934215307, -0.257386267) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.03714657, 0.512935936, -0.706011593, 0.655633211, -0.581327319, -0.481875241, -0.353491753, 0.32761842, -0.876190424, 0.667224646, 0.744798481, 0.00930314045) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.57856441, -1.42586303, 0.0507851243, 0.536612213, -0.583207846, -0.609848976, 0.686656833, 0.721861243, -0.0861306638, 0.490458488, -0.372538239, 0.787823379) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.17779851, -1.18289125, -0.617326617, 0.67556715, 0.0215066336, 0.73698473, -0.0096282037, 0.999746501, -0.0203487258, -0.737235606, 0.00665106904, 0.675603151) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- attack = false
- end
- function heavypunch()
- attack = true
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(2.17906199e-06, 0.0791669488, -1.34110451e-07, 0.980570495, 0.0252828654, 0.194530979, -0.0511520989, 0.990307033, 0.129133373, -0.189380527, -0.136575043, 0.972359121),
- CFrame.new(0.0309036411, 1.49208295, -0.0542320311, 0.993734717, 0.0567949191, -0.0962575227, -0.0453110263, 0.992032468, 0.117552012, 0.102166928, -0.112453982, 0.988390625) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.22762096, -0.0365972817, -0.365396023, 0.880585968, 0.182303369, 0.437417477, -0.00805936009, 0.928670108, -0.370819032, -0.473818004, 0.323012739, 0.819243073) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.41141033, 0.221749589, -0.0982980877, 0.960190535, -0.228551865, -0.160618216, 0.159306198, 0.920328438, -0.357235193, 0.229468316, 0.317426413, 0.920100331) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.545752466, -2.06852078, -0.106108092, 0.999177694, -0.0403032154, 0.00442831218, 0.0405429304, 0.994422674, -0.0973639786, -0.000479519367, 0.097463429, 0.995239019) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.640698731, -2.06365037, 0.210561454, 0.968826473, 0.0872608796, 0.231863856, -0.127261415, 0.978287518, 0.163578779, -0.212555468, -0.187986806, 0.958895802) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(8.44709575e-07, 0.158331871, -2.2649765e-06, 0.923384845, 0.0232613534, 0.383170158, -0.125269875, 0.961778343, 0.243495062, -0.362860739, -0.272839308, 0.891005516),
- CFrame.new(0.0618045703, 1.48416686, -0.108448043, 0.975101054, 0.123606004, -0.184118122, -0.0779671967, 0.968335748, 0.237164199, 0.207603067, -0.21690388, 0.953862548) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.955253482, -0.0731868446, -0.73079592, 0.566705883, 0.471124947, 0.675933301, 0.161119401, 0.741179585, -0.651684701, -0.808012962, 0.478219628, 0.344123483) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.32282197, 0.443497241, -0.196588114, 0.848699331, -0.480780631, -0.220362246, 0.217604205, 0.697198749, -0.683053434, 0.48203522, 0.531755328, 0.696332097) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.591504633, -2.13704395, -0.212200254, 0.996719897, -0.0799169093, 0.0127559304, 0.0808730721, 0.977753043, -0.193541735, 0.0029950738, 0.193938568, 0.981009126) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.781407714, -2.12729764, 0.421114147, 0.878235817, 0.126319557, 0.461243093, -0.282562017, 0.915190756, 0.287374794, -0.385824412, -0.382712662, 0.839446545) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(9.05245543e-07, 0.158330828, 3.88175249e-06, 0.908763885, 0.0238390118, 0.416629255, -0.147012383, 0.952652752, 0.266158074, -0.390558034, -0.303124487, 0.869240999),
- CFrame.new(0.075433284, 1.48183405, -0.109349772, 0.963501334, 0.150866389, -0.221143708, -0.093747884, 0.963918328, 0.249144107, 0.250752002, -0.219318897, 0.942879915) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.794478416, -0.0204670131, -0.705238581, 0.353311509, 0.686213791, 0.635831416, 0.204074919, 0.606762648, -0.768239737, -0.91297549, 0.401185244, 0.0743372515) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.40839684, 0.490417629, -0.144011289, 0.89845854, -0.411548376, -0.152971178, 0.202789828, 0.697992325, -0.686791658, 0.389420718, 0.586032867, 0.710575104) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.612892866, -2.13542819, -0.254775584, 0.994780123, -0.100371614, 0.0183858573, 0.101878867, 0.966765642, -0.234488338, 0.00576126575, 0.235137492, 0.971944988) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.97223562, -1.54789555, 0.749926925, 0.728678405, 0.354971588, 0.585681617, -0.681460738, 0.460862041, 0.568521976, -0.0681091994, -0.813388765, 0.57771951) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(5.55068254e-07, 0.158331409, 2.10106373e-06, 0.892955303, 0.0232613534, 0.449543983, -0.169420406, 0.942599356, 0.2877554, -0.417046279, -0.333114624, 0.845640004),
- CFrame.new(0.0890634507, 1.47949183, -0.110246301, 0.949739516, 0.178119749, -0.25742662, -0.108921915, 0.958985209, 0.26169309, 0.293481112, -0.220500857, 0.930187225) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.633698344, 0.0322629511, -0.679687381, 0.128931195, 0.850793779, 0.50943768, 0.286041826, 0.459982127, -0.840592861, -0.949503422, 0.25409925, -0.184056565) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.49397039, 0.537332416, -0.0914307982, 0.937753379, -0.336867452, -0.0844927132, 0.188237011, 0.697440088, -0.691479564, 0.291865647, 0.632532656, 0.717437744) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.634279966, -2.1338172, -0.297330618, 0.992398858, -0.120524377, 0.0248702765, 0.122703038, 0.95361495, -0.27488637, 0.00941389799, 0.275848567, 0.961154997) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.16306317, -0.96848464, 1.07874703, 0.494984388, 0.41064778, 0.765740752, -0.770980835, -0.198859543, 0.605015159, 0.40072304, -0.889844537, 0.218169272) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(4.41097654e-06, 0.117536232, -4.28734347e-06, 0.982259393, 0.0660384819, -0.175514683, -0.0563730858, 0.996635199, 0.0595009066, 0.178853467, -0.0485510193, 0.982677102),
- CFrame.new(0.0630348474, 1.48860013, -0.0702536851, 0.968662381, 0.105713904, 0.224761277, -0.136932328, 0.982256234, 0.128149584, -0.207225978, -0.154910773, 0.96595037) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.12269139, 0.318053991, -0.489949018, 0.269106239, 0.799169362, 0.537503719, 0.66471535, 0.249742895, -0.704117775, -0.696947098, 0.54676944, -0.464012861) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.38138843, 0.343716383, -0.156852931, 0.828349233, -0.501371324, 0.249928713, 0.399879903, 0.216724783, -0.890576363, 0.392343789, 0.837649822, 0.380012125) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.618462145, -2.08858991, -0.0101860911, 0.974936426, -0.111412555, 0.192577705, 0.116820022, 0.993008912, -0.0169201344, -0.189346254, 0.0389929973, 0.981135845) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.911364675, -0.974531889, 0.362171561, 0.727026284, 0.165536791, 0.666355968, -0.636332691, 0.526982546, 0.563355982, -0.257901847, -0.833598852, 0.48846674) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-6.69620931e-07, 0.0767404139, 3.57162207e-06, 0.690532386, -0.0731747448, -0.719590485, -0.101036206, 0.975356817, -0.196139693, 0.716209948, 0.208145499, 0.666122198),
- CFrame.new(0.0370114073, 1.4977082, -0.0302594546, 0.748446584, 0.0740310699, 0.659050286, -0.0955654755, 0.995417774, -0.00328688323, -0.656273723, -0.0605223924, 0.752091706) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.61170316, 0.603844523, -0.300212145, 0.366687417, 0.705359459, 0.606636941, 0.885217249, -0.0639109015, -0.460766375, -0.286235213, 0.705962777, -0.647831678) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.26878929, 0.150105834, -0.22226426, 0.660059571, -0.455929518, 0.597033978, 0.498165846, -0.329206735, -0.802155614, 0.562274039, 0.826892555, 0.00983245671) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.602630556, -2.04336429, 0.276949227, 0.925450087, -0.142724618, 0.350958228, 0.0597796589, 0.969734907, 0.236728817, -0.374123454, -0.198100567, 0.905973375) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.659671664, -0.980584919, -0.354392618, 0.728469074, -0.186241597, 0.659277678, -0.0654184371, 0.939030111, 0.337553978, -0.681948125, -0.289026558, 0.671870828) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-2.92621553e-06, 0.0767422318, 0.0673170164, 0.632639885, -0.0965212956, -0.768407702, -0.154967979, 0.956358254, -0.247717276, 0.758783042, 0.275794417, 0.590072691),
- CFrame.new(0.00399361551, 1.49550712, -0.0532284714, 0.747453213, 0.00806604326, 0.664265513, -0.0769965053, 0.994239211, 0.0745660961, -0.659837306, -0.106880814, 0.743768334) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.70209765, 0.58384192, -0.327886909, 0.366687417, 0.705359519, 0.606636941, 0.885217309, -0.0639109612, -0.460766315, -0.286235213, 0.705962718, -0.647831798) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.24132085, 0.183309674, -0.227627814, 0.619603872, -0.471491992, 0.627524078, 0.492658466, -0.388777584, -0.778549612, 0.611047268, 0.791547298, -0.00860351324) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.671483934, -2.03641987, 0.331912041, 0.916984916, -0.207342222, 0.340804785, 0.0998978019, 0.946446002, 0.307018697, -0.386211216, -0.247485891, 0.88858968) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.692109764, -0.996104538, -0.374890327, 0.729646027, -0.153414145, 0.666393757, -0.0736804157, 0.95119828, 0.299654484, -0.679843843, -0.267741919, 0.682734609) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-2.04145908e-06, 0.0767431855, 0.134648949, 0.571969151, -0.124988414, -0.810696721, -0.212088376, 0.932181776, -0.293352515, 0.79238236, 0.339727938, 0.506670594),
- CFrame.new(-0.0290362239, 1.49330616, -0.0761854872, 0.745213687, -0.0580743402, 0.664291918, -0.0587172061, 0.986615896, 0.152122736, -0.664235473, -0.15236932, 0.731829762) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.61825776, 0.595071316, -0.129595548, 0.366687477, 0.705359519, 0.606636822, 0.885217309, -0.0639110506, -0.460766315, -0.286235154, 0.705962539, -0.647831857) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.21385479, 0.216516256, -0.232992321, 0.57769978, -0.483432323, 0.657689989, 0.483098388, -0.446968108, -0.752884686, 0.657935202, 0.752670288, -0.0246680081) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.740345299, -2.02947569, 0.386864066, 0.905825615, -0.270626396, 0.325946569, 0.138678312, 0.916400194, 0.375471741, -0.400310069, -0.294910192, 0.867628813) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.724557221, -1.01162601, -0.395391107, 0.730537057, -0.120319098, 0.672189593, -0.0820238292, 0.961767375, 0.261295885, -0.677928925, -0.246021941, 0.69273752) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-3.46451998e-07, 0.076739192, 0.13465324, 0.527163684, -0.140414938, -0.838082433, -0.23255536, 0.924762607, -0.301217645, 0.817322731, 0.353691548, 0.454847008),
- CFrame.new(-0.0252140015, 1.49229395, -0.0821660906, 0.700742126, -0.0485009402, 0.711764216, -0.082794778, 0.985416174, 0.14866069, -0.708594203, -0.163103133, 0.686506987) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.71324646, 0.492193192, -0.161704004, 0.365689576, 0.655588686, 0.660662293, 0.897546768, -0.0605303347, -0.436744332, -0.246334642, 0.752688289, -0.61055696) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.21091485, 0.233320236, -0.267265975, 0.57769978, -0.483432293, 0.657689989, 0.483098358, -0.446968198, -0.752884567, 0.657935321, 0.752670348, -0.0246682093) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.755053997, -2.02923679, 0.391330689, 0.902614713, -0.283701479, 0.323728681, 0.149025068, 0.911519468, 0.383306026, -0.403829664, -0.297734022, 0.865029633) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.7340976, -1.01063764, -0.424863815, 0.757252693, -0.094340533, 0.64627254, -0.06261383, 0.974468648, 0.215615511, -0.650113821, -0.203740954, 0.732012153) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-5.58793545e-08, 0.0767441764, 0.13465023, 0.480998963, -0.15660432, -0.862621069, -0.25338605, 0.917096198, -0.307782471, 0.839306593, 0.3666192, 0.401440978),
- CFrame.new(-0.021381475, 1.49128342, -0.0881445259, 0.65311563, -0.0396456569, 0.756219804, -0.10657315, 0.983877182, 0.143623725, -0.749721408, -0.174395576, 0.638360381) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.76182008, 0.505522072, -0.229097188, 0.36162889, 0.602612078, 0.711395323, 0.9091838, -0.0590006709, -0.412193567, -0.206419989, 0.795850277, -0.569221556) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.20795989, 0.250132233, -0.301535666, 0.5776999, -0.483432353, 0.657689989, 0.483098328, -0.446968198, -0.752884567, 0.657935381, 0.752670288, -0.0246681422) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.76977241, -2.02899814, 0.395787388, 0.899254799, -0.296722263, 0.321398288, 0.159316033, 0.906453609, 0.391101241, -0.407381117, -0.300495744, 0.8624053) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.743635952, -1.00965238, -0.454341292, 0.783070743, -0.069980368, 0.617982984, -0.04504475, 0.984657943, 0.168580592, -0.62029922, -0.159847379, 0.767904699) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(8.43778253e-07, 0.0767394155, 0.134657219, 0.433636606, -0.173499793, -0.884226859, -0.274507552, 0.909209371, -0.313023925, 0.858256876, 0.378465563, 0.346639454),
- CFrame.new(-0.0175571516, 1.49027991, -0.0941112638, 0.602550149, -0.031548664, 0.797457218, -0.129944772, 0.982006192, 0.137034595, -0.787431002, -0.186195582, 0.587608337) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.64857256, 0.578576326, 0.0168920159, 0.35452798, 0.546728909, 0.758549511, 0.920062661, -0.0593304634, -0.387252748, -0.166717216, 0.835205078, -0.524059236) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.20501494, 0.266946107, -0.335820764, 0.57769978, -0.483432233, 0.657689989, 0.483098328, -0.446968228, -0.752884686, 0.657935381, 0.752670348, -0.0246681273) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.784498155, -2.02875423, 0.400250643, 0.895746768, -0.309684902, 0.318955988, 0.169547915, 0.901203752, 0.398854852, -0.410963714, -0.303194642, 0.859756887) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.753174543, -1.00866759, -0.4838126, 0.807877898, -0.0473455787, 0.587445021, -0.029393822, 0.992290437, 0.120397955, -0.588616312, -0.114534102, 0.800257802) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-3.74484807e-06, 0.0767414868, 0.134650201, 0.385243297, -0.191041946, -0.902823687, -0.295845628, 0.901129723, -0.316923589, 0.874106944, 0.389189124, 0.290635258),
- CFrame.new(-0.0137292221, 1.48926783, -0.100090019, 0.549274147, -0.0242465138, 0.835290372, -0.152803943, 0.979811072, 0.128923133, -0.821552813, -0.198449761, 0.534479856) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.63108325, 0.708897829, -0.0474289954, 0.344427407, 0.488255233, 0.801858246, 0.930121541, -0.0615177453, -0.362062693, -0.127450511, 0.87052995, -0.475325137) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.20206809, 0.283750832, -0.370089471, 0.57769984, -0.483432293, 0.657689989, 0.483098328, -0.446968198, -0.752884567, 0.657935262, 0.752670348, -0.0246681571) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.799214363, -2.02851176, 0.404719949, 0.89209199, -0.322585315, 0.316402525, 0.179717705, 0.895771563, 0.406564415, -0.414576232, -0.305829763, 0.857085109) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.76273036, -1.0076797, -0.513292432, 0.831565142, -0.0265356898, 0.554792762, -0.0157297552, 0.997332215, 0.0712792426, -0.555204332, -0.0680000857, 0.828929424) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-3.03611159e-06, 0.0767391026, 0.134649023, 0.335989982, -0.209168941, -0.918345869, -0.317324787, 0.892885923, -0.319467813, 0.886800826, 0.398751885, 0.233626232),
- CFrame.new(-0.00990246236, 1.48825645, -0.106065691, 0.49352926, -0.0177723467, 0.869547606, -0.17504701, 0.977302313, 0.119326085, -0.851931572, -0.21110259, 0.479216278) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.72322798, 0.495755762, 0.0343807936, 0.331383824, 0.42752111, 0.84107697, 0.939303875, -0.0655501634, -0.336766005, -0.0888418406, 0.901625752, -0.423294514) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.19911826, 0.300558776, -0.404374927, 0.57769978, -0.483432293, 0.657690048, 0.483098328, -0.446968257, -0.752884507, 0.657935381, 0.752670348, -0.0246681422) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.813916862, -2.02827573, 0.409185439, 0.888291478, -0.335419655, 0.313738734, 0.189822271, 0.890158772, 0.414227754, -0.418217599, -0.308400333, 0.85439074) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.772265315, -1.00669742, -0.542775154, 0.854028463, -0.00764206052, 0.520170152, -0.00411272049, 0.999761522, 0.0214404017, -0.520210028, -0.0204499513, 0.853793502) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(1.8584542e-06, 0.0767445713, 0.134650752, 0.2860488, -0.227817222, -0.930739164, -0.338869959, 0.884506822, -0.320647538, 0.896294177, 0.407120377, 0.175811708),
- CFrame.new(-0.0060793981, 1.48723757, -0.112049684, 0.435567528, -0.0121553838, 0.900074065, -0.196573347, 0.974491119, 0.108286887, -0.878430367, -0.22409682, 0.422067225) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.68592238, 0.646816194, -0.0141049325, 0.31547156, 0.364869893, 0.875983775, 0.947557569, -0.0714050978, -0.311505735, -0.051109314, 0.928316414, -0.368261516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.19616687, 0.317367494, -0.438638926, 0.577699721, -0.483432353, 0.657690048, 0.483098388, -0.446968168, -0.752884686, 0.657935381, 0.752670348, -0.0246679783) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.82864356, -2.02803326, 0.413644373, 0.884346247, -0.348184079, 0.310965478, 0.199858502, 0.884367228, 0.421842456, -0.421886623, -0.310905695, 0.851674438) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.781804323, -1.00571203, -0.572244167, 0.87516892, 0.00925213099, 0.483729005, 0.0054063499, 0.999567628, -0.0288997442, -0.483787268, 0.0279073641, 0.874740541) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(4.50480729e-06, -0.196747318, -0.14651534, 0.991095781, 0.111097708, -0.0733928233, -0.115889043, 0.991158783, -0.0646066442, 0.0655662939, 0.0725367963, 0.995208263),
- CFrame.new(-0.0257421434, 1.43433368, -0.216065317, 0.802185476, -0.110924214, 0.586680889, -0.17714411, 0.894135237, 0.411269009, -0.570191741, -0.43384099, 0.697612643) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.79279375, 1.03806448, -0.269433856, 0.0901905, -0.298404098, 0.950168848, 0.951438844, -0.256139755, -0.170752689, 0.294329345, 0.919427693, 0.260811865) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.45026731, 0.218753517, -0.15500614, 0.623332202, -0.321068972, 0.713001907, 0.649175763, -0.295837224, -0.700750291, 0.435921758, 0.899663866, 0.0240253229) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.273112833, -2.02792001, 0.401173353, 0.980544806, 0.108010367, -0.163907275, -0.0341129303, 0.916061342, 0.399584681, 0.193308413, -0.386219382, 0.901923776) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.0197637752, -1.16448545, -0.728960395, 0.961483836, -0.0709177703, -0.265555352, 0.00189279765, 0.967826962, -0.251609415, 0.274855226, 0.241415724, 0.930684209) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(2.13086605e-06, -0.470234573, -0.427666605, 0.408763498, -0.109106347, 0.906095028, -0.286698699, 0.927215815, 0.240986958, -0.866438866, -0.358282924, 0.347731322),
- CFrame.new(-0.0454112217, 1.38142478, -0.320081919, 0.987226546, -0.0908223093, 0.130901411, -0.0155262947, 0.762856007, 0.646381974, -0.158564806, -0.640157759, 0.751701474) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.89965403, 1.42931819, -0.524767101, -0.298090279, -0.756556034, 0.582035363, 0.865133822, -0.471788704, -0.170172825, 0.403342962, 0.452811569, 0.79515785) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.70437431, 0.120141506, 0.128627658, 0.61944443, -0.153016597, 0.76998353, 0.76422143, -0.106846347, -0.636041999, 0.179594934, 0.982430577, 0.050753206) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.282415479, -2.02781296, 0.388704598, 0.642388165, 0.514432311, -0.568064332, -0.240135193, 0.839015841, 0.488249242, 0.727786064, -0.177233234, 0.662507176) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.74228251, -1.32326102, -0.885675728, 0.492560714, -0.275518209, -0.825514257, -0.1582973, 0.90437597, -0.396290094, 0.855760336, 0.325873613, 0.40184629) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-2.59280205e-06, -0.47504127, -0.457315296, 0.398533344, -0.113221705, 0.910138488, -0.300279707, 0.921549201, 0.246128321, -0.866604447, -0.371386468, 0.333269894),
- CFrame.new(-0.0381348804, 1.37929511, -0.323445797, 0.986205697, -0.0762254298, 0.146928608, -0.0382282436, 0.758768857, 0.650237083, -0.161049396, -0.646884441, 0.74538821) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(2.00053334, 1.2704469, -0.588049054, -0.216444209, -0.7888785, 0.575171828, 0.9020648, -0.386924267, -0.191228956, 0.373404413, 0.477451861, 0.795367241) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.64062309, 0.151975632, 0.20967263, 0.611570477, -0.0917660892, 0.785850286, 0.790079236, 0.0182213038, -0.612733722, 0.0419090092, 0.995613933, 0.0836461484) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.320634961, -2.018255, 0.406164289, 0.638756275, 0.533931911, -0.553991914, -0.248126656, 0.824502468, 0.508555532, 0.728301883, -0.187382922, 0.659138918) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.757505953, -1.27324867, -0.8857131, 0.493090242, -0.286030114, -0.821613491, -0.156857938, 0.899699628, -0.407352537, 0.85572046, 0.32973823, 0.398767024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(2.41398811e-06, -0.479844123, -0.486951172, 0.388300568, -0.11749129, 0.914012313, -0.313858837, 0.91568023, 0.251042575, -0.86643827, -0.384350806, 0.318683475),
- CFrame.new(-0.0308654904, 1.37715018, -0.326803893, 0.984689653, -0.0617392063, 0.163016781, -0.0609246492, 0.754307389, 0.65368849, -0.163322926, -0.653612077, 0.738997221) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(2.10142303, 1.11158037, -0.651332021, -0.132284373, -0.813371539, 0.566504836, 0.930592835, -0.298713773, -0.211582348, 0.341317803, 0.499196172, 0.796433032) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.5768702, 0.183820069, 0.290722668, 0.594925165, -0.0326879919, 0.803116202, 0.797882795, 0.144839734, -0.585153282, -0.0971957147, 0.988915086, 0.112250105) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.358843356, -2.00869513, 0.423623979, 0.634934902, 0.553043067, -0.539445162, -0.256022513, 0.80941987, 0.528480709, 0.728910267, -0.197440758, 0.655520439) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.772729993, -1.22323406, -0.885755002, 0.493603975, -0.296494752, -0.817585409, -0.155412585, 0.894888222, -0.41835618, 0.855688095, 0.333565354, 0.395641387) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-2.77161598e-06, -0.513831139, -0.486952126, 0.388300687, -0.117491238, 0.914012253, -0.313858807, 0.91568023, 0.251042575, -0.86643821, -0.384350806, 0.318683594),
- CFrame.new(-0.0152089074, 1.34987247, -0.354405224, 0.986854076, -0.0305622816, 0.15869756, -0.091791451, 0.702205062, 0.706032932, -0.133016154, -0.711318493, 0.69016856) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(2.12692165, 1.08145428, -0.666031957, -0.099576816, -0.820623159, 0.562727273, 0.939228714, -0.264243513, -0.219145179, 0.328532696, 0.506707907, 0.797065496) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.56384516, 0.145816624, 0.28030175, 0.594925165, -0.0326880515, 0.803116083, 0.797882795, 0.144839793, -0.585153222, -0.0971956849, 0.988915026, 0.112250209) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.368119091, -1.98164845, 0.431045681, 0.634934902, 0.553043067, -0.539445043, -0.256022573, 0.809419811, 0.528480768, 0.728910208, -0.197440833, 0.655520439) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.761665821, -1.19093418, -0.876894295, 0.493603915, -0.296494752, -0.817585409, -0.155412614, 0.894888222, -0.41835621, 0.855688095, 0.333565354, 0.395641267) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- for i = 0, 2, 2.5 do
- swait()
- PlayAnimationFromTable({
- CFrame.new(-1.57952309e-06, -0.547812819, -0.486952007, 0.388300568, -0.11749129, 0.914012313, -0.313858837, 0.91568023, 0.251042575, -0.86643827, -0.384350806, 0.318683475),
- CFrame.new(0.000457279384, 1.32260108, -0.382008672, 0.987657666, 0.000908374786, 0.156624928, -0.120242476, 0.645200372, 0.754492104, -0.100369036, -0.764012873, 0.637346387) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(2.15241909, 1.05132604, -0.680738509, -0.0666572899, -0.826685309, 0.55870223, 0.946583807, -0.229447216, -0.22656785, 0.315492958, 0.513756156, 0.797821462) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.55082035, 0.107811987, 0.269873619, 0.594925165, -0.0326880515, 0.803116083, 0.797882795, 0.144839823, -0.585153103, -0.0971957296, 0.988915086, 0.112250179) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.377384573, -1.9546026, 0.43845281, 0.634934962, 0.553043067, -0.539445162, -0.256022573, 0.80941987, 0.528480649, 0.728910267, -0.197440773, 0.655520499) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.750588298, -1.15863574, -0.8680439, 0.493603915, -0.296494842, -0.817585349, -0.155412525, 0.894888222, -0.41835618, 0.855688155, 0.333565295, 0.395641327) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- }, 0.3)
- end
- attack = false
- end
- Mouse.Button1Down:connect(function()
- if attack == false and attacktype == 1 then
- attackone()
- end
- end)
- mikymose = game.Players.LocalPlayer:GetMouse()
- chr = game.Players.LocalPlayer.Character
- function SoundFX(args)
- s = Instance.new("Sound", args[1])
- s.SoundId = "rbxassetid://"..args[2]
- s.Volume = args[3]
- s.Pitch = args[4]
- s.Name = args[5]
- return s
- end
- mikymose.KeyDown:Connect(function(onic)
- onic = onic:upper()
- if onic == "H" then
- lolwat = SoundFX({chr, "903447733", 1, 1, "succ"})
- wait(1 / 60)
- lolwat:Play()
- return
- end
- end)
- Mouse.KeyDown:connect(function(k)
- if attack == false and k == 'q' then
- heavypunch()
- elseif attack == false and k == 'f' then
- beatmeup()
- elseif attack == false and k == 'x' then
- airkicv2()
- elseif attack == false and k == 'e' then
- spinnie()
- end
- end)
- while true do
- swait()
- for i, v in pairs(Character:GetChildren()) do
- if v:IsA("Part") then
- v.Material = "SmoothPlastic"
- elseif v:IsA("Accessory") then
- v:WaitForChild("Handle").Material = "SmoothPlastic"
- end
- end
- Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
- velocity = RootPart.Velocity.y
- sine = sine + change
- local hit, pos = rayCast(RootPart.Position, (CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0))).lookVector, 4, Character)
- if RootPart.Velocity.y > 1 and hit == nil then
- Anim = "Jump"
- if attack == false then
- PlayAnimationFromTable({
- CFrame.new(0, 0.0486936681, -0.0429394133, 1, 0, 0, 0, 0.996194661, -0.087155968, 0, 0.087155968, 0.996194661) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0, 1.48698187, -0.0992434025, 1, 0, 0, 0, 0.98480767, 0.173648626, 0, -0.173648626, 0.98480767) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.66118193, 0.583681226, 0.430878729, 0.556951106, -0.772693694, -0.30454877, 0.830109596, 0.506009281, 0.234249175, -0.026898358, -0.383274168, 0.923242927) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.65963519, 0.695907593, 0.339572817, 0.482961893, 0.810776234, 0.330741376, -0.866026103, 0.498096228, 0.0435779653, -0.129409045, -0.307477146, 0.94271481) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.499997795, -1.71809137, -0.102601528, 0.984807849, 3.55863392E-7, -0.173647791, 0.0593907312, 0.939692557, 0.336824298, 0.163175657, -0.342020214, 0.925416589) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.599241376, -1.29528463, -0.396836221, 0.992403984, 0.086823605, 0.0871558413, -0.118890785, 0.858931601, 0.498097867, -0.0316142589, -0.504676282, 0.862729669) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0)
- }, 0.15)
- end
- elseif RootPart.Velocity.y < -1 and hit == nil then
- Anim = "Fall"
- if attack == false then
- PlayAnimationFromTable({
- CFrame.new(0, -0.0520263538, -0.0354017057, 1, 0, 0, 0, 0.965925872, 0.258818984, 0, -0.258818984, 0.965925872) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0, 1.51533091, -0.10684365, 1, 0, 0, 0, 0.965925872, 0.258819342, 0, -0.258819342, 0.965925872) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(1.67554009, 0.885679007, 0.385592818, 0.374123871, -0.696466088, -0.61234498, 0.914592147, 0.386364758, 0.119345918, 0.153468132, -0.604696095, 0.781530797) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-1.67474985, 0.999329269, 0.296636045, 0.250219911, 0.753912985, 0.607457995, -0.927206695, 0.367205799, -0.0738086402, -0.278707415, -0.544770718, 0.79091537) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(0.504494727, -1.81757987, -0.0935191363, 0.984807849, -0.0449431092, -0.167730823, 0.059390761, 0.99484998, 0.0821366012, 0.163175508, -0.0908504426, 0.982405365) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
- CFrame.new(-0.623603821, -1.49203336, -0.421764404, 0.992403865, 0.122534379, 0.0109562073, -0.118891656, 0.978150725, -0.17054674, -0.0316146575, 0.167948633, 0.985288799) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0)
- }, 0.15)
- end
- elseif Torsovelocity < 1 and hit ~= nil then
- Anim = "Idle"
- if attack == false then
- change = 1
- PlayAnimationFromTable({
- CFrame.new(-4.54485416e-07, -0.329182655, -0.678382814, -0.147760779, -0.0411328338, 0.988167405, -0.0267262943, 0.998935997, 0.0375846922, -0.988661945, -0.0208565108, -0.14870289) * CFrame.new(0, 0 + 0.1 * math.cos(sine / 15), 0) * CFrame.Angles(0 + 0.05 * math.cos(sine / 15), 0, 0),
- CFrame.new(0.094290629, 1.48762226, -0.0571522862, 0.647305489, 0.188579828, -0.73853457, -0.0359039195, 0.975380182, 0.217587933, 0.761384666, -0.114329532, 0.638139606)* CFrame.new(0, 0, 0 + 0.01 * math.cos(sine / 17)) * CFrame.Angles(0 + 0.11 * math.cos(sine / 17), 0, 0 - 0.07 * math.cos(sine / 17)),
- CFrame.new(1.69652772, 0.261996239, 0.108528078, 0.677241564, -0.674831629, -0.293165743, 0.549642622, 0.728913128, -0.408140451, 0.489118457, 0.11527326, 0.864566505) * CFrame.new(0, 0 + 0.1 * math.cos(sine / 23), 0) * CFrame.Angles(0, 0, 0 + 0.1 * math.cos(sine / 16.1)),
- CFrame.new(-1.64387631, 0.154943228, 0.0663744658, 0.843559623, 0.460060179, 0.277041018, 0.148985431, 0.295143396, -0.943765759, -0.515955806, 0.837397754, 0.180428788) * CFrame.new(0, 0 + 0.1 * math.cos(sine / 23), 0) * CFrame.Angles(0, 0 - 0.12 * math.cos(sine / 19.2), 0 - 0.1 * math.cos(sine / 16.1)),
- CFrame.new(1.01050818, -1.57678533, -0.343261719, 0.712876499, -0.127309099, -0.689637184, 0.336830884, 0.924686432, 0.177481487, 0.615103185, -0.358813524, 0.702069044) * CFrame.new(0, 0 - 0.1 * math.cos(sine / 15), 0 + 0.05 * math.cos(sine / 15)) * CFrame.Angles(0 - 0.05 * math.cos(sine / 15), 0, 0),
- CFrame.new(-1.39035821, -1.61816072, -0.360897511, -0.071397081, 0.486208171, 0.870921373, -0.162832513, 0.855754733, -0.49108988, -0.984067023, -0.176876694, 0.0180721134) * CFrame.new(0, 0 - 0.1 * math.cos(sine / 15), 0 + 0.05 * math.cos(sine / 15)) * CFrame.Angles(0 - 0.05 * math.cos(sine / 15), 0, 0),
- }, 0.3)
- end
- elseif Torsovelocity > 2 and hit ~= nil then
- Anim = "Walk"
- if attack == false then
- PlayAnimationFromTable({
- CFrame.new(0, 0.00188609574, 0.0113249458, 1, 0, 0, 0, 0.98641783, 0.164260298, 0, -0.164260328, 0.986417294) * CFrame.new(0, 0 + 0.1 * math.cos(sine / 4), 0) * CFrame.Angles(0, 0 + 0.1 * math.sin(sine / 8), 0),
- CFrame.new(0, 1.484954, 0.090923056, 1, 0, 0, 0, 0.999614, -0.0278198719, 0, 0.0278199166, 0.999613464) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0 - 0.1 * math.sin(sine / 8), 0),
- CFrame.new(1.50000286, -3.28291208e-08, -0.0114809256, 1, 0, 0, 0, 0.98641783, -0.164260328, 0, 0.164260298, 0.986417294) * CFrame.new(-0.05, 0, -0.1 - 0.5 * math.sin(sine / 8)) * CFrame.Angles(math.rad(30 * math.sin(sine / 8)), math.rad(0), math.rad(0)),
- CFrame.new(-1.5, -3.28291208e-08, -0.0114809256, 1, 0, 0, 0, 0.98641783, -0.164260328, 0, 0.164260298, 0.986417294) * CFrame.new(0.05, 0, -0.2 + 0.5 * math.sin(sine / 8)) * CFrame.Angles(math.rad(-30 * math.sin(sine / 8)), math.rad(0), math.rad(0)),
- CFrame.new(0.5, -1.64 - 0.5 * math.cos(sine / 8) / 2, 0 + 1.5 * math.sin(sine / 8) / 2) * CFrame.Angles(math.rad(-50 * math.sin(sine / 8)), math.rad(-5), math.rad(0)),
- CFrame.new(-0.5, -1.64 + 0.5 * math.cos(sine / 8) / 2, 0 - 1.5 * math.sin(sine / 8) / 2) * CFrame.Angles(math.rad(50 * math.sin(sine / 8)), math.rad(5), math.rad(0))
- }, 0.2, false)
- end
- end
- if 0 < #Effects then
- for e = 1, #Effects do
- if Effects[e] ~= nil then
- local Thing = Effects[e]
- if Thing ~= nil then
- local Part = Thing[1]
- local Mode = Thing[2]
- local Delay = Thing[3]
- local IncX = Thing[4]
- local IncY = Thing[5]
- local IncZ = Thing[6]
- if Thing[2] == "Shoot" then
- local Look = Thing[1]
- local move = 30
- if Thing[8] == 3 then
- move = 10
- end
- local hit, pos = rayCast(Thing[4], Thing[1], move, m)
- if Thing[10] ~= nil then
- da = pos
- cf2 = CFrame.new(Thing[4], Thing[10].Position)
- cfa = CFrame.new(Thing[4], pos)
- tehCF = cfa:lerp(cf2, 0.2)
- Thing[1] = tehCF.lookVector
- end
- local mag = (Thing[4] - pos).magnitude
- Effects["Head"].Create(Torso.BrickColor, CFrame.new((Thing[4] + pos) / 2, pos) * CFrame.Angles(1.57, 0, 0), 1, mag * 5, 1, 0.5, 0, 0.5, 0.2)
- if Thing[8] == 2 then
- Effects["Ring"].Create(Torso.BrickColor, CFrame.new((Thing[4] + pos) / 2, pos) * CFrame.Angles(1.57, 0, 0) * CFrame.fromEulerAnglesXYZ(1.57, 0, 0), 1, 1, 0.1, 0.5, 0.5, 0.1, 0.1, 1)
- end
- Thing[4] = Thing[4] + Look * move
- Thing[3] = Thing[3] - 1
- if 2 < Thing[5] then
- Thing[5] = Thing[5] - 0.3
- Thing[6] = Thing[6] - 0.3
- end
- if hit ~= nil then
- Thing[3] = 0
- if Thing[8] == 1 or Thing[8] == 3 then
- Damage(hit, hit, Thing[5], Thing[6], Thing[7], "Normal", RootPart, 0, "", 1)
- else
- if Thing[8] == 2 then
- Damage(hit, hit, Thing[5], Thing[6], Thing[7], "Normal", RootPart, 0, "", 1)
- if (hit.Parent:findFirstChild("Humanoid")) ~= nil or (hit.Parent.Parent:findFirstChild("Humanoid")) ~= nil then
- ref = CFuncs.Part.Create(workspace, "Neon", 0, 1, BrickColor.new("Really red"), "Reference", Vector3.new())
- ref.Anchored = true
- ref.CFrame = CFrame.new(pos)
- CFuncs["Sound"].Create("161006093", ref, 1, 1.2)
- game:GetService("Debris"):AddItem(ref, 0.2)
- Effects["Block"].Create(Torso.BrickColor, CFrame.new(ref.Position) * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)), 1, 1, 1, 10, 10, 10, 0.1, 2)
- Effects["Ring"].Create(BrickColor.new("Bright yellow"), CFrame.new(ref.Position) * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)), 1, 1, 0.1, 4, 4, 0.1, 0.1)
- MagnitudeDamage(ref, 15, Thing[5] / 1.5, Thing[6] / 1.5, 0, "Normal", "", 1)
- end
- end
- end
- ref = CFuncs.Part.Create(workspace, "Neon", 0, 1, BrickColor.new("Really red"), "Reference", Vector3.new())
- ref.Anchored = true
- ref.CFrame = CFrame.new(pos)
- Effects["Sphere"].Create(Torso.BrickColor, CFrame.new(pos), 5, 5, 5, 1, 1, 1, 0.07)
- game:GetService("Debris"):AddItem(ref, 1)
- end
- if Thing[3] <= 0 then
- table.remove(Effects, e)
- end
- end
- do
- do
- if Thing[2] == "FireWave" then
- if Thing[3] <= Thing[4] then
- Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(0, 1, 0)
- Thing[3] = Thing[3] + 1
- Thing[6].Scale = Thing[6].Scale + Vector3.new(Thing[5], 0, Thing[5])
- else
- Part.Parent = nil
- table.remove(Effects, e)
- end
- end
- if Thing[2] ~= "Shoot" and Thing[2] ~= "Wave" and Thing[2] ~= "FireWave" then
- if Thing[1].Transparency <= 1 then
- if Thing[2] == "Block1" then
- Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
- Mesh = Thing[7]
- Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
- Thing[1].Transparency = Thing[1].Transparency + Thing[3]
- else
- if Thing[2] == "Block2" then
- Thing[1].CFrame = Thing[1].CFrame
- Mesh = Thing[7]
- Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
- Thing[1].Transparency = Thing[1].Transparency + Thing[3]
- else
- if Thing[2] == "Fire" then
- Thing[1].CFrame = CFrame.new(Thing[1].Position) + Vector3.new(0, 0.2, 0)
- Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
- Thing[1].Transparency = Thing[1].Transparency + Thing[3]
- else
- if Thing[2] == "Cylinder" then
- Mesh = Thing[7]
- Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
- Thing[1].Transparency = Thing[1].Transparency + Thing[3]
- else
- if Thing[2] == "Blood" then
- Mesh = Thing[7]
- Thing[1].CFrame = Thing[1].CFrame * CFrame.new(0, 0.5, 0)
- Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
- Thing[1].Transparency = Thing[1].Transparency + Thing[3]
- else
- if Thing[2] == "Elec" then
- Mesh = Thing[10]
- Mesh.Scale = Mesh.Scale + Vector3.new(Thing[7], Thing[8], Thing[9])
- Thing[1].Transparency = Thing[1].Transparency + Thing[3]
- else
- if Thing[2] == "Disappear" then
- Thing[1].Transparency = Thing[1].Transparency + Thing[3]
- end
- end
- end
- end
- end
- end
- end
- else
- Part.Parent = nil
- table.remove(Effects, e)
- end
- end
- end
- end
- end
- end
- end
- end
- end
Add Comment
Please, Sign In to add comment