cat568

urasj

Sep 25th, 2021 (edited)
1,192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 48.38 KB | None | 0 0
  1.  
  2.  
  3. wait(1/60)
  4. Effects = { }
  5. local Player = game:service'Players'.Tabby_Cxt
  6. local chara = Player.Character
  7. local Humanoid = chara:FindFirstChildOfClass("Humanoid")
  8. local Mouse = Player:GetMouse()
  9. local LeftArm = chara["Left Arm"]
  10. local RightArm = chara["Right Arm"]
  11. local LeftLeg = chara["Left Leg"]
  12. local RightLeg = chara["Right Leg"]
  13. local Head = chara.Head
  14. local Torso = chara.Torso
  15. local Camera = workspace.CurrentCamera
  16. local RootPart = chara.HumanoidRootPart
  17. local RootJoint = RootPart.RootJoint
  18. local attack = false
  19. local Anim = 'Idle'
  20. local attacktype = 1
  21. local delays = false
  22. local play = true
  23. local targetted = nil
  24. local Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  25. local velocity = RootPart.Velocity.y
  26. local sine = 0
  27. local change = 1
  28. local doe = 0
  29. local Create = LoadLibrary("RbxUtility").Create
  30. local debby = game:GetService("Debris")
  31. Humanoid.WalkSpeed = 16
  32.  
  33. Humanoid.Animator.Parent = nil
  34. chara.Animate.Parent = nil
  35.  
  36. local newMotor = function(part0, part1, c0, c1)
  37. local w = Create('Motor'){
  38. Parent = part0,
  39. Part0 = part0,
  40. Part1 = part1,
  41. C0 = c0,
  42. C1 = c1,
  43. }
  44. return w
  45. end
  46.  
  47. function clerp(a, b, t)
  48. return a:lerp(b, t)
  49. end
  50.  
  51. RootCF = CFrame.fromEulerAnglesXYZ(-1.57, 0, 3.14)
  52. NeckCF = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  53.  
  54. local RW = newMotor(Torso, RightArm, CFrame.new(1.5, 0, 0), CFrame.new(0, 0, 0))
  55. local LW = newMotor(Torso, LeftArm, CFrame.new(-1.5, 0, 0), CFrame.new(0, 0, 0))
  56. local RH = newMotor(Torso, RightLeg, CFrame.new(.5, -2, 0), CFrame.new(0, 0, 0))
  57. local LH = newMotor(Torso, LeftLeg, CFrame.new(-.5, -2, 0), CFrame.new(0, 0, 0))
  58. RootJoint.C1 = CFrame.new(0, 0, 0)
  59. RootJoint.C0 = CFrame.new(0, 0, 0)
  60. Torso.Neck.C1 = CFrame.new(0, 0, 0)
  61. Torso.Neck.C0 = CFrame.new(0, 1.5, 0)
  62.  
  63. local rarmc1 = RW.C1
  64. local larmc1 = LW.C1
  65. local rlegc1 = RH.C1
  66. local llegc1 = LH.C1
  67.  
  68. local resetc1 = false
  69.  
  70. function PlayAnimationFromTable(table, speed, bool)
  71. RootJoint.C0 = clerp(RootJoint.C0, table[1], speed)
  72. Torso.Neck.C0 = clerp(Torso.Neck.C0, table[2], speed)
  73. RW.C0 = clerp(RW.C0, table[3], speed)
  74. LW.C0 = clerp(LW.C0, table[4], speed)
  75. RH.C0 = clerp(RH.C0, table[5], speed)
  76. LH.C0 = clerp(LH.C0, table[6], speed)
  77. if bool == true then
  78. if resetc1 == false then
  79. resetc1 = true
  80. RootJoint.C1 = RootJoint.C1
  81. Torso.Neck.C1 = Torso.Neck.C1
  82. LW.C1 = larmc1
  83. RW.C1 = rarmc1
  84. RH.C1 = rlegc1
  85. LH.C1 = llegc1
  86. end
  87. end
  88. end
  89.  
  90. ArtificialHB = Instance.new("BindableEvent", script)
  91. ArtificialHB.Name = "Heartbeat"
  92. script:WaitForChild("Heartbeat")
  93. frame = 0.03333333333333
  94. tf = 0
  95. allowframeloss = false
  96. tossremainder = false
  97. lastframe = tick()
  98. script.Heartbeat:Fire()
  99. game:GetService("RunService").Heartbeat:connect(function(s, p)
  100. tf = tf + s
  101. if tf >= frame then
  102. if allowframeloss then
  103. script.Heartbeat:Fire()
  104. lastframe = tick()
  105. else
  106. for i = 1, math.floor(tf / frame) do
  107. script.Heartbeat:Fire()
  108. end
  109. lastframe = tick()
  110. end
  111. if tossremainder then
  112. tf = 0
  113. else
  114. tf = tf - frame * math.floor(tf / frame)
  115. end
  116. end
  117. end)
  118. function swait(num)
  119. if num == 0 or num == nil then
  120. ArtificialHB.Event:wait()
  121. else
  122. for i = 0, num do
  123. ArtificialHB.Event:wait()
  124. end
  125. end
  126. end
  127.  
  128. function RemoveOutlines(part)
  129. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  130. end
  131.  
  132. function so(id,par,pit,vol)
  133. local sou = Instance.new("Sound", par or workspace)
  134. if par == chara then
  135. sou.Parent = chara.Torso
  136. end
  137. sou.Volume = vol
  138. sou.Pitch = pit or 1
  139. sou.SoundId = "rbxassetid://" .. id
  140. sou.PlayOnRemove = true
  141. sou:Destroy()
  142. end
  143.  
  144. New = function(Object, Parent, Name, Data)
  145.     local Object = Instance.new(Object)
  146.     for Index, Value in pairs(Data or {}) do
  147.         Object[Index] = Value
  148.     end
  149.     Object.Parent = Parent
  150.     Object.Name = Name
  151.     return Object
  152. end
  153.  
  154. ISCREAM = New("Model",chara,"ISCREAM",{})
  155. KonuHandaru = New("Part",ISCREAM,"KonuHandaru",{FormFactor = Enum.FormFactor.Plate,Size = Vector3.new(0.600000024, 1, 0.600000024),CFrame = CFrame.new(-47.8000031, 6.70001078, -63.9999924, 1, 0, 0, 0, -1, 0, 0, 0, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,})
  156. Mesh = New("SpecialMesh",KonuHandaru,"Mesh",{Scale = Vector3.new(0.5, 0.699999988, 0.5),MeshId = "http://www.roblox.com/asset/?id=1778999",TextureId = "http://www.roblox.com/asset/?id=20403465",MeshType = Enum.MeshType.FileMesh,})
  157. Part = New("Part",ISCREAM,"Part",{BrickColor = BrickColor.new("Carnation pink"),Material = Enum.Material.Marble,Size = Vector3.new(0.600000024, 0.600000024, 0.600000024),CFrame = CFrame.new(-47.8000031, 8.70004463, -63.9999924, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 0.596078, 0.862745),})
  158. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.29999995, 1.29999995, 1.29999995),MeshType = Enum.MeshType.Sphere,})
  159. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = KonuHandaru,C1 = CFrame.new(0, -2.00003409, -1.90734863e-06, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  160. Part = New("Part",ISCREAM,"Part",{BrickColor = BrickColor.new("Carnation pink"),Material = Enum.Material.Marble,Size = Vector3.new(0.600000024, 0.200000018, 0.600000024),CFrame = CFrame.new(-47.8000031, 8.50004387, -63.9999924, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 0.596078, 0.862745),})
  161. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.29999995, 1.29999995, 1.29999995),MeshType = Enum.MeshType.Sphere,})
  162. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = KonuHandaru,C1 = CFrame.new(0, -1.80003309, -1.90734863e-06, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  163. Part = New("Part",ISCREAM,"Part",{BrickColor = BrickColor.new("Buttermilk"),Material = Enum.Material.Marble,Size = Vector3.new(0.600000024, 0.200000018, 0.600000024),CFrame = CFrame.new(-47.8000031, 9.30004692, -63.9999924, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.996078, 0.952941, 0.733333),})
  164. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.29999995, 1.29999995, 1.29999995),MeshType = Enum.MeshType.Sphere,})
  165. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = KonuHandaru,C1 = CFrame.new(0, -2.60003614, -1.90734863e-06, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  166. Part = New("Part",ISCREAM,"Part",{BrickColor = BrickColor.new("Brown"),Material = Enum.Material.Marble,Size = Vector3.new(0.600000024, 0.600000024, 0.600000024),CFrame = CFrame.new(-47.8000031, 9.10004234, -63.9999924, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.486275, 0.360784, 0.27451),})
  167. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.29999995, 1.29999995, 1.29999995),MeshType = Enum.MeshType.Sphere,})
  168. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = KonuHandaru,C1 = CFrame.new(0, -2.40003109, -1.90734863e-06, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  169. Part = New("Part",ISCREAM,"Part",{BrickColor = BrickColor.new("Buttermilk"),Material = Enum.Material.Marble,Size = Vector3.new(0.600000024, 0.600000024, 0.600000024),CFrame = CFrame.new(-47.8000031, 9.50004387, -63.9999924, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.996078, 0.952941, 0.733333),})
  170. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.29999995, 1.29999995, 1.29999995),MeshType = Enum.MeshType.Sphere,})
  171. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = KonuHandaru,C1 = CFrame.new(0, -2.80003309, -1.90734863e-06, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  172. Part = New("Part",ISCREAM,"Part",{BrickColor = BrickColor.new("Brown"),Material = Enum.Material.Marble,Size = Vector3.new(0.600000024, 0.200000018, 0.600000024),CFrame = CFrame.new(-47.8000031, 8.90004539, -63.9999924, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.486275, 0.360784, 0.27451),})
  173. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.29999995, 1.29999995, 1.29999995),MeshType = Enum.MeshType.Sphere,})
  174. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = KonuHandaru,C1 = CFrame.new(0, -2.20003414, -1.90734863e-06, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  175. Part = New("Part",ISCREAM,"Part",{BrickColor = BrickColor.new("Brown"),Material = Enum.Material.Marble,Size = Vector3.new(0.600000024, 0.200000018, 0.600000024),CFrame = CFrame.new(-47.8000031, 7.7000103, -63.9999924, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.486275, 0.360784, 0.27451),})
  176. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.29999995, 1.29999995, 1.29999995),MeshType = Enum.MeshType.Sphere,})
  177. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = KonuHandaru,C1 = CFrame.new(0, -0.999999762, -1.90734863e-06, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  178. Part = New("Part",ISCREAM,"Part",{BrickColor = BrickColor.new("Brown"),Material = Enum.Material.Marble,Size = Vector3.new(0.600000024, 0.600000024, 0.600000024),CFrame = CFrame.new(-47.8000031, 7.9000082, -63.9999924, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.486275, 0.360784, 0.27451),})
  179. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.29999995, 1.29999995, 1.29999995),MeshType = Enum.MeshType.Sphere,})
  180. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = KonuHandaru,C1 = CFrame.new(0, -1.19999766, -1.90734863e-06, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  181. Part = New("Part",ISCREAM,"Part",{BrickColor = BrickColor.new("Buttermilk"),Material = Enum.Material.Marble,Size = Vector3.new(0.600000024, 0.200000018, 0.600000024),CFrame = CFrame.new(-47.8000031, 8.10001087, -63.9999924, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.996078, 0.952941, 0.733333),})
  182. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.29999995, 1.29999995, 1.29999995),MeshType = Enum.MeshType.Sphere,})
  183. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = KonuHandaru,C1 = CFrame.new(0, -1.39999986, -1.90734863e-06, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  184. Part = New("Part",ISCREAM,"Part",{Size = Vector3.new(0.100000001, 0.100000001, 0.100000001),CFrame = CFrame.new(-47.8000031, 11.2658768, -64.0939636, 1, 0, 0, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,})
  185. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 0.400000006, 0.400000006),MeshId = "http://www.roblox.com/asset/?id=104783233      ",TextureId = "http://www.roblox.com/asset/?id=104783391 ",MeshType = Enum.MeshType.FileMesh,})
  186. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = KonuHandaru,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.939692736, -0.342019916, 0, 0.342019886, 0.939692736),C1 = CFrame.new(0, -4.56586552, 0.0939674377, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  187. Part = New("Part",ISCREAM,"Part",{BrickColor = BrickColor.new("Brown"),Material = Enum.Material.Marble,Size = Vector3.new(0.600000024, 0.200000018, 0.600000024),CFrame = CFrame.new(-47.8000031, 10.1000443, -63.9999924, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.486275, 0.360784, 0.27451),})
  188. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.29999995, 1.29999995, 1.29999995),MeshType = Enum.MeshType.Sphere,})
  189. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = KonuHandaru,C1 = CFrame.new(0, -3.400033, -1.90734863e-06, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  190. Part = New("Part",ISCREAM,"Part",{BrickColor = BrickColor.new("Buttermilk"),Material = Enum.Material.Marble,Size = Vector3.new(0.600000024, 0.600000024, 0.600000024),CFrame = CFrame.new(-47.8000031, 10.7000446, -63.9999924, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.996078, 0.952941, 0.733333),})
  191. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.29999995, 1.29999995, 1.29999995),MeshType = Enum.MeshType.Sphere,})
  192. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = KonuHandaru,C1 = CFrame.new(0, -4.00003433, -1.90734863e-06, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  193. Part = New("Part",ISCREAM,"Part",{BrickColor = BrickColor.new("Buttermilk"),Material = Enum.Material.Marble,Size = Vector3.new(0.600000024, 0.200000018, 0.600000024),CFrame = CFrame.new(-47.8000031, 10.5000448, -63.9999924, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.996078, 0.952941, 0.733333),})
  194. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.29999995, 1.29999995, 1.29999995),MeshType = Enum.MeshType.Sphere,})
  195. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = KonuHandaru,C1 = CFrame.new(0, -3.80003405, -1.90734863e-06, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  196. Part = New("Part",ISCREAM,"Part",{BrickColor = BrickColor.new("Carnation pink"),Material = Enum.Material.Marble,Size = Vector3.new(0.600000024, 0.600000024, 0.600000024),CFrame = CFrame.new(-47.8000031, 9.90004349, -63.9999924, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 0.596078, 0.862745),})
  197. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.29999995, 1.29999995, 1.29999995),MeshType = Enum.MeshType.Sphere,})
  198. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = KonuHandaru,C1 = CFrame.new(0, -3.20003319, -1.90734863e-06, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  199. Part = New("Part",ISCREAM,"Part",{BrickColor = BrickColor.new("Carnation pink"),Material = Enum.Material.Marble,Size = Vector3.new(0.600000024, 0.200000018, 0.600000024),CFrame = CFrame.new(-47.8000031, 9.70004654, -63.9999924, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 0.596078, 0.862745),})
  200. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.29999995, 1.29999995, 1.29999995),MeshType = Enum.MeshType.Sphere,})
  201. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = KonuHandaru,C1 = CFrame.new(0, -3.00003624, -1.90734863e-06, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  202. Part = New("Part",ISCREAM,"Part",{BrickColor = BrickColor.new("Brown"),Material = Enum.Material.Marble,Size = Vector3.new(0.600000024, 0.600000024, 0.600000024),CFrame = CFrame.new(-47.8000031, 10.3000431, -63.9999924, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.486275, 0.360784, 0.27451),})
  203. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.29999995, 1.29999995, 1.29999995),MeshType = Enum.MeshType.Sphere,})
  204. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = KonuHandaru,C1 = CFrame.new(0, -3.60003233, -1.90734863e-06, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  205. Part = New("Part",ISCREAM,"Part",{BrickColor = BrickColor.new("Buttermilk"),Material = Enum.Material.Marble,Size = Vector3.new(0.600000024, 0.600000024, 0.600000024),CFrame = CFrame.new(-47.8000031, 8.30001068, -63.9999924, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.996078, 0.952941, 0.733333),})
  206. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.29999995, 1.29999995, 1.29999995),MeshType = Enum.MeshType.Sphere,})
  207. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = KonuHandaru,C1 = CFrame.new(0, -1.59999967, -1.90734863e-06, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  208. Hitoboksu = New("Part",ISCREAM,"Hitoboksu",{FormFactor = Enum.FormFactor.Plate,Size = Vector3.new(0.600000024, 4.29999876, 0.600000024),CFrame = CFrame.new(-47.8000031, 9.4500103, -63.9999924, 1, 0, 0, 0, -1, 0, 0, 0, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,})
  209. Weld = New("ManualWeld",Hitoboksu,"Weld",{Part0 = Hitoboksu,Part1 = KonuHandaru,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -1, 0, 0, 0, -1),C1 = CFrame.new(0, -2.74999952, 0, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  210. Mesh = New("BlockMesh",Hitoboksu,"Mesh",{Scale = Vector3.new(0, 0, 0),})
  211. att2 = New("Attachment",Hitoboksu,"att2",{CFrame = CFrame.new(0, -2.0999999, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  212. att1 = New("Attachment",Hitoboksu,"att1",{CFrame = CFrame.new(0, 2.0999999, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  213. Part = New("Part",ISCREAM,"Part",{BrickColor = BrickColor.new("Carnation pink"),Material = Enum.Material.Marble,Size = Vector3.new(0.600000024, 0.600000024, 0.600000024),CFrame = CFrame.new(-47.8000031, 7.50000858, -63.9999924, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 0.596078, 0.862745),})
  214. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.29999995, 1.29999995, 1.29999995),MeshType = Enum.MeshType.Sphere,})
  215. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = KonuHandaru,C1 = CFrame.new(0, -0.799998045, -1.90734863e-06, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  216. Part = New("Part",ISCREAM,"Part",{BrickColor = BrickColor.new("Carnation pink"),Material = Enum.Material.Marble,Size = Vector3.new(0.600000024, 0.200000018, 0.600000024),CFrame = CFrame.new(-47.8000031, 7.30001068, -63.9999924, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 0.596078, 0.862745),})
  217. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.29999995, 1.29999995, 1.29999995),MeshType = Enum.MeshType.Sphere,})
  218. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = KonuHandaru,C1 = CFrame.new(0, -0.599999666, -1.90734863e-06, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  219. TUREIRU = New("Trail",Hitoboksu,"TUREIRU",{Enabled = false,LightEmission = 1,Attachment1 = att1,Attachment0 = att2})
  220. TUREIRU.Color = ColorSequence.new({
  221. ColorSequenceKeypoint.new(0,Color3.fromRGB(255, 253, 208)),
  222. ColorSequenceKeypoint.new(0.5,Color3.fromRGB(255, 192, 203)),
  223. ColorSequenceKeypoint.new(1,Color3.fromRGB(123, 63, 0)),
  224. })
  225. TUREIRU.Transparency = NumberSequence.new(0,1)
  226.  
  227. local wep = ISCREAM
  228. local handla = KonuHandaru
  229. local hito = Hitoboksu
  230. local tr1 = TUREIRU
  231.  
  232. function CreateSwirl(part)
  233. local pemit = Instance.new("ParticleEmitter",part)
  234. pemit.Name = "SUWARU"
  235. pemit.Texture = "rbxassetid://253188763"
  236. pemit.LightInfluence = 1
  237. pemit.Size = NumberSequence.new(0,2)
  238. pemit.Transparency = NumberSequence.new(0,1)
  239. pemit.ZOffset = .5
  240. pemit.Lifetime = NumberRange.new(1)
  241. pemit.Rate = 200
  242. pemit.Rotation = NumberRange.new(0,360)
  243. pemit.RotSpeed = NumberRange.new(-300,300)
  244. pemit.Speed = NumberRange.new(.2)
  245. pemit.SpreadAngle = Vector2.new(360,360)
  246. return pemit
  247. end
  248.  
  249. --This is just for builds--
  250. New = function(Object, Parent, Name, Data)
  251. local Object = Instance.new(Object)
  252. for Index, Value in pairs(Data or {}) do
  253. Object[Index] = Value
  254. end
  255. Object.Parent = Parent
  256. Object.Name = Name
  257. return Object
  258. end
  259. HandaruW = New("ManualWeld",handla,"HandaruW",{Part0 = handla,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),C1 = CFrame.new(-0.199996948, -1.10000002, -1.14440918e-05, -1, 0, 0, 0, 1, 0, 0, 0, -1),})
  260. ---------------------------
  261.  
  262. function rayCast(Position, Direction, Range, Ignore)
  263. return game:service("Workspace"):FindPartOnRay(Ray.new(Position, Direction.unit * (Range or 999.999)), Ignore)
  264. end
  265.  
  266. function FindNearestTorso(Position, Distance, SinglePlayer)
  267. if SinglePlayer then
  268. return (SinglePlayer.Head.CFrame.p - Position).magnitude < Distance
  269. end
  270. local List = {}
  271. for i, v in pairs(workspace:GetDescendants()) do
  272. if v:IsA("Model") then
  273. if v:findFirstChild("Head") then
  274. if v ~= chara then
  275. if (v.Head.Position - Position).magnitude <= Distance then
  276. table.insert(List, v)
  277. end
  278. end
  279. end
  280. end
  281. end
  282. return List
  283. end
  284.  
  285. EffectModel = Create("Model"){
  286. Parent = chara,
  287. Name = "Effects",
  288. }
  289.  
  290. --Effect Functions--
  291. Effects = {
  292.  
  293. Block = function(cf,partsize,meshstart,meshadd,matr,colour,spin,inverse,factor)
  294. local p = Instance.new("Part",EffectModel)
  295. p.BrickColor = BrickColor.new(colour)
  296. p.Size = partsize
  297. p.Anchored = true
  298. p.CanCollide = false
  299. p.Material = matr
  300. p.CFrame = cf
  301. if inverse == true then
  302. p.Transparency = 1
  303. else
  304. p.Transparency = 0
  305. end
  306. local m = Instance.new("BlockMesh",p)
  307. m.Scale = meshstart
  308. coroutine.wrap(function()
  309. for i=0,1,factor do
  310. swait()
  311. if inverse == true then
  312. p.Transparency = 1-i
  313. else
  314. p.Transparency = i
  315. end
  316. m.Scale = m.Scale + meshadd
  317. if spin == true then
  318. p.CFrame = p.CFrame * CFrame.Angles(math.random(-50,50),math.random(-50,50),math.random(-50,50))
  319. end
  320. end
  321. p:Destroy()
  322. end)()
  323. return p
  324. end,
  325.  
  326. Sphere = function(cf,partsize,meshstart,meshadd,matr,colour,inverse,factor)
  327. local p = Instance.new("Part",EffectModel)
  328. p.BrickColor = BrickColor.new(colour)
  329. p.Size = partsize
  330. p.Anchored = true
  331. p.CanCollide = false
  332. p.Material = matr
  333. p.CFrame = cf
  334. if inverse == true then
  335. p.Transparency = 1
  336. else
  337. p.Transparency = 0
  338. end
  339. local m = Instance.new("SpecialMesh",p)
  340. m.MeshType = "Sphere"
  341. m.Scale = meshstart
  342. coroutine.wrap(function()
  343. for i=0,1,factor do
  344. swait()
  345. if inverse == true then
  346. p.Transparency = 1-i
  347. else
  348. p.Transparency = i
  349. end
  350. m.Scale = m.Scale + meshadd
  351. end
  352. p:Destroy()
  353. end)()
  354. return p
  355. end,
  356.  
  357. Cylinder = function(cf,partsize,meshstart,meshadd,matr,colour,inverse,factor)
  358. local p = Instance.new("Part",EffectModel)
  359. p.BrickColor = BrickColor.new(colour)
  360. p.Size = partsize
  361. p.Anchored = true
  362. p.CanCollide = false
  363. p.Material = matr
  364. p.CFrame = cf
  365. if inverse == true then
  366. p.Transparency = 1
  367. else
  368. p.Transparency = 0
  369. end
  370. local m = Instance.new("CylinderMesh",p)
  371. m.Scale = meshstart
  372. coroutine.wrap(function()
  373. for i=0,1,factor do
  374. swait()
  375. if inverse == true then
  376. p.Transparency = 1-i
  377. else
  378. p.Transparency = i
  379. end
  380. m.Scale = m.Scale + meshadd
  381. end
  382. p:Destroy()
  383. end)()
  384. return p
  385. end,
  386.  
  387. Wave = function(cf,meshstart,meshadd,colour,spin,inverse,factor)
  388. local p = Instance.new("Part",EffectModel)
  389. p.BrickColor = BrickColor.new(colour)
  390. p.Size = Vector3.new()
  391. p.Anchored = true
  392. p.CanCollide = false
  393. p.CFrame = cf
  394. if inverse == true then
  395. p.Transparency = 1
  396. else
  397. p.Transparency = 0
  398. end
  399. local m = Instance.new("SpecialMesh",p)
  400. m.MeshId = "rbxassetid://20329976"
  401. m.Scale = meshstart
  402. coroutine.wrap(function()
  403. for i=0,1,factor do
  404. swait()
  405. if inverse == true then
  406. p.Transparency = 1-i
  407. else
  408. p.Transparency = i
  409. end
  410. m.Scale = m.Scale + meshadd
  411. p.CFrame = p.CFrame * CFrame.Angles(0,math.rad(spin),0)
  412. end
  413. p:Destroy()
  414. end)()
  415. return p
  416. end,
  417.  
  418. Ring = function(cf,meshstart,meshadd,colour,inverse,factor)
  419. local p = Instance.new("Part",EffectModel)
  420. p.BrickColor = BrickColor.new(colour)
  421. p.Size = Vector3.new()
  422. p.Anchored = true
  423. p.CanCollide = false
  424. p.CFrame = cf
  425. if inverse == true then
  426. p.Transparency = 1
  427. else
  428. p.Transparency = 0
  429. end
  430. local m = Instance.new("SpecialMesh",p)
  431. m.MeshId = "rbxassetid://3270017"
  432. m.Scale = meshstart
  433. coroutine.wrap(function()
  434. for i=0,1,factor do
  435. swait()
  436. if inverse == true then
  437. p.Transparency = 1-i
  438. else
  439. p.Transparency = i
  440. end
  441. m.Scale = m.Scale + meshadd
  442. end
  443. p:Destroy()
  444. end)()
  445. return p
  446. end,
  447.  
  448. Meshed = function(cf,meshstart,meshadd,colour,meshid,textid,spin,inverse,factor)
  449. local p = Instance.new("Part",EffectModel)
  450. p.BrickColor = BrickColor.new(colour)
  451. p.Size = Vector3.new()
  452. p.Anchored = true
  453. p.CanCollide = false
  454. p.CFrame = cf
  455. if inverse == true then
  456. p.Transparency = 1
  457. else
  458. p.Transparency = 0
  459. end
  460. local m = Instance.new("SpecialMesh",p)
  461. m.MeshId = meshid
  462. m.TextureId = textid
  463. m.Scale = meshstart
  464. coroutine.wrap(function()
  465. for i=0,1,factor do
  466. swait()
  467. if inverse == true then
  468. p.Transparency = 1-i
  469. else
  470. p.Transparency = i
  471. end
  472. m.Scale = m.Scale + meshadd
  473. p.CFrame = p.CFrame * CFrame.Angles(0,math.rad(spin),0)
  474. end
  475. p:Destroy()
  476. end)()
  477. return p
  478. end,
  479.  
  480. Explode = function(cf,partsize,meshstart,meshadd,matr,colour,move,inverse,factor)
  481. local p = Instance.new("Part",EffectModel)
  482. p.BrickColor = BrickColor.new(colour)
  483. p.Size = partsize
  484. p.Anchored = true
  485. p.CanCollide = false
  486. p.Material = matr
  487. p.CFrame = cf * CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360)))
  488. if inverse == true then
  489. p.Transparency = 1
  490. else
  491. p.Transparency = 0
  492. end
  493. local m = Instance.new("SpecialMesh",p)
  494. m.MeshType = "Sphere"
  495. m.Scale = meshstart
  496. coroutine.wrap(function()
  497. for i=0,1,factor do
  498. swait()
  499. if inverse == true then
  500. p.Transparency = 1-i
  501. else
  502. p.Transparency = i
  503. end
  504. m.Scale = m.Scale + meshadd
  505. p.CFrame = p.CFrame * CFrame.new(0,move,0)
  506. end
  507. p:Destroy()
  508. end)()
  509. return p
  510. end,
  511.  
  512. }
  513.  
  514. function chatfunc(text)
  515. coroutine.wrap(function()
  516. if chara:FindFirstChild("TalkingBillBoard")~= nil then
  517. chara:FindFirstChild("TalkingBillBoard"):destroy()
  518. end
  519. local naeeym2 = Instance.new("BillboardGui",chara)
  520. naeeym2.Size = UDim2.new(0,100,0,40)
  521. naeeym2.StudsOffset = Vector3.new(0,3,0)
  522. naeeym2.Adornee = chara.Head
  523. naeeym2.Name = "BLABLABLA"
  524. local tecks2 = Instance.new("TextLabel",naeeym2)
  525. tecks2.BackgroundTransparency = 1
  526. tecks2.BorderSizePixel = 0
  527. tecks2.Text = ""
  528. tecks2.Font = "Fantasy"
  529. tecks2.FontSize = "Size24"
  530. tecks2.TextStrokeTransparency = 0
  531. tecks2.TextColor3 = Color3.new(1,1,1)
  532. tecks2.TextStrokeColor3 = Color3.new(0,1,1)
  533. tecks2.Size = UDim2.new(1,0,0.5,0)
  534. for i = 1,string.len(text),1 do
  535. tecks2.Text = string.sub(text,1,i)
  536. swait()
  537. end
  538. swait(30)
  539. for i = 1, 5 do
  540. swait()
  541. tecks2.Position = tecks2.Position - UDim2.new(0,0,.05,0)
  542. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.2
  543. tecks2.TextTransparency = tecks2.TextTransparency + .2
  544. end
  545. naeeym2:Destroy()
  546. end)()
  547. end
  548.  
  549. function GetDudesTorso(c)
  550. local torsy = (c:findFirstChild("Torso") or c:findFirstChild("UpperTorso"))
  551. if torsy ~= nil then
  552. return torsy
  553. end
  554. end
  555.  
  556. function BodyVel(part,faws)
  557. local bodyvel = Instance.new("BodyVelocity",part)
  558. local pep = 10000000
  559. bodyvel.P = pep
  560. bodyvel.MaxForce = Vector3.new(pep,pep,pep)
  561. bodyvel.Velocity = faws
  562. debby:AddItem(bodyvel,.2)
  563. end
  564.  
  565. function Dmg(guy)
  566. coroutine.wrap(function()
  567. local hum = guy:FindFirstChildOfClass("Humanoid")
  568. if hum and guy:FindFirstChild("HITO")==nil then
  569. Instance.new("BoolValue",guy).Name = "HITO"
  570. local torsy = GetDudesTorso(guy)
  571. if torsy then
  572. so(32656713,torsy,1,2)
  573. end
  574. local par = {}
  575. for i,v in pairs(guy:GetDescendants()) do
  576. if v:IsA("BasePart") then
  577. table.insert(par,v)
  578. if v.Name ~= "HumanoidRootPart" then
  579. v.Anchored = true
  580. end
  581. CreateSwirl(v)
  582. end
  583. end
  584. swait(20)
  585. if torsy then
  586. so(203936153,torsy,1,2)
  587. end
  588. for i,v in pairs(guy:GetDescendants()) do
  589. if v.Name == "SUWARU" then
  590. v.Enabled = false
  591. end
  592. if v:IsA("Shirt") or v:IsA("Pants") or v:IsA("ShirtGraphic") or v:IsA("Decal") and v.Name ~= "face" then
  593. v:Destroy()
  594. end
  595. for i,v in pairs(par) do
  596. if v then
  597. if v:FindFirstChild("SpecialMesh") then
  598. v:FindFirstChild("SpecialMesh").TextureId = ""
  599. end
  600. if v:IsA("MeshPart") then
  601. v.TextureID = ""
  602. end
  603. v.BrickColor = BrickColor.new("Baby blue")
  604. v.Material = "Ice"
  605. end
  606. end
  607. end
  608. swait(40)
  609. if torsy then
  610. so(87015121,torsy,1,2)
  611. end
  612. guy:BreakJoints()
  613. for ba=1,6 do
  614. Effects.Explode(torsy.CFrame,Vector3.new(1,1,1),Vector3.new(6,6,6),Vector3.new(.05,.05,.05),"SmoothPlastic","White",.05,false,.025)--+Vector3.new(math.random(-10,10)/10,math.random(-10,10)/10,math.random(-10,10)/10)
  615. end
  616. for ab = 1,math.random(6,10) do
  617. local sa = math.random(5,9)/10
  618. local ice = Instance.new("Part",EffectModel)
  619. ice.CFrame = torsy.CFrame
  620. ice.BrickColor = BrickColor.new("Baby blue")
  621. ice.Material = "Ice"
  622. ice.Size = Vector3.new(sa,sa,sa)
  623. ice.Velocity = Vector3.new(math.random(-30,30),math.random(-30,30),math.random(-30,30))
  624. ice.RotVelocity = Vector3.new(math.random(-30,30),math.random(-30,30),math.random(-30,30))
  625. coroutine.wrap(function()
  626. swait(120)
  627. ice.Orientation = Vector3.new(0,ice.Orientation.y,0)
  628. for b = 0,1,.05 do
  629. swait()
  630. ice.Transparency = b
  631. ice.Size = ice.Size + Vector3.new(.05,-.05,.05)
  632. end
  633. ice:Destroy()
  634. end)()
  635. end
  636. for i,v in pairs(par) do
  637. v:Destroy()
  638. end
  639. end
  640. end)()
  641. end
  642.  
  643. function MagnitudeDmg(par,magni)
  644. for _, c in pairs(workspace:GetDescendants()) do
  645. local hum = c:FindFirstChildOfClass("Humanoid")
  646. if hum ~= nil and c:FindFirstChild("IsTeamMateOfCK")==nil then
  647. local head = GetDudesTorso(c)
  648. if head ~= nil then
  649. local targ = head.Position - par.Position
  650. local mag = targ.magnitude
  651. if magni >= mag and c ~= chara then
  652. Dmg(c)
  653. end
  654. end
  655. end
  656. end
  657. end
  658.  
  659. combo = 1
  660.  
  661. local mus = Instance.new("Sound",chara)
  662. mus.Name = "mus"
  663. mus.SoundId = "rbxassetid://189224548"
  664. mus.Looped = true
  665. mus.Volume = 1
  666. mus:Play()
  667.  
  668. coroutine.wrap(function()
  669. Humanoid.Name = "asldlasldlasdl"
  670. Humanoid.Health = math.huge
  671. Humanoid.MaxHealth = math.huge
  672. end)()
  673.  
  674. --Intro--
  675. Humanoid.WalkSpeed = 0
  676. for i,v in pairs(wep:children()) do
  677. if v~=handla then
  678. v.Transparency = 1
  679. end
  680. end
  681. swait(20)
  682. chatfunc("Revenge is a dish best served cold!")
  683. for i=0,1,.1 do
  684. swait()
  685. PlayAnimationFromTable({       
  686. CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  687. CFrame.new(0, 1.5255599, -0.222141743, 1, 0, 0, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736),
  688. CFrame.new(1.50094986, 0.999999046, 0.0500035286, 0, -1, 0, 1, 0, 0, 0, 0, 1),
  689. CFrame.new(-1.52556324, 0.222139359, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736, 0, 0, 0, 1),
  690. CFrame.new(0.500001132, -2, -2.38418579e-07, 0.984807849, 0, -0.173647985, 0, 1, 0, 0.173647985, 0, 0.984807849),
  691. CFrame.new(-0.500000715, -2, -8.34465027e-07, 0.939692736, 0, 0.342019886, 0, 1, 0, -0.342019916, 0, 0.939692736),
  692. }, .3, false)
  693. end
  694. local para = {}
  695. for i=-2,2,.2 do
  696. local ice = Instance.new("Part",EffectModel)
  697. ice.Size = Vector3.new(1,1,1)
  698. ice.CanCollide = false
  699. ice.BrickColor = BrickColor.new("Baby blue")
  700. ice.Material = "Ice"
  701. local icew = Instance.new("Weld",ice)
  702. icew.Part0 = hito
  703. icew.Part1 = ice
  704. icew.C0 = CFrame.new(0,-i,0)*CFrame.Angles(math.random(0,360),math.random(0,360),math.random(0,360))
  705. table.insert(para,ice)
  706. so(32656754,ice,1,1)
  707. swait()
  708. end
  709. swait(30)
  710. so(87015121,hito,1,1)
  711. for i,v in pairs(wep:children()) do
  712. v.Transparency = 0
  713. end
  714. for i,v in pairs(para) do
  715. v:BreakJoints()
  716. v.Anchored = true
  717. coroutine.wrap(function()
  718. for i=0,1,.05 do
  719. swait()
  720. v.CFrame = v.CFrame*CFrame.new(0,.5,0)
  721. v.Transparency = i
  722. end
  723. v:Destroy()
  724. end)()
  725. end
  726. swait(60)
  727. chatfunc([["Ice" to meet you today!]])
  728. Humanoid.WalkSpeed = 40
  729. --------------------------------------------------
  730.  
  731. function smek()
  732. attack = true
  733. for i=0,1,.2 do
  734. swait()
  735. PlayAnimationFromTable({       
  736. CFrame.new(-0.0116844922, 0, -0.381816059, 0.342019022, 0, 0.939693093, 0, 1, 0, -0.939693093, 0, 0.342018992),
  737. CFrame.new(-0.0728889629, 1.49999714, 0.038963601, 0.342019022, 0, -0.939693093, 0, 1, 0, 0.939693093, 0, 0.342018992),
  738. CFrame.new(1.06065702, 1.09677029, -0.161810428, 0.400286436, 0.242276207, 0.88378346, 0.734158754, -0.661962748, -0.151050553, 0.548435688, 0.709300876, -0.442843854),
  739. CFrame.new(-1.59605861, 0.10887894, 1.11486224e-06, 0.984807909, 0.173648059, -2.23517418e-06, -0.173648059, 0.984807849, 3.82394944e-07, 2.29477882e-06, 1.86264515e-08, 1),
  740. CFrame.new(0.685087919, -1.96527183, 0.0673596561, 0.92541647, -0.163175598, -0.342020869, 0.173647985, 0.984807849, 2.90093368e-07, 0.336824894, -0.0593915246, 0.939692438),
  741. CFrame.new(-0.499999702, -2.00000095, 8.68737698e-06, 0.766045451, 0, 0.642786503, 0, 1, 0, -0.642786503, 0, 0.766045511),
  742. }, .4, false)
  743. end
  744. Humanoid.WalkSpeed = 2
  745. tr1.Enabled = true
  746. so(32656754,hito,math.random(9,11)/10,1)
  747. for i=0,1,.2 do
  748. swait()
  749. PlayAnimationFromTable({       
  750. CFrame.new(0, 0, 0, 0.499998987, 0, -0.866025984, 0, 1, 0, 0.866025984, 0, 0.499998987),
  751. CFrame.new(0, 1.49999714, 0, 0.499998987, 0, 0.866025984, 0, 1, 0, -0.866025984, 0, 0.499998987),
  752. CFrame.new(1.6195364, 0.256343663, -3.60019794e-06, 0.939692736, -0.342020124, -8.94069672e-08, 0.342020154, 0.939692676, -4.35416268e-07, 2.08616257e-07, 3.87430191e-07, 1),
  753. CFrame.new(-1.65980804, 0.323206544, 5.72385352e-06, 0.866025329, 0.500000238, -2.98023224e-07, -0.500000179, 0.866025388, -1.34623383e-06, -4.47034836e-07, 1.29640102e-06, 1.00000012),
  754. CFrame.new(0.500001073, -2.00000095, -1.57952309e-06, 0.939692616, 0, -0.342020184, 0, 1, 0, 0.342020184, 0, 0.939692616),
  755. CFrame.new(-0.499998212, -2.00000095, 1.49011612e-06, 0.766043544, 0, 0.642788708, 0, 1, 0, -0.642788708, 0, 0.766043544),
  756. }, .4, false)
  757. MagnitudeDmg(hito,3)
  758. end
  759. swait(5)
  760. Humanoid.WalkSpeed = 40
  761. tr1.Enabled = false
  762. attack = false
  763. end
  764.  
  765. function asmek()
  766. attack = true
  767. Humanoid.WalkSpeed = 50
  768. RootPart.Velocity = Vector3.new(RootPart.Velocity.X,30,RootPart.Velocity.Z)
  769. tr1.Enabled = true
  770. so(32656754,hito,math.random(9,11)/10,1)
  771. for i = 0,1.5,.1 do
  772. swait()
  773. PlayAnimationFromTable({
  774. CFrame.new(-2.14576721e-06, -1.66893005e-06, 0, 0, 1, 0, -1, 0, 0, 0, 0, 1)*CFrame.Angles(0,math.rad(360)*-i,0),
  775. CFrame.new(0, 1.50000107, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  776. CFrame.new(1.4999969, 1.00000238, 0, 0, -1, 0, 1, 0, 0, 0, 0, 1),
  777. CFrame.new(-1.49999905, 1.00000238, 0, 0, 1, 0, -1, 0, 0, 0, 0, 1),
  778. CFrame.new(0.499999046, -1.99999499, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  779. CFrame.new(-0.500001907, -1.99999404, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  780. }, .3, false)
  781. MagnitudeDmg(hito,3)
  782. end
  783. Humanoid.WalkSpeed = 40
  784. tr1.Enabled = false
  785. attack = false
  786. end
  787.  
  788. function burasuto()
  789. attack = true
  790. Humanoid.WalkSpeed = 5
  791. for i=0,2,.1 do
  792. swait()
  793. PlayAnimationFromTable({
  794. CFrame.new(0.0358428955, 0, 0.0325927734, 0, 0, 1, 0, 1, 0, -1, 0, 0),
  795. CFrame.new(0.0325870365, 1.49998832, -0.0358416028, 0.0301539954, 0.171010062, -0.984807789, 0.171009988, 0.969846368, 0.173648238, 0.984807849, -0.173648134, 3.13053391e-07),
  796. CFrame.new(1.5, 0.899998665, 0, 0, -1, 0, 1, 0, 0, 0, 0, 1),
  797. CFrame.new(-1.50195909, 0.627066612, -0.676912427, 0.984807849, -0.17364797, 1.12223177e-07, -0.030152997, -0.171006978, -0.984808326, 0.171009988, 0.969846904, -0.17364502),
  798. CFrame.new(0.5, -1.8499999, 0.459799707, 1, 0, 0, 0, 0.866025388, 0.500000238, 0, -0.500000238, 0.866025388),
  799. CFrame.new(-0.5, -1.57705688, -0.280751318, 1, 0, 0, 0, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849),
  800. }, .4, false)
  801. Effects.Ring(RightArm.CFrame*CFrame.new(0,-1,0)* CFrame.Angles(math.rad(math.random(0,360)),math.rad(math.random(0,360)),math.rad(math.random(0,360))),Vector3.new(10,10,1),Vector3.new(-1,-1,0),"White",true,.1)
  802. Effects.Block(RightArm.CFrame*CFrame.new(0,-1,0),Vector3.new(2,2,2),Vector3.new(1,1,1),Vector3.new(-.1,-.1,-.1),"Ice","White",true,true,.1)
  803. end
  804. so(588736245,RightArm,.8,1)
  805. local dir = (RightArm.Position - Mouse.Hit.p).unit
  806. local blast = Instance.new("Part",EffectModel)
  807. blast.Name = "Burasuto"
  808. blast.BrickColor = BrickColor.new("Baby blue")
  809. blast.Size = Vector3.new(3,3,3)
  810. blast.Anchored = true
  811. blast.CanCollide = false
  812. blast.Material = "Neon"
  813. blast.Shape = "Ball"
  814. blast.CFrame = CFrame.new(RightArm.Position,RightArm.Position+dir)
  815. local pe = CreateSwirl(blast)
  816. pe.Size = NumberSequence.new(2,0)
  817. debby:AddItem(blast,10)
  818. coroutine.wrap(function()
  819. local par,pos
  820. local ta = 0
  821. repeat
  822. swait()
  823. par,pos = rayCast(blast.Position,blast.CFrame.lookVector*2,5,chara)
  824. if par ~= nil then
  825. blast.CFrame = CFrame.new(pos)
  826. else
  827. blast.CFrame = blast.CFrame * CFrame.new(0,0,4)
  828. end
  829. until par ~= nil
  830. for b=1,2 do
  831. Effects.Block(blast.CFrame,Vector3.new(1,1,1),Vector3.new(),Vector3.new(1,1,1),"Ice","White",true,false,.1)
  832. end
  833. so(747238556,blast,1,1)
  834. MagnitudeDmg(blast,5)
  835. blast.Transparency = 1
  836. debby:AddItem(blast,3)
  837. end)()
  838. Effects.Wave(RightArm.CFrame*CFrame.new(0,-1,0),Vector3.new(0,0,0),Vector3.new(.2,0,.2),"White",10,false,.05)
  839. Effects.Wave(RightArm.CFrame*CFrame.new(0,-1,0),Vector3.new(0,0,0),Vector3.new(1,0,1),"Baby blue",-10,false,.05)
  840. BodyVel(Torso,RootPart.CFrame.lookVector*-5)
  841. swait(20)
  842. Humanoid.WalkSpeed = 40
  843. attack = false
  844. end
  845.  
  846. function freeze()
  847. attack = true
  848. Humanoid.WalkSpeed = 4
  849. chatfunc("That's it!")
  850. coroutine.wrap(function()
  851. for a=0,1,.1 do
  852. swait()
  853. for i,v in pairs(wep:children()) do
  854. v.Transparency = i
  855. end
  856. end
  857. end)()
  858. for i = 0,1,.1 do
  859. swait()
  860. PlayAnimationFromTable({
  861. CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  862. CFrame.new(0, 1.5255599, -0.222141743, 1, 0, 0, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736),
  863. CFrame.new(1.50094986, 0.999999046, 0.0500035286, 0, -1, 0, 1, 0, 0, 0, 0, 1),
  864. CFrame.new(-1.52556324, 0.222139359, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736, 0, 0, 0, 1),
  865. CFrame.new(0.500001132, -2, -2.38418579e-07, 0.984807849, 0, -0.173647985, 0, 1, 0, 0.173647985, 0, 0.984807849),
  866. CFrame.new(-0.500000715, -2, -8.34465027e-07, 0.939692736, 0, 0.342019886, 0, 1, 0, -0.342019916, 0, 0.939692736),
  867. }, .3, false)
  868. end
  869. for i = 0,4,.05 do
  870. swait()
  871. PlayAnimationFromTable({
  872. CFrame.new(0, 0.0349424481, 0.334686339, 1, 0, 0, 0, 0.939692736, -0.342019886, 0, 0.342019916, 0.939692736),
  873. CFrame.new(0, 1.43158746, 0.18793866, 1, 0, 0, 0, 0.939692438, -0.342020929, 0, 0.342020959, 0.939692438),
  874. CFrame.new(1.5, 0.499999046, 0.599990845, 0, -1, 0, 0, 0, -1, 1, 0, 0),
  875. CFrame.new(-1.5, 0.499999046, 0.599990845, 0, 1, 0, 0, 0, -1, -1, 0, 0),
  876. CFrame.new(0.50000006, -2.02669048, 0.381489158, 0.939692736, 0, -0.342019886, 0.116977625, 0.939692736, 0.321393639, 0.321393639, -0.342019886, 0.883022428),
  877. CFrame.new(-0.500001907, -2.02669072, 0.381488144, 0.866025388, 0, 0.500000238, -0.171010032, 0.939692736, 0.296197921, -0.469846606, -0.342019886, 0.813797772),
  878. }, .3, false)
  879. Effects.Block(RightArm.CFrame*CFrame.new(0,-1,0),Vector3.new(2,2,2),Vector3.new(1,1,1),Vector3.new(-.05,-.05,-.05),"Ice","White",true,true,.05)
  880. Effects.Block(LeftArm.CFrame*CFrame.new(0,-1,0),Vector3.new(2,2,2),Vector3.new(1,1,1),Vector3.new(-.05,-.05,-.05),"Ice","White",true,true,.05)
  881. end
  882. swait(20)
  883. for i = 0,1,.1 do
  884. swait()
  885. PlayAnimationFromTable({
  886. CFrame.new(0, -0.433955967, -0.642794847, 1, 0, 0, 0, 0.76604414, 0.642788053, 0, -0.642788053, 0.76604414),
  887. CFrame.new(0, 1.50857329, 0.277411759, 1, 0, 0, 0, 0.76604414, -0.642788053, 0, 0.642788053, 0.76604414),
  888. CFrame.new(1.00000763, 1.37034774, -0.491282165, 0, 0, 1, 0.76604414, -0.642788053, 0, 0.642788053, 0.76604414, 0),
  889. CFrame.new(-1.00000763, 1.37034774, -0.491282165, 0, 0, -1, -0.76604414, -0.642788053, 0, -0.642788053, 0.76604414, 0),
  890. CFrame.new(0.5, -1.09861195, -1.12705588, 1, 0, 0, 0, 0.76604414, -0.642788053, 0, 0.642788053, 0.76604414),
  891. CFrame.new(-0.5, -2.00000405, 5.72204681e-06, 1, 0, 0, 0, 1.00000012, 0, 0, 0, 1.00000012),
  892. }, .3, false)
  893. end
  894. local pemit1 = CreateSwirl(RightArm)
  895. pemit1.SpreadAngle = Vector2.new(20,20)
  896. pemit1.EmissionDirection = "Bottom"
  897. pemit1.Lifetime = NumberRange.new(.7)
  898. pemit1.Speed = NumberRange.new(20)
  899. pemit1.Size = NumberSequence.new(0,5)
  900. local pemit2 = pemit1:Clone()
  901. pemit2.Parent = LeftArm
  902. local pa = Instance.new("Part",chara)
  903. pa.Size = Vector3.new(0,0,0)
  904. pa.CanCollide = false
  905. pa.Anchored = true
  906. pa.Transparency = 1
  907. so(87014838,Torso,1,1)
  908. chatfunc("Freeze... to... death...")
  909. for i=1,200 do
  910. pa.CFrame = RootPart.CFrame * CFrame.new(0,0,-7)
  911. MagnitudeDmg(pa,8)
  912. swait()
  913. end
  914. pemit1.Enabled = false
  915. pemit2.Enabled = false
  916. pa:Destroy()
  917. debby:AddItem(pemit1,4)
  918. debby:AddItem(pemit2,4)
  919. swait(30)
  920. coroutine.wrap(function()
  921. for a=0,1,.1 do
  922. swait()
  923. for i,v in pairs(wep:children()) do
  924. v.Transparency = 1-i
  925. end
  926. end
  927. for i,v in pairs(wep:children()) do
  928. v.Transparency = 0
  929. end
  930. end)()
  931. Humanoid.WalkSpeed = 40
  932. tr1.Enabled = false
  933. attack = false
  934. end
  935.  
  936. function areafreeze()
  937. attack = true
  938. Humanoid.WalkSpeed = 0
  939. chatfunc("The winter is coming..")
  940. coroutine.wrap(function()
  941. for a=0,1,.1 do
  942. swait()
  943. for i,v in pairs(wep:children()) do
  944. v.Transparency = i
  945. end
  946. end
  947. end)()
  948. for i = 0,1,.1 do
  949. swait()
  950. PlayAnimationFromTable({
  951. CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  952. CFrame.new(0, 1.5255599, -0.222141743, 1, 0, 0, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736),
  953. CFrame.new(1.50094986, 0.999999046, 0.0500035286, 0, -1, 0, 1, 0, 0, 0, 0, 1),
  954. CFrame.new(-1.52556324, 0.222139359, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736, 0, 0, 0, 1),
  955. CFrame.new(0.500001132, -2, -2.38418579e-07, 0.984807849, 0, -0.173647985, 0, 1, 0, 0.173647985, 0, 0.984807849),
  956. CFrame.new(-0.500000715, -2, -8.34465027e-07, 0.939692736, 0, 0.342019886, 0, 1, 0, -0.342019916, 0, 0.939692736),
  957. }, .3, false)
  958. end
  959. for i = 0,4,.05 do
  960. swait()
  961. PlayAnimationFromTable({
  962. CFrame.new(),
  963. CFrame.new(0, 1.46578932, -0.0939713717, 1, 0, 0, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736),
  964. CFrame.new(0.748245835, 0.499998569, -0.773616076, 0.342019022, 0.939693093, 0, 0, 0, -1, -0.939693093, 0.342018992, 0),
  965. CFrame.new(-0.748251557, 0.499999017, -0.773617327, 0.342020124, -0.939692616, 4.10752676e-08, 0, -4.37113883e-08, -1, 0.939692616, 0.342020124, -1.49501744e-08),
  966. CFrame.new(0.499996185, -1.28161228, -0.232838884, 1, 0, 0, 0, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849),
  967. CFrame.new(-0.5, -1.99999928, 0.299997658, 1, 0, 0, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736),
  968. }, .3, false)
  969. Effects.Wave(Torso.CFrame*CFrame.new(0,-2,0),Vector3.new(10,0,10),Vector3.new(-.5,.05,-.5),"White",math.random(-10,10),true,.05)
  970. Effects.Meshed(RootPart.CFrame*CFrame.new(math.random(-10,10),math.random(-1,5),math.random(-10,10))*CFrame.Angles(math.rad(math.random(0,360)),math.rad(math.random(0,360)),math.rad(math.random(0,360))),Vector3.new(2,2,2),Vector3.new(),"White","rbxassetid://187687161","",math.random(-2,2),false,.05)
  971. end
  972. swait(20)
  973. chatfunc("COMETH, BLIZZARD O' DEATH!")
  974. for i = 0,2,.1 do
  975. swait()
  976. PlayAnimationFromTable({
  977. CFrame.new(0, 0.0349424481, 0.334686339, 1, 0, 0, 0, 0.939692736, -0.342019886, 0, 0.342019916, 0.939692736),
  978. CFrame.new(0, 1.43158746, 0.18793866, 1, 0, 0, 0, 0.939692438, -0.342020929, 0, 0.342020959, 0.939692438),
  979. CFrame.new(1.5, 0.499999046, 0.599990845, 0, -1, 0, 0, 0, -1, 1, 0, 0),
  980. CFrame.new(-1.5, 0.499999046, 0.599990845, 0, 1, 0, 0, 0, -1, -1, 0, 0),
  981. CFrame.new(0.50000006, -2.02669048, 0.381489158, 0.939692736, 0, -0.342019886, 0.116977625, 0.939692736, 0.321393639, 0.321393639, -0.342019886, 0.883022428),
  982. CFrame.new(-0.500001907, -2.02669072, 0.381488144, 0.866025388, 0, 0.500000238, -0.171010032, 0.939692736, 0.296197921, -0.469846606, -0.342019886, 0.813797772),
  983. }, .3, false)
  984. end
  985. so(632669170,Torso,1,1)
  986. MagnitudeDmg(RootPart,20)
  987. for i=1,2 do
  988. Effects.Block(Torso.CFrame,Vector3.new(1,1,1),Vector3.new(1,1,1),Vector3.new(3,3,3),"Ice","White",true,false,.05)
  989. Effects.Ring(Torso.CFrame*CFrame.Angles(math.rad(math.random(0,360)),math.rad(math.random(0,360)),math.rad(math.random(0,360))),Vector3.new(1,1,.5),Vector3.new(5,5,0),"White",false,.05)
  990. end
  991. Effects.Wave(Torso.CFrame*CFrame.new(0,-2,0),Vector3.new(0,1,0),Vector3.new(5,0,5),"White",10,false,.05)
  992. swait(30)
  993. coroutine.wrap(function()
  994. for a=0,1,.1 do
  995. swait()
  996. for i,v in pairs(wep:children()) do
  997. v.Transparency = 1-i
  998. end
  999. end
  1000. for i,v in pairs(wep:children()) do
  1001. v.Transparency = 0
  1002. end
  1003. end)()
  1004. Humanoid.WalkSpeed = 40
  1005. tr1.Enabled = false
  1006. attack = false
  1007. end
  1008.  
  1009. Mouse.Button1Down:connect(function()
  1010. if attack == false then
  1011. if Anim == "Jump" or Anim == "Fall" then
  1012. asmek()
  1013. else
  1014. smek()
  1015. end
  1016. end
  1017. end)
  1018.  
  1019. local sprintt = 0
  1020. Mouse.KeyDown:connect(function(k)
  1021. k = k:lower()
  1022. if k=='m' then
  1023. if mus.IsPlaying == true then
  1024. mus:Stop()
  1025. elseif mus.IsPaused == true then
  1026. mus:Play()
  1027. end
  1028. end
  1029. if attack == false then
  1030. if k == 'z' then
  1031. burasuto()
  1032. elseif k == 'x' then
  1033. freeze()
  1034. elseif k == 'c' then
  1035. areafreeze()
  1036. end
  1037. end
  1038. end)
  1039.  
  1040. --Mouse.KeyUp:connect(function(k)
  1041. --k = k:lower()
  1042. --if k == 'e' then
  1043. --ehold = false
  1044. --elseif k == 'z' then
  1045. --zhold = false
  1046. --elseif k == 'v' then
  1047. --vhold = false
  1048. --elseif k == 'g' then
  1049. --ghold = false
  1050. --end
  1051. --end)
  1052.  
  1053. coroutine.wrap(function()
  1054. while 1 do
  1055. swait()
  1056. if doe <= 360 then
  1057. doe = doe + 2
  1058. else
  1059. doe = 0
  1060. end
  1061. end
  1062. end)()
  1063. while true do
  1064. swait()
  1065. while true do
  1066. swait()
  1067. if chara:FindFirstChild("mus")==nil then
  1068. mus = Instance.new("Sound",chara)
  1069. mus.Name = "mus"
  1070. mus.SoundId = "rbxassetid://189224548"
  1071. mus.Looped = true
  1072. mus.Volume = 1
  1073. mus:Play()
  1074. end
  1075. if sprintt >= 1 then
  1076. sprintt = sprintt - 1
  1077. end
  1078. Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  1079. velocity = RootPart.Velocity.y
  1080. sine = sine + change
  1081. local hit, pos = rayCast(RootPart.Position, (CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0))).lookVector, 4, chara)
  1082. if RootPart.Velocity.y > 1 and hit == nil then
  1083. Anim = "Jump"
  1084. if attack == false then
  1085. PlayAnimationFromTable({
  1086. CFrame.new(0, 0.0382082276, -0.0403150208, 1, 0, 0, 0, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849),
  1087. CFrame.new(0, 1.46579528, 0.0939689279, 1, 0, 0, 0, 0.939692855, -0.342019796, 0, 0.342019796, 0.939692855),
  1088. CFrame.new(1.20945489, -0.213504896, 3.55388607e-07, 0.939692736, 0.342019916, 1.53461215e-07, -0.342019945, 0.939692736, 1.93715096e-07, -8.56816769e-08, -2.23517418e-07, 1.00000012),
  1089. CFrame.new(-1.20945573, -0.213503733, 5.0439985e-07, 0.939692736, -0.342019916, -1.53461215e-07, 0.342019945, 0.939692736, 1.93715096e-07, 8.56816769e-08, -2.23517418e-07, 1.00000012),
  1090. CFrame.new(0.5, -1.99739456, -0.0180913229, 1, 0, 0, 0, 1.00000012, 0, 0, 0, 1.00000012),
  1091. CFrame.new(-0.5, -1.30000103, -0.39999947, 1, 0, 0, 0, 0.939692676, 0.342020601, 0, -0.342020601, 0.939692676),
  1092. }, .3, false)
  1093. end
  1094. elseif RootPart.Velocity.y < -1 and hit == nil then
  1095. Anim = "Fall"
  1096. if attack == false then
  1097. PlayAnimationFromTable({
  1098. CFrame.new(0, -0.0646628663, 0.0399149321, 1, 0, 0, 0, 0.984807849, -0.173647985, 0, 0.173647985, 0.984807849),
  1099. CFrame.new(0, 1.4913609, -0.128171027, 1, 0, 0, 0, 0.939692855, 0.342019796, 0, -0.342019796, 0.939692855),
  1100. CFrame.new(1.55285025, 0.466259956, -9.26282269e-08, 0.766043842, -0.642788351, -6.46188241e-08, 0.642788291, 0.766043961, -7.4505806e-08, 1.04308128e-07, 1.49011612e-08, 1.00000012),
  1101. CFrame.new(-1.5605253, 0.475036323, -2.10609159e-07, 0.766043842, 0.642788351, 6.46188241e-08, -0.642788291, 0.766043961, -7.4505806e-08, -1.04308128e-07, 1.49011612e-08, 1.00000012),
  1102. CFrame.new(0.500000954, -1.9973948, -0.0180922765, 1, 0, 0, 0, 1.00000012, 0, 0, 0, 1.00000012),
  1103. CFrame.new(-0.499999046, -1.30000043, -0.400000483, 1, 0, 0, 0, 0.939692855, 0.342019796, 0, -0.342019796, 0.939692855),
  1104. }, .3, false)
  1105. end
  1106. elseif Torsovelocity < 1 and hit ~= nil then
  1107. Anim = "Idle"
  1108. if attack == false then
  1109. change = 1
  1110. PlayAnimationFromTable({
  1111. CFrame.new(0, 0, 0, 0.939692736, 0, 0.342019886, 0, 1, 0, -0.342019916, 0, 0.939692736) * CFrame.new(0,.05 * math.cos((sine)/10), 0),
  1112. CFrame.new(-1.22189522e-06, 1.49999833, -3.15904617e-06, 0.925416768, -0.101305634, -0.365159065, 0.173647985, 0.969846427, 0.171009958, 0.336823881, -0.221664593, 0.915103614),
  1113. CFrame.new(1.4999994, 0, 7.15255737e-07, 0.984807849, 0, -0.173648164, 0, 1, 0, 0.173648134, 0, 0.984807849),
  1114. CFrame.new(-1.3973906, -0.196961865, -0.0180919915, 0.969846308, -0.171010002, 0.173648715, 0.173648089, 0.984807789, 2.70171853e-07, -0.171010703, 0.0301535055, 0.98480773),
  1115. CFrame.new(0.499998569, -1.99999797, -5.96046448e-07, 0.939692736, 0, -0.342019916, 0, 1, 0, 0.342019886, 0, 0.939692736) * CFrame.new(0,-.05 * math.cos((sine)/10), 0),
  1116. CFrame.new(-0.499999195, -1.99999797, 1.17719173e-06, 0.939692438, 0, 0.342020929, 0, 1, 0, -0.342020959, 0, 0.939692438) * CFrame.new(0,-.05 * math.cos((sine)/10), 0),
  1117. }, .3, false)
  1118. end
  1119. elseif Torsovelocity > 2 and hit ~= nil then
  1120. Anim = "Walk"
  1121. if attack == false then
  1122. Humanoid.WalkSpeed = 40
  1123. Humanoid.JumpPower = 70
  1124. PlayAnimationFromTable({
  1125. CFrame.new(-2.4138464e-07, 0.123327732, -0.188363045, 1, -4.38293796e-07, 1.20420327e-06, 0, 0.939692736, 0.342019886, -1.28148622e-06, -0.342019916, 0.939692736) * CFrame.new(0, 0- .08 * math.cos((sine/2.5)), 0),
  1126. CFrame.new(0, 1.41422474, 0.0894482136, 1, 0, 0, 0, 0.939692736, -0.342019916, 0, 0.342019886, 0.939692736),
  1127. CFrame.new(1.39999986, 4.76837158e-07, 0.173205554, 0.866025388, 0, -0.500000238, 0, 1, 0, 0.500000238, 0, 0.866025388),
  1128. CFrame.new(-1.53598976, 0.0413191095, -1.86092848e-06, 0.995650649, 0.0931596532, -2.61508148e-07, -0.0931649953, 0.995651186, -1.00695124e-05, -7.49969331e-07, 1.08217946e-05, 1.00000024) * CFrame.new(0, 0, .6 * math.cos((sine) / 2.5)) * CFrame.Angles(math.rad(0 - 60 * math.cos((sine) / 2.5)), 0, 0),
  1129. CFrame.new(0.540300786, -1.99793816, -9.82598067e-07, 0.998698533, -0.0510031395, 6.36324955e-07, 0.0510031395, 0.998698533, -1.00461093e-05, -8.35937328e-08, 1.08393433e-05, 1.00000024) * CFrame.new(0, 0, 0+ 1 * math.cos((sine) / 2.5)) * CFrame.Angles(math.rad(0 - 60 * math.cos((sine) / 2.5)), 0, 0),
  1130. CFrame.new(-0.539563596, -1.99794078, 1.12228372e-06, 0.998635888, 0.0523072146, -1.77852357e-07, -0.0523072146, 0.998635888, -1.00715051e-05, -3.89727461e-07, 1.08406466e-05, 1.00000024) * CFrame.new(0, 0, 0- 1 * math.cos((sine) / 2.5)) * CFrame.Angles(math.rad(0 + 60 * math.cos((sine) / 2.5)), 0, 0),
  1131. }, .3, false)
  1132. end
  1133. end
  1134. end
  1135. end
Add Comment
Please, Sign In to add comment