Advertisement
Skye_Blue

Untitled

Aug 25th, 2017
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 52.85 KB | None | 0 0
  1. ---Edited by nobody1997
  2. local p = game.Players.LocalPlayer
  3. local char = p.Character
  4. local mouse = p:GetMouse()
  5. local larm = char["Left Arm"]
  6. local rarm = char["Right Arm"]
  7. local lleg = char["Left Leg"]
  8. local rleg = char["Right Leg"]
  9. local hed = char.Head
  10. local torso = char.Torso
  11. local ASD = BrickColor.new("Really black")
  12. local hum = char.Humanoid
  13. local cam = game.Workspace.CurrentCamera
  14. local root = char.HumanoidRootPart
  15. local DD = false
  16. local FA = false
  17. local deb = false
  18. local shot = 0
  19. local l = game:GetService("Lighting")
  20. local rs = game:GetService("RunService").RenderStepped
  21. local stanceToggle = "Normal"
  22. math.randomseed(os.time())
  23. hum.WalkSpeed = 28
  24. char.Health:Destroy()
  25. hum.MaxHealth = math.huge + 9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
  26. wait(0.1)
  27. hum.Health = math.huge + 9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
  28. z = Instance.new("Sound", char.Torso)
  29. z.SoundId = "rbxassetid://174039148"
  30. z.Looped = true
  31. z.Pitch = 1
  32. z.Volume = 1
  33. ----------------------------------------------------
  34. local SM = Instance.new("Smoke",torso)
  35. SM.Size = 15
  36. local S = Instance.new("Part",char)
  37. S.Size = Vector3.new(1,1,1)
  38. S.Material = "Neon"
  39. S.BrickColor = BrickColor.new("Really black")
  40. S.Transparency = 0
  41. S.Anchored = true
  42. S.CFrame = torso.CFrame*CFrame.new(0,0,0)
  43. local Ring = Instance.new("Part",S)
  44. Ring.Size = Vector3.new(1,1,1)
  45. Ring.BrickColor = BrickColor.new("Really black")
  46. Ring.Anchored = true
  47. Ring.CanCollide = false
  48. Ring.CFrame = S.CFrame*CFrame.new(0,0,0)*CFrame.Angles(1.55,0,0)
  49. local Ring2 = Instance.new("SpecialMesh",Ring)
  50. Ring2.MeshId = "rbxassetid://3270017"
  51. Ring2.Scale = Vector3.new(0.1,0.1,0.1)
  52. local S2 = Instance.new("SpecialMesh",S)
  53. S2.MeshType = "Sphere"
  54. S2.Scale = Vector3.new(1,1,1)
  55. v = Instance.new("Sound")
  56. v.SoundId = "rbxassetid://821439273"
  57. v.Parent = char.Torso
  58. v.Looped = false
  59. v.Pitch = 1
  60. v.Volume = 1
  61. wait(.01)
  62. v:Play()
  63. local partasdeff = Instance.new("ParticleEmitter",S)
  64. partasdeff.Color = ColorSequence.new(Color3.new(0,0,0), Color3.new(204,130,2))
  65. partasdeff.LightEmission = .1
  66. partasdeff.Size = NumberSequence.new(0.2)
  67. partasdeff.Texture = "http://www.roblox.com/asset/?ID=300899516"
  68. aaa = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.2),NumberSequenceKeypoint.new(1, 5)})
  69. bbb = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.0636, 0), NumberSequenceKeypoint.new(1, 1)})
  70. partasdeff.Transparency = bbb
  71. partasdeff.Size = aaa
  72. partasdeff.ZOffset = .9
  73. partasdeff.Acceleration = Vector3.new(0, -5, 0)
  74. partasdeff.LockedToPart = false
  75. partasdeff.EmissionDirection = "Top"
  76. partasdeff.Lifetime = NumberRange.new(1, 2)
  77. partasdeff.Rate = 1000
  78. partasdeff.Rotation = NumberRange.new(-100, 100)
  79. partasdeff.RotSpeed = NumberRange.new(-100, 100)
  80. partasdeff.Speed = NumberRange.new(10)
  81. partasdeff.VelocitySpread = 300
  82. partasdeff.Enabled = true
  83. for i = 1,100 do
  84. Ring2.Scale = Ring2.Scale + Vector3.new(2,2,2)
  85. Ring.Transparency = Ring.Transparency + 0.01
  86. S2.Scale = S2.Scale + Vector3.new(0.3,0.3,0.3)
  87. S.Transparency = S.Transparency + 0.01
  88. game:GetService("RunService").RenderStepped:wait()
  89. end
  90. S:remove()
  91. wait(1)
  92. SM:remove()
  93. hed.face:remove()
  94. char.Shirt:remove()
  95. char.Pants:remove()
  96. v = Instance.new("Sound")
  97. v.SoundId = "rbxassetid://181384451"
  98. v.Parent = torso
  99. v.Looped = false
  100. v.Pitch = 0.8
  101. v.Volume = 1
  102. wait(.01)
  103. v:Play()
  104. z:Play()
  105. ----------------------------------------------------
  106. Debounces = {
  107. on = false;
  108. ks = false;
  109. CanAttack = true;
  110. CanJoke = true;
  111. NoIdl = false;
  112. Slashing = false;
  113. Slashed = false;
  114. Grabbing = false;
  115. Grabbed = false;
  116. }
  117. local Touche = {char.Name, }
  118. ----------------------------------------------------
  119. function lerp(a, b, t) -- Linear interpolation
  120. return a + (b - a)*t
  121. end
  122.  
  123. function slerp(a, b, t) --Spherical interpolation
  124. dot = a:Dot(b)
  125. if dot > 0.99999 or dot < -0.99999 then
  126. return t <= 0.5 and a or b
  127. else
  128. r = math.acos(dot)
  129. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  130. end
  131. end
  132.  
  133. function matrixInterpolate(a, b, t)
  134. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  135. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  136. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  137. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  138. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  139. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  140. local t = v1:Dot(v2)
  141. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  142. return CFrame.new()
  143. end
  144. return CFrame.new(
  145. v0.x, v0.y, v0.z,
  146. v1.x, v1.y, v1.z,
  147. v2.x, v2.y, v2.z,
  148. v3.x, v3.y, v3.z)
  149. end
  150. ----------------------------------------------------
  151. function genWeld(a,b)
  152. local w = Instance.new("Weld",a)
  153. w.Part0 = a
  154. w.Part1 = b
  155. return w
  156. end
  157. function weld(a, b)
  158. local weld = Instance.new("Weld")
  159. weld.Name = "W"
  160. weld.Part0 = a
  161. weld.Part1 = b
  162. weld.C0 = a.CFrame:inverse() * b.CFrame
  163. weld.Parent = a
  164. return weld;
  165. end
  166. ----------------------------------------------------
  167. function Lerp(c1,c2,al)
  168. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  169. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  170. for i,v in pairs(com1) do
  171. com1[i] = v+(com2[i]-v)*al
  172. end
  173. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  174. end
  175. ----------------------------------------------------
  176. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  177. local wld = Instance.new("Weld", wp1)
  178. wld.Part0 = wp0
  179. wld.Part1 = wp1
  180. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  181. end
  182. ----------------------------------------------------
  183. for i,v in pairs(char:children()) do
  184. if v:IsA("Hat") then
  185. v:Destroy()
  186. end
  187. end
  188. for i,v in pairs(hed:children()) do
  189. if v:IsA("Sound") then
  190. v:Destroy()
  191. end
  192. end
  193. ----------------------------------------------------
  194. function HasntTouched(plrname)
  195. local ret = true
  196. for _, v in pairs(Touche) do
  197. if v == plrname then
  198. ret = false
  199. end
  200. end
  201. return ret
  202. end
  203. ----------------------------------------------------
  204. larm.Size = larm.Size * 5
  205. rarm.Size = rarm.Size * 5
  206. lleg.Size = lleg.Size * 5
  207. rleg.Size = rleg.Size * 5
  208. torso.Size = torso.Size * 5
  209. hed.Size = hed.Size * 5
  210. root.Size = root.Size * 5
  211. ----------------------------------------------------
  212. newWeld(torso, larm, -1.5, 0.5, 0)
  213. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  214. newWeld(torso, rarm, 1.5, 0.5, 0)
  215. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  216. newWeld(torso, hed, 0, 1.5, 0)
  217. newWeld(torso, lleg, -0.5, -1, 0)
  218. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  219. newWeld(torso, rleg, 0.5, -1, 0)
  220. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  221. newWeld(root, torso, 0, -1, 0)
  222. torso.Weld.C1 = CFrame.new(0, -1, 0)
  223. ----------------------------------------------------
  224. local Part = Instance.new("Part",hed)
  225. Part.BrickColor = BrickColor.new("Really black")
  226. Part.Size = Vector3.new(1,1,1)
  227. Part.CanCollide = false
  228. Part.Material = "Neon"
  229. local M = Instance.new("SpecialMesh",Part)
  230. M.MeshId = "rbxassetid://227430350"
  231. M.Scale = Vector3.new(10,10,10)
  232. local Part2 = Instance.new("Weld",Part)
  233. Part2.Part0 = hed
  234. Part2.Part1 = Part
  235. Part2.C0 = CFrame.new(0, 5, -1)
  236. ----------------------------------------------------
  237. -----Armored titan parts nibs
  238. local Arm = Instance.new("Part",char)
  239. Arm.Size = Vector3.new(1,1,1)
  240. Arm.BrickColor = BrickColor.new("Cocoa")
  241. Arm.TopSurface = 0
  242. Arm.BottomSurface = 0
  243. Arm.CanCollide = false
  244. local Arm2 = Instance.new("SpecialMesh",Arm)
  245. Arm2.MeshType = "Brick"
  246. Arm2.Scale = Vector3.new(5,8.5,0.3)
  247. local Arm3 = Instance.new("Weld",Arm)
  248. Arm3.Part0 = rarm
  249. Arm3.Part1 = Arm
  250. Arm3.C0 = CFrame.new(0,0,2.5)
  251. local ArmR = Instance.new("Part",char)
  252. ArmR.Size = Vector3.new(1,1,1)
  253. ArmR.BrickColor = BrickColor.new("Cocoa")
  254. ArmR.TopSurface = 0
  255. ArmR.BottomSurface = 0
  256. ArmR.CanCollide = false
  257. local Arm2R = Instance.new("SpecialMesh",ArmR)
  258. Arm2R.MeshType = "Brick"
  259. Arm2R.Scale = Vector3.new(5,8.5,0.3)
  260. local Arm3R = Instance.new("Weld",ArmR)
  261. Arm3R.Part0 = rarm
  262. Arm3R.Part1 = ArmR
  263. Arm3R.C0 = CFrame.new(0,0,-2.5)
  264. local ArmRS = Instance.new("Part",char)
  265. ArmRS.Size = Vector3.new(1,1,1)
  266. ArmRS.BrickColor = BrickColor.new("Cocoa")
  267. ArmRS.TopSurface = 0
  268. ArmRS.BottomSurface = 0
  269. ArmRS.CanCollide = false
  270. local Arm2RS = Instance.new("SpecialMesh",ArmRS)
  271. Arm2RS.MeshType = "Brick"
  272. Arm2RS.Scale = Vector3.new(0.3,8.5,4.5)
  273. local Arm3RS = Instance.new("Weld",ArmRS)
  274. Arm3RS.Part0 = rarm
  275. Arm3RS.Part1 = ArmRS
  276. Arm3RS.C0 = CFrame.new(2.5,0,0)*CFrame.Angles(0,0,0)
  277. local TopRS = Instance.new("Part",char)
  278. TopRS.Size = Vector3.new(1,1,1)
  279. TopRS.BrickColor = BrickColor.new("Cocoa")
  280. TopRS.TopSurface = 0
  281. TopRS.BottomSurface = 0
  282. TopRS.CanCollide = false
  283. local Top2RS = Instance.new("SpecialMesh",TopRS)
  284. Top2RS.MeshType = "Brick"
  285. Top2RS.Scale = Vector3.new(4.7,0.3,4.7)
  286. local Top3RS = Instance.new("Weld",TopRS)
  287. Top3RS.Part0 = rarm
  288. Top3RS.Part1 = TopRS
  289. Top3RS.C0 = CFrame.new(0,5,0)*CFrame.Angles(0,0,0)
  290. local BotRS = Instance.new("Part",char)
  291. BotRS.Size = Vector3.new(1,1,1)
  292. BotRS.BrickColor = BrickColor.new("Cocoa")
  293. BotRS.BottomSurface = 0
  294. BotRS.TopSurface = 0
  295. BotRS.CanCollide = false
  296. local Bot2RS = Instance.new("SpecialMesh",BotRS)
  297. Bot2RS.MeshType = "Brick"
  298. Bot2RS.Scale = Vector3.new(4.7,0.3,4.7)
  299. local Bot3RS = Instance.new("Weld",BotRS)
  300. Bot3RS.Part0 = rarm
  301. Bot3RS.Part1 = BotRS
  302. Bot3RS.C0 = CFrame.new(0,-5,0)*CFrame.Angles(0,0,0)
  303. ----------------------------------------------------
  304.  
  305. local Arm = Instance.new("Part",char)
  306. Arm.Size = Vector3.new(1,1,1)
  307. Arm.BrickColor = BrickColor.new("Cocoa")
  308. Arm.TopSurface = 0
  309. Arm.BottomSurface = 0
  310. Arm.CanCollide = false
  311. local Arm2 = Instance.new("SpecialMesh",Arm)
  312. Arm2.MeshType = "Brick"
  313. Arm2.Scale = Vector3.new(5,8.5,0.3)
  314. local Arm3 = Instance.new("Weld",Arm)
  315. Arm3.Part0 = larm
  316. Arm3.Part1 = Arm
  317. Arm3.C0 = CFrame.new(0,0,2.5)
  318. local ArmR = Instance.new("Part",char)
  319. ArmR.Size = Vector3.new(1,1,1)
  320. ArmR.BrickColor = BrickColor.new("Cocoa")
  321. ArmR.TopSurface = 0
  322. ArmR.BottomSurface = 0
  323. ArmR.CanCollide = false
  324. local Arm2R = Instance.new("SpecialMesh",ArmR)
  325. Arm2R.MeshType = "Brick"
  326. Arm2R.Scale = Vector3.new(5,8.5,0.3)
  327. local Arm3R = Instance.new("Weld",ArmR)
  328. Arm3R.Part0 = larm
  329. Arm3R.Part1 = ArmR
  330. Arm3R.C0 = CFrame.new(0,0,-2.5)
  331. local ArmRS = Instance.new("Part",char)
  332. ArmRS.Size = Vector3.new(1,1,1)
  333. ArmRS.BrickColor = BrickColor.new("Cocoa")
  334. ArmRS.TopSurface = 0
  335. ArmRS.BottomSurface = 0
  336. ArmRS.CanCollide = false
  337. local Arm2RS = Instance.new("SpecialMesh",ArmRS)
  338. Arm2RS.MeshType = "Brick"
  339. Arm2RS.Scale = Vector3.new(0.3,8.5,4.5)
  340. local Arm3RS = Instance.new("Weld",ArmRS)
  341. Arm3RS.Part0 = larm
  342. Arm3RS.Part1 = ArmRS
  343. Arm3RS.C0 = CFrame.new(-2.5,0,0)*CFrame.Angles(0,0,0)
  344. local TopRS = Instance.new("Part",char)
  345. TopRS.Size = Vector3.new(1,1,1)
  346. TopRS.BrickColor = BrickColor.new("Cocoa")
  347. TopRS.TopSurface = 0
  348. TopRS.BottomSurface = 0
  349. TopRS.CanCollide = false
  350. local Top2RS = Instance.new("SpecialMesh",TopRS)
  351. Top2RS.MeshType = "Brick"
  352. Top2RS.Scale = Vector3.new(4.7,0.3,4.7)
  353. local Top3RS = Instance.new("Weld",TopRS)
  354. Top3RS.Part0 = larm
  355. Top3RS.Part1 = TopRS
  356. Top3RS.C0 = CFrame.new(0,5,0)*CFrame.Angles(0,0,0)
  357. local BotRS = Instance.new("Part",char)
  358. BotRS.Size = Vector3.new(1,1,1)
  359. BotRS.BrickColor = BrickColor.new("Cocoa")
  360. BotRS.BottomSurface = 0
  361. BotRS.TopSurface = 0
  362. BotRS.CanCollide = false
  363. local Bot2RS = Instance.new("SpecialMesh",BotRS)
  364. Bot2RS.MeshType = "Brick"
  365. Bot2RS.Scale = Vector3.new(4.7,0.3,4.7)
  366. local Bot3RS = Instance.new("Weld",BotRS)
  367. Bot3RS.Part0 = larm
  368. Bot3RS.Part1 = BotRS
  369. Bot3RS.C0 = CFrame.new(0,-5,0)*CFrame.Angles(0,0,0)
  370. ----------------------------------------------------
  371. local Long = Instance.new("Part",char)
  372. Long.Size = Vector3.new(1,1,1)
  373. Long.CanCollide = false
  374. Long.BrickColor = BrickColor.new("Bronze")
  375. Long.TopSurface = 0
  376. Long.BottomSurface = 0
  377. local Long2 = Instance.new("SpecialMesh",Long)
  378. Long2.MeshType = "Brick"
  379. Long2.Scale = Vector3.new(9.5,0.3,4.5)
  380. local Long3 = Instance.new("Weld",Long)
  381. Long3.Part0 = torso
  382. Long3.Part1 = Long
  383. Long3.C0 = CFrame.new(0,4.95,0)
  384. ----------------------------------------------------
  385. local Back = Instance.new("Part",char)
  386. Back.Size = Vector3.new(1,1,1)
  387. Back.CanCollide = false
  388. Back.BrickColor = BrickColor.new("Bronze")
  389. Back.TopSurface = 0
  390. Back.BottomSurface = 0
  391. local Back2 = Instance.new("SpecialMesh",Back)
  392. Back2.MeshType = "Brick"
  393. Back2.Scale = Vector3.new(4,2,0.3)
  394. local Back3 = Instance.new("Weld",Back)
  395. Back3.Part0 = torso
  396. Back3.Part1 = Back
  397. Back3.C0 = CFrame.new(3,2.5,2.5)
  398.  
  399. local Back = Instance.new("Part",char)
  400. Back.Size = Vector3.new(1,1,1)
  401. Back.CanCollide = false
  402. Back.BrickColor = BrickColor.new("Bronze")
  403. Back.TopSurface = 0
  404. Back.BottomSurface = 0
  405. local Back2 = Instance.new("SpecialMesh",Back)
  406. Back2.MeshType = "Brick"
  407. Back2.Scale = Vector3.new(4,2,0.3)
  408. local Back3 = Instance.new("Weld",Back)
  409. Back3.Part0 = torso
  410. Back3.Part1 = Back
  411. Back3.C0 = CFrame.new(-3,2.5,2.5)
  412.  
  413. local Back = Instance.new("Part",char)
  414. Back.Size = Vector3.new(1,1,1)
  415. Back.CanCollide = false
  416. Back.BrickColor = BrickColor.new("Bronze")
  417. Back.TopSurface = 0
  418. Back.BottomSurface = 0
  419. local Back2 = Instance.new("SpecialMesh",Back)
  420. Back2.MeshType = "Brick"
  421. Back2.Scale = Vector3.new(4,4,0.3)
  422. local Back3 = Instance.new("Weld",Back)
  423. Back3.Part0 = torso
  424. Back3.Part1 = Back
  425. Back3.C0 = CFrame.new(0,-1,2.5)
  426.  
  427. local Back = Instance.new("Part",char)
  428. Back.Size = Vector3.new(1,1,1)
  429. Back.CanCollide = false
  430. Back.BrickColor = BrickColor.new("Bronze")
  431. Back.TopSurface = 0
  432. Back.BottomSurface = 0
  433. local Back2 = Instance.new("SpecialMesh",Back)
  434. Back2.MeshType = "Sphere"
  435. Back2.Scale = Vector3.new(4,4,4)
  436. local Back3 = Instance.new("Weld",Back)
  437. Back3.Part0 = torso
  438. Back3.Part1 = Back
  439. Back3.C0 = CFrame.new(0,-3,4)
  440. ----------------------------------------------------
  441. ----------------------------------------------------
  442. local Leg = Instance.new("Part",char)
  443. Leg.Size = Vector3.new(1,1,1)
  444. Leg.BrickColor = BrickColor.new("Bronze")
  445. Leg.TopSurface = 0
  446. Leg.BottomSurface = 0
  447. Leg.CanCollide = false
  448. local Leg2 = Instance.new("SpecialMesh",Leg)
  449. Leg2.MeshType = "Brick"
  450. Leg2.Scale = Vector3.new(5,8.5,0.3)
  451. local Leg3 = Instance.new("Weld",Leg)
  452. Leg3.Part0 = rleg
  453. Leg3.Part1 = Leg
  454. Leg3.C0 = CFrame.new(0,0,2.5)
  455. local LegR = Instance.new("Part",char)
  456. LegR.Size = Vector3.new(1,1,1)
  457. LegR.BrickColor = BrickColor.new("Bronze")
  458. LegR.TopSurface = 0
  459. LegR.BottomSurface = 0
  460. LegR.CanCollide = false
  461. local Leg2R = Instance.new("SpecialMesh",LegR)
  462. Leg2R.MeshType = "Brick"
  463. Leg2R.Scale = Vector3.new(5,8.5,0.3)
  464. local Leg3R = Instance.new("Weld",LegR)
  465. Leg3R.Part0 = rleg
  466. Leg3R.Part1 = LegR
  467. Leg3R.C0 = CFrame.new(0,0,-2.5)
  468. local LegRS = Instance.new("Part",char)
  469. LegRS.Size = Vector3.new(1,1,1)
  470. LegRS.BrickColor = BrickColor.new("Bronze")
  471. LegRS.TopSurface = 0
  472. LegRS.BottomSurface = 0
  473. LegRS.CanCollide = false
  474. local Leg2RS = Instance.new("SpecialMesh",LegRS)
  475. Leg2RS.MeshType = "Brick"
  476. Leg2RS.Scale = Vector3.new(0.3,8.5,4.5)
  477. local Leg3RS = Instance.new("Weld",LegRS)
  478. Leg3RS.Part0 = rleg
  479. Leg3RS.Part1 = LegRS
  480. Leg3RS.C0 = CFrame.new(2.5,0,0)*CFrame.Angles(0,0,0)
  481. local TopRS = Instance.new("Part",char)
  482. TopRS.Size = Vector3.new(1,1,1)
  483. TopRS.BrickColor = BrickColor.new("Bronze")
  484. TopRS.TopSurface = 0
  485. TopRS.BottomSurface = 0
  486. TopRS.CanCollide = false
  487. local BotRS = Instance.new("Part",char)
  488. BotRS.Size = Vector3.new(1,1,1)
  489. BotRS.BrickColor = BrickColor.new("Bronze")
  490. BotRS.BottomSurface = 0
  491. BotRS.TopSurface = 0
  492. BotRS.CanCollide = false
  493. local Bot2RS = Instance.new("SpecialMesh",BotRS)
  494. Bot2RS.MeshType = "Brick"
  495. Bot2RS.Scale = Vector3.new(4.7,0.3,4.7)
  496. local Bot3RS = Instance.new("Weld",BotRS)
  497. Bot3RS.Part0 = rleg
  498. Bot3RS.Part1 = BotRS
  499. Bot3RS.C0 = CFrame.new(0,-5,0)*CFrame.Angles(0,0,0)
  500. -----------------------------------------------------------
  501. local Arm = Instance.new("Part",char)
  502. Arm.Size = Vector3.new(1,1,1)
  503. Arm.BrickColor = BrickColor.new("Bronze")
  504. Arm.TopSurface = 0
  505. Arm.BottomSurface = 0
  506. Arm.CanCollide = false
  507. local Arm2 = Instance.new("SpecialMesh",Arm)
  508. Arm2.MeshType = "Brick"
  509. Arm2.Scale = Vector3.new(5,8.5,0.3)
  510. local Arm3 = Instance.new("Weld",Arm)
  511. Arm3.Part0 = lleg
  512. Arm3.Part1 = Arm
  513. Arm3.C0 = CFrame.new(0,0,2.5)
  514. local ArmR = Instance.new("Part",char)
  515. ArmR.Size = Vector3.new(1,1,1)
  516. ArmR.BrickColor = BrickColor.new("Bronze")
  517. ArmR.TopSurface = 0
  518. ArmR.BottomSurface = 0
  519. ArmR.CanCollide = false
  520. local Arm2R = Instance.new("SpecialMesh",ArmR)
  521. Arm2R.MeshType = "Brick"
  522. Arm2R.Scale = Vector3.new(5,8.5,0.3)
  523. local Arm3R = Instance.new("Weld",ArmR)
  524. Arm3R.Part0 = lleg
  525. Arm3R.Part1 = ArmR
  526. Arm3R.C0 = CFrame.new(0,0,-2.5)
  527. local ArmRS = Instance.new("Part",char)
  528. ArmRS.Size = Vector3.new(1,1,1)
  529. ArmRS.BrickColor = BrickColor.new("Bronze")
  530. ArmRS.TopSurface = 0
  531. ArmRS.BottomSurface = 0
  532. ArmRS.CanCollide = false
  533. local Arm2RS = Instance.new("SpecialMesh",ArmRS)
  534. Arm2RS.MeshType = "Brick"
  535. Arm2RS.Scale = Vector3.new(0.3,8.5,4.5)
  536. local Arm3RS = Instance.new("Weld",ArmRS)
  537. Arm3RS.Part0 = lleg
  538. Arm3RS.Part1 = ArmRS
  539. Arm3RS.C0 = CFrame.new(-2.5,0,0)*CFrame.Angles(0,0,0)
  540. local BotRS = Instance.new("Part",char)
  541. BotRS.Size = Vector3.new(1,1,1)
  542. BotRS.BrickColor = BrickColor.new("Bronze")
  543. BotRS.BottomSurface = 0
  544. BotRS.TopSurface = 0
  545. BotRS.CanCollide = false
  546. local Bot2RS = Instance.new("SpecialMesh",BotRS)
  547. Bot2RS.MeshType = "Brick"
  548. Bot2RS.Scale = Vector3.new(4.7,0.3,4.7)
  549. local Bot3RS = Instance.new("Weld",BotRS)
  550. Bot3RS.Part0 = lleg
  551. Bot3RS.Part1 = BotRS
  552. Bot3RS.C0 = CFrame.new(0,-5,0)*CFrame.Angles(0,0,0)
  553. ----------------------------------------------------
  554. local Pec = Instance.new("Part",char)
  555. Pec.Size = Vector3.new(1,1,1)
  556. Pec.BrickColor = BrickColor.new("Bronze")
  557. Pec.CanCollide = false
  558. Pec.TopSurface = 0
  559. Pec.BottomSurface = 0
  560. local Pec2 = Instance.new("SpecialMesh",Pec)
  561. Pec2.MeshType = "Brick"
  562. Pec2.Scale = Vector3.new(5,3,0.3)
  563. local Pec3 = Instance.new("Weld",Pec)
  564. Pec3.Part0 = torso
  565. Pec3.Part1 = Pec
  566. Pec3.C0 = CFrame.new(2,2.8,-2.8)*CFrame.Angles(0,0,0.1)
  567. local PecA = Instance.new("Part",char)
  568. PecA.Size = Vector3.new(1,1,1)
  569. PecA.BrickColor = BrickColor.new("Bronze")
  570. PecA.CanCollide = false
  571. PecA.TopSurface = 0
  572. PecA.BottomSurface = 0
  573. local Pec2A = Instance.new("SpecialMesh",PecA)
  574. Pec2A.MeshType = "Brick"
  575. Pec2A.Scale = Vector3.new(5,3,0.3)
  576. local Pec3A = Instance.new("Weld",PecA)
  577. Pec3A.Part0 = torso
  578. Pec3A.Part1 = PecA
  579. Pec3A.C0 = CFrame.new(-2,2.8,-2.8)*CFrame.Angles(0,0,-0.1)
  580. ---------------------------------------------------
  581. local Abs = Instance.new("Part",char)
  582. Abs.Size = Vector3.new(1,1,1)
  583. Abs.BrickColor = BrickColor.new("Bronze")
  584. Abs.CanCollide = false
  585. Abs.TopSurface = 0
  586. Abs.BottomSurface = 0
  587. local Abs2 = Instance.new("SpecialMesh",Abs)
  588. Abs2.MeshType = "Brick"
  589. Abs2.Scale = Vector3.new(2,1,0.3)
  590. local Abs3 = Instance.new("Weld",Abs)
  591. Abs3.Part0 = torso
  592. Abs3.Part1 = Abs
  593. Abs3.C0 = CFrame.new(1.4,0,-2.8)*CFrame.Angles(0,0,0.1)
  594. local Abs = Instance.new("Part",char)
  595. Abs.Size = Vector3.new(1,1,1)
  596. Abs.BrickColor = BrickColor.new("Bronze")
  597. Abs.CanCollide = false
  598. Abs.TopSurface = 0
  599. Abs.BottomSurface = 0
  600. local Abs2 = Instance.new("SpecialMesh",Abs)
  601. Abs2.MeshType = "Brick"
  602. Abs2.Scale = Vector3.new(2,1,0.3)
  603. local Abs3 = Instance.new("Weld",Abs)
  604. Abs3.Part0 = torso
  605. Abs3.Part1 = Abs
  606. Abs3.C0 = CFrame.new(-1.4,0,-2.8)*CFrame.Angles(0,0,-0.1)
  607.  
  608. local Abs = Instance.new("Part",char)
  609. Abs.Size = Vector3.new(1,1,1)
  610. Abs.BrickColor = BrickColor.new("Bronze")
  611. Abs.CanCollide = false
  612. Abs.TopSurface = 0
  613. Abs.BottomSurface = 0
  614. local Abs2 = Instance.new("SpecialMesh",Abs)
  615. Abs2.MeshType = "Brick"
  616. Abs2.Scale = Vector3.new(2,1,0.3)
  617. local Abs3 = Instance.new("Weld",Abs)
  618. Abs3.Part0 = torso
  619. Abs3.Part1 = Abs
  620. Abs3.C0 = CFrame.new(1.4,-1.1,-2.8)*CFrame.Angles(0,0,0.1)
  621. local Abs = Instance.new("Part",char)
  622. Abs.Size = Vector3.new(1,1,1)
  623. Abs.BrickColor = BrickColor.new("Bronze")
  624. Abs.CanCollide = false
  625. Abs.TopSurface = 0
  626. Abs.BottomSurface = 0
  627. local Abs2 = Instance.new("SpecialMesh",Abs)
  628. Abs2.MeshType = "Brick"
  629. Abs2.Scale = Vector3.new(2,1,0.3)
  630. local Abs3 = Instance.new("Weld",Abs)
  631. Abs3.Part0 = torso
  632. Abs3.Part1 = Abs
  633. Abs3.C0 = CFrame.new(-1.4,-1.1,-2.8)*CFrame.Angles(0,0,-0.1)
  634.  
  635. local Abs = Instance.new("Part",char)
  636. Abs.Size = Vector3.new(1,1,1)
  637. Abs.BrickColor = BrickColor.new("Bronze")
  638. Abs.CanCollide = false
  639. Abs.TopSurface = 0
  640. Abs.BottomSurface = 0
  641. local Abs2 = Instance.new("SpecialMesh",Abs)
  642. Abs2.MeshType = "Brick"
  643. Abs2.Scale = Vector3.new(2,1,0.3)
  644. local Abs3 = Instance.new("Weld",Abs)
  645. Abs3.Part0 = torso
  646. Abs3.Part1 = Abs
  647. Abs3.C0 = CFrame.new(1.4,-2.2,-2.8)*CFrame.Angles(0,0,0.1)
  648. local Abs = Instance.new("Part",char)
  649. Abs.Size = Vector3.new(1,1,1)
  650. Abs.BrickColor = BrickColor.new("Bronze")
  651. Abs.CanCollide = false
  652. Abs.TopSurface = 0
  653. Abs.BottomSurface = 0
  654. local Abs2 = Instance.new("SpecialMesh",Abs)
  655. Abs2.MeshType = "Brick"
  656. Abs2.Scale = Vector3.new(2,1,0.3)
  657. local Abs3 = Instance.new("Weld",Abs)
  658. Abs3.Part0 = torso
  659. Abs3.Part1 = Abs
  660. Abs3.C0 = CFrame.new(-1.4,-2.2,-2.8)*CFrame.Angles(0,0,-0.1)
  661.  
  662. local Abs = Instance.new("Part",char)
  663. Abs.Size = Vector3.new(1,1,1)
  664. Abs.BrickColor = BrickColor.new("Bronze")
  665. Abs.CanCollide = false
  666. Abs.TopSurface = 0
  667. Abs.BottomSurface = 0
  668. local Abs2 = Instance.new("SpecialMesh",Abs)
  669. Abs2.MeshType = "Brick"
  670. Abs2.Scale = Vector3.new(2,1,0.3)
  671. local Abs3 = Instance.new("Weld",Abs)
  672. Abs3.Part0 = torso
  673. Abs3.Part1 = Abs
  674. Abs3.C0 = CFrame.new(1.4,-3.3,-2.8)*CFrame.Angles(0,0,0.1)
  675. local Abs = Instance.new("Part",char)
  676. Abs.Size = Vector3.new(1,1,1)
  677. Abs.BrickColor = BrickColor.new("Bronze")
  678. Abs.CanCollide = false
  679. Abs.TopSurface = 0
  680. Abs.BottomSurface = 0
  681. local Abs2 = Instance.new("SpecialMesh",Abs)
  682. Abs2.MeshType = "Brick"
  683. Abs2.Scale = Vector3.new(2,1,0.3)
  684. local Abs3 = Instance.new("Weld",Abs)
  685. Abs3.Part0 = torso
  686. Abs3.Part1 = Abs
  687. Abs3.C0 = CFrame.new(-1.4,-3.3,-2.8)*CFrame.Angles(0,0,-0.1)
  688.  
  689. local Abs = Instance.new("Part",char)
  690. Abs.Size = Vector3.new(1,1,1)
  691. Abs.BrickColor = BrickColor.new("Bronze")
  692. Abs.CanCollide = false
  693. Abs.TopSurface = 0
  694. Abs.BottomSurface = 0
  695. local Abs2 = Instance.new("SpecialMesh",Abs)
  696. Abs2.MeshType = "Brick"
  697. Abs2.Scale = Vector3.new(2.1,2,5.2)
  698. local Abs3 = Instance.new("Weld",Abs)
  699. Abs3.Part0 = torso
  700. Abs3.Part1 = Abs
  701. Abs3.C0 = CFrame.new(4,-3.3,0)*CFrame.Angles(0,0,0)
  702. local Abs = Instance.new("Part",char)
  703. Abs.Size = Vector3.new(1,1,1)
  704. Abs.BrickColor = BrickColor.new("Bronze")
  705. Abs.CanCollide = false
  706. Abs.TopSurface = 0
  707. Abs.BottomSurface = 0
  708. local Abs2 = Instance.new("SpecialMesh",Abs)
  709. Abs2.MeshType = "Brick"
  710. Abs2.Scale = Vector3.new(2.1,2,5.2)
  711. local Abs3 = Instance.new("Weld",Abs)
  712. Abs3.Part0 = torso
  713. Abs3.Part1 = Abs
  714. Abs3.C0 = CFrame.new(-4,-3.3,0)*CFrame.Angles(0,0,0)
  715.  
  716. local Abs = Instance.new("Part",char)
  717. Abs.Size = Vector3.new(1,1,1)
  718. Abs.BrickColor = BrickColor.new("Bronze")
  719. Abs.CanCollide = false
  720. Abs.TopSurface = 0
  721. Abs.BottomSurface = 0
  722. local Abs2 = Instance.new("SpecialMesh",Abs)
  723. Abs2.MeshType = "Brick"
  724. Abs2.Scale = Vector3.new(2.1,2,5.2)
  725. local Abs3 = Instance.new("Weld",Abs)
  726. Abs3.Part0 = torso
  727. Abs3.Part1 = Abs
  728. Abs3.C0 = CFrame.new(4,-0.3,0)*CFrame.Angles(0,0,0)
  729. local Abs = Instance.new("Part",char)
  730. Abs.Size = Vector3.new(1,1,1)
  731. Abs.BrickColor = BrickColor.new("Bronze")
  732. Abs.CanCollide = false
  733. Abs.TopSurface = 0
  734. Abs.BottomSurface = 0
  735. local Abs2 = Instance.new("SpecialMesh",Abs)
  736. Abs2.MeshType = "Brick"
  737. Abs2.Scale = Vector3.new(2.1,2,5.2)
  738. local Abs3 = Instance.new("Weld",Abs)
  739. Abs3.Part0 = torso
  740. Abs3.Part1 = Abs
  741. Abs3.C0 = CFrame.new(-4,-0.3,0)*CFrame.Angles(0,0,0)
  742. -----------------------------------------------------
  743. local Head = Instance.new("Part",char)
  744. Head.Size = Vector3.new(1,1,1)
  745. Head.BrickColor = BrickColor.new("Really black")
  746. Head.CanCollide = false
  747. Head.TopSurface = 0
  748. Head.BottomSurface = 0
  749. local Head2 = Instance.new("SpecialMesh",Head)
  750. Head2.MeshType = "Head"
  751. Head2.Scale = Vector3.new(11.5,6.5,6.5)
  752. local Head3 = Instance.new("Weld",Head)
  753. Head3.Part0 = hed
  754. Head3.Part1 = Head
  755. Head3.C0 = CFrame.new(0,0,0)
  756.  
  757. local Head = Instance.new("Part",char)
  758. Head.Size = Vector3.new(1,1,1)
  759. Head.BrickColor = BrickColor.new("Bronze")
  760. Head.CanCollide = false
  761. Head.TopSurface = 0
  762. Head.BottomSurface = 0
  763. local Head2 = Instance.new("SpecialMesh",Head)
  764. Head2.MeshType = "Cylinder"
  765. Head2.Scale = Vector3.new(2,6.6,6.6)
  766. local Head3 = Instance.new("Weld",Head)
  767. Head3.Part0 = hed
  768. Head3.Part1 = Head
  769. Head3.C0 = CFrame.new(0,-1,0)*CFrame.fromOrientation(0,0,80.1)
  770.  
  771. local Head = Instance.new("Part",char)
  772. Head.Size = Vector3.new(1,1,1)
  773. Head.BrickColor = BrickColor.new("Bronze")
  774. Head.CanCollide = false
  775. Head.TopSurface = 0
  776. Head.BottomSurface = 0
  777. local Head2 = Instance.new("SpecialMesh",Head)
  778. Head2.MeshType = "Cylinder"
  779. Head2.Scale = Vector3.new(2,6.6,6.6)
  780. local Head3 = Instance.new("Weld",Head)
  781. Head3.Part0 = hed
  782. Head3.Part1 = Head
  783. Head3.C0 = CFrame.new(0,-1,0)
  784. -----------------------------------------------------
  785. local Eye2 = Instance.new("Part",char)
  786. Eye2.Size = Vector3.new(1,1,1)
  787. Eye2.BrickColor = BrickColor.new("Really black")
  788. Eye2.CanCollide = false
  789. Eye2.TopSurface = 0
  790. Eye2.BottomSurface = 0
  791. local Eye22 = Instance.new("SpecialMesh",Eye2)
  792. Eye22.MeshType = "Sphere"
  793. Eye22.Scale = Vector3.new(1.2,0.6,0.1)
  794. local Eye32 = Instance.new("Weld",Eye2)
  795. Eye32.Part0 = hed
  796. Eye32.Part1 = Eye2
  797. Eye32.C0 = CFrame.new(1.3,0.5,-3)*CFrame.Angles(0,0,0.3)
  798. local Eye = Instance.new("Part",char)
  799. Eye.Size = Vector3.new(1,1,1)
  800. Eye.BrickColor = BrickColor.new("Really black")
  801. Eye.CanCollide = false
  802. Eye.TopSurface = 0
  803. Eye.BottomSurface = 0
  804. local Eye212 = Instance.new("SpecialMesh",Eye)
  805. Eye212.MeshType = "Sphere"
  806. Eye212.Scale = Vector3.new(1.2,0.6,0.1)
  807. local Eye3 = Instance.new("Weld",Eye)
  808. Eye3.Part0 = hed
  809. Eye3.Part1 = Eye
  810. Eye3.C0 = CFrame.new(-1.3,0.5,-3)*CFrame.Angles(0,0,-0.3)
  811.  
  812. local Glow = Instance.new("Part",char)
  813. Glow.Size = Vector3.new(1,1,1)
  814. Glow.BrickColor = BrickColor.new("Institutional white")
  815. Glow.CanCollide = false
  816. Glow.TopSurface = 0
  817. Glow.Material = "Neon"
  818. Glow.BottomSurface = 0
  819. local Glow2 = Instance.new("SpecialMesh",Glow)
  820. Glow2.MeshType = "Sphere"
  821. Glow2.Scale = Vector3.new(0.5,0.5,0.5)
  822. local Glow3 = Instance.new("Weld",Glow)
  823. Glow3.Part0 = Eye
  824. Glow3.Part1 = Glow
  825. Glow3.C0 = CFrame.new(0,0,-0.2)*CFrame.Angles(0,0,0)
  826.  
  827. local Glow = Instance.new("Part",char)
  828. Glow.Size = Vector3.new(1,1,1)
  829. Glow.BrickColor = BrickColor.new("Institutional white")
  830. Glow.CanCollide = false
  831. Glow.TopSurface = 0
  832. Glow.Material = "Neon"
  833. Glow.BottomSurface = 0
  834. local Glow2 = Instance.new("SpecialMesh",Glow)
  835. Glow2.MeshType = "Sphere"
  836. Glow2.Scale = Vector3.new(0.5,0.5,0.5)
  837. local Glow3 = Instance.new("Weld",Glow)
  838. Glow3.Part0 = Eye2
  839. Glow3.Part1 = Glow
  840. Glow3.C0 = CFrame.new(0,0,-0.2)*CFrame.Angles(0,0,0)
  841. -----------------------------------------------------
  842. local naeeym = Instance.new("BillboardGui",char)
  843. naeeym.Size = UDim2.new(0,100,0,40)
  844. naeeym.StudsOffset = Vector3.new(0,7,0)
  845. naeeym.Adornee = char.Head
  846. local tecks = Instance.new("TextLabel",naeeym)
  847. tecks.BackgroundTransparency = 1
  848. tecks.BorderSizePixel = 0
  849. tecks.Text = "Bunny"
  850. tecks.Font = "Bodoni"
  851. tecks.FontSize = "Size36"
  852. tecks.TextStrokeTransparency = 0.5
  853. tecks.TextColor3 = Color3.new(0,0,0)
  854. rrer = BrickColor.new("Really red")
  855. tecks.TextStrokeColor3 = rrer.Color
  856. tecks.Size = UDim2.new(1,0,0.5,0)
  857. local licht = Instance.new("PointLight",char.Torso)
  858. licht.Color = tecks.TextStrokeColor3
  859. licht.Range = 60
  860. licht.Brightness = 1
  861. licht.Enabled = false
  862. -----------------------------------------------------
  863. plr = game.Players.LocalPlayer
  864. base = Instance.new("ScreenGui",plr.PlayerGui)
  865. bbg = Instance.new("BillboardGui",plr.Character.Head)
  866. bbg.Size = UDim2.new(0,200,0,50)
  867. bbg.StudsOffset = Vector3.new(0,11,0)
  868. bbgTl = Instance.new("TextLabel",bbg)
  869. bbgTl.BackgroundTransparency = 1
  870. bbgTl.Size = UDim2.new(10,0,1,0)
  871. bbgTl.Position = UDim2.new(-4.5,0,0,0)
  872. bbgTl.Font = "Code"
  873. bbgTl.Text = " "
  874. bbgTl.TextSize = 25
  875. bbgTl.TextStrokeColor3 = Color3.new(1,0,0)
  876. bbgTl.TextColor3 = Color3.new(0,0,0)
  877. bbgTl.TextStrokeTransparency = 0
  878. bbgTl.TextWrapped = true
  879. plr.Chatted:connect(function(msg)
  880. bbgTl.Text = msg
  881. wait(5)
  882. if bbgTl.Text == msg then
  883. bbgTl.Text = " "
  884. end
  885. end)
  886. -------------------------------------------------------------------
  887. function weld5(part0, part1, c0, c1)
  888. weeld=Instance.new("Weld", part0)
  889. weeld.Part0=part0
  890. weeld.Part1=part1
  891. weeld.C0=c0
  892. weeld.C1=c1
  893. return weeld
  894. end
  895. ----------------------------------------------------
  896. function newRay(start,face,range,wat)
  897. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  898. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  899. return rey,hit,pos
  900. end
  901. ----------------------------------------------------
  902. mod5 = Instance.new("Model",char)
  903.  
  904. function FindNearestTorso(Position,Distance,SinglePlayer)
  905. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  906. local List = {}
  907. for i,v in pairs(workspace:GetChildren())do
  908. if v:IsA("Model")then
  909. if v:findFirstChild("Torso")then
  910. if v ~= char then
  911. if(v.Torso.Position -Position).magnitude <= Distance then
  912. table.insert(List,v)
  913. end
  914. end
  915. end
  916. end
  917. end
  918. return List
  919. end
  920.  
  921. function Landing()
  922. part=Instance.new('Part',mod5)
  923. part.Anchored=true
  924. part.CanCollide=false
  925. part.FormFactor='Custom'
  926. part.Size=Vector3.new(.2,.2,.2)
  927. part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  928. part.Transparency=.7
  929. part.BrickColor=BrickColor.new('Really black')
  930. mesh=Instance.new('SpecialMesh',part)
  931. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  932. mesh.Scale=Vector3.new(10,5,10)
  933.  
  934. for i,v in pairs(FindNearestTorso(torso.CFrame.p,40))do
  935. if v:FindFirstChild('Humanoid') then
  936. v.Humanoid:TakeDamage(math.random(20,30))
  937. v.Humanoid.PlatformStand = true
  938. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  939. end
  940. end
  941.  
  942. coroutine.resume(coroutine.create(function()
  943. for i=0,3.8,0.05 do
  944. wait()
  945. part.CFrame=part.CFrame
  946. part.Transparency=i
  947. mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  948. end
  949. part.Parent = nil
  950. end))
  951. end
  952. ----------------------------------------------------
  953. mod4 = Instance.new("Model",char)
  954.  
  955. ptez = {0.7, 0.8, 0.9, 1}
  956.  
  957. function FindNearestTorso(Position,Distance,SinglePlayer)
  958. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  959. local List = {}
  960. for i,v in pairs(workspace:GetChildren())do
  961. if v:IsA("Model")then
  962. if v:findFirstChild("Torso")then
  963. if v ~= char then
  964. if(v.Torso.Position -Position).magnitude <= Distance then
  965. table.insert(List,v)
  966. end
  967. end
  968. end
  969. end
  970. end
  971. return List
  972. end
  973.  
  974. ----------------------------------------------------
  975.  
  976. local acos = math.acos
  977. local sqrt = math.sqrt
  978. local Vec3 = Vector3.new
  979. local fromAxisAngle = CFrame.fromAxisAngle
  980.  
  981. local function toAxisAngle(CFr)
  982. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  983. local Angle = math.acos((R00+R11+R22-1)/2)
  984. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  985. A = A == 0 and 0.00001 or A
  986. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  987. B = B == 0 and 0.00001 or B
  988. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  989. C = C == 0 and 0.00001 or C
  990. local x = (R21-R12)/sqrt(A)
  991. local y = (R02-R20)/sqrt(B)
  992. local z = (R10-R01)/sqrt(C)
  993. return Vec3(x,y,z),Angle
  994. end
  995.  
  996. function ApplyTrig(Num,Func)
  997. local Min,Max = Func(0),Func(1)
  998. local i = Func(Num)
  999. return (i-Min)/(Max-Min)
  1000. --[[if Func == "sin" then
  1001. return (math.sin((1-Num)*math.pi)+1)/2
  1002. elseif Func == "cos" then
  1003. return (math.cos((1-Num)*math.pi)+1)/2
  1004. end]]
  1005. end
  1006.  
  1007. function LerpCFrame(CFrame1,CFrame2,Num)
  1008. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  1009. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  1010. end
  1011. mouse.KeyDown:connect(function(key)
  1012. if key == "b" then
  1013. if Debounces.CanAttack == true then
  1014. Debounces.CanAttack = false
  1015. Debounces.on = true
  1016. Debounces.NoIdl = true
  1017. for i = 1,20 do
  1018. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(9,4,1) * CFrame.Angles(0.3,-0.5,1.55),.3)
  1019. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-9,4,1) * CFrame.Angles(0.3,0.5,-1.55),.3)
  1020. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,7.5,0) * CFrame.Angles(0.4,0,0),.3)
  1021. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(0.3,0,0),.3)
  1022. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-2.5, -8.8,1) *CFrame.Angles(-0.3,0,-0.1),.3)
  1023. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(2.5, -8.8,1) * CFrame.Angles(-0.3,0,0.1),.3)
  1024. if Debounces.on == false then break end
  1025. wait()
  1026. end
  1027. v = Instance.new("Sound")
  1028. v.SoundId = "rbxassetid://181384451"
  1029. v.Parent = torso
  1030. v.Looped = false
  1031. v.Pitch = 0.8
  1032. v.Volume = math.huge
  1033. wait(.01)
  1034. v:Play()
  1035. coroutine.resume(coroutine.create(function()
  1036. for i = 1,80 do
  1037. local H = Instance.new("Part",torso)
  1038. H.Size = Vector3.new(1,1,1)
  1039. H.BrickColor = BrickColor.new("White")
  1040. H.CanCollide = false
  1041. H.Anchored = true
  1042. H.CFrame = torso.CFrame*CFrame.new(0,-13,0)*CFrame.Angles(1.3,0,0)
  1043. local H2 = Instance.new("SpecialMesh",H)
  1044. H2.MeshId = "rbxassetid://3270017"
  1045. coroutine.resume(coroutine.create(function()
  1046. for i = 1,200 do
  1047. H2.Scale = H2.Scale + Vector3.new(5,5,5)
  1048. H.Transparency = H.Transparency + 0.05
  1049. wait(0.05)
  1050. end
  1051. H:remove()
  1052. end))
  1053. wait(0.005)
  1054. end
  1055. if Debounces.CanAttack == false then
  1056. Debounces.CanAttack = true
  1057. Debounces.on = false
  1058. Debounces.NoIdl = false
  1059. end
  1060. end))
  1061. end
  1062. end
  1063. end)
  1064. mouse.KeyDown:connect(function(key)
  1065. if key == "z" then
  1066. if Debounces.CanAttack == true then
  1067. Debounces.CanAttack = false
  1068. Debounces.on = true
  1069. Debounces.NoIdl = true
  1070. for i = 1,20 do
  1071. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(7.6,1,-3) * CFrame.Angles(1.55,0,0),.3)
  1072. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-7.6,1,-3) * CFrame.Angles(1.55,0,0),.3)
  1073. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,7.5,0) * CFrame.Angles(0,0,0),.3)
  1074. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -6, 0) * CFrame.Angles(-1.5,0,0),.3)
  1075. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-2.5, -7.6,-2) *CFrame.Angles(1.55,0,0),.3)
  1076. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(2.5, -7.6,-2) * CFrame.Angles(1.55,0,0),.3)
  1077. if Debounces.on == false then break end
  1078. wait()
  1079. end
  1080. local Rock = Instance.new("Part",char)
  1081. Rock.Size = Vector3.new(1,1,1)
  1082. local Rock22 = Instance.new("SpecialMesh",Rock)
  1083. Rock22.MeshId = "rbxassetid://433651599"
  1084. Rock22.Scale = Vector3.new(0.25,0.25,0.25)
  1085. local Rock2 = Instance.new("Weld",Rock)
  1086. Rock2.Part0 = hed
  1087. Rock2.Part1 = Rock
  1088. Rock2.C0 = CFrame.new(0,20,0)*CFrame.Angles(0,-1.55,0)
  1089. local PPA = Instance.new("Part",Rock)
  1090. PPA.Size = Vector3.new(15,15,15)
  1091. PPA.CanCollide = false
  1092. local PPA2 = Instance.new("Weld",PPA)
  1093. PPA2.Part0 = Rock
  1094. PPA2.Part1 = PPA
  1095. PPA2.C0 = CFrame.new(0,0,0)
  1096. PPA.Touched:connect(function(hit)
  1097. if hit.Parent:FindFirstChild("Humanoid") and hit.Parent ~= nil then
  1098. if not FA then FA = true
  1099. hit.Parent.Humanoid.PlatformStand = true
  1100. hit.Parent.Humanoid:TakeDamage(30)
  1101. local Fly = Instance.new("BodyVelocity",hit.Parent.Torso)
  1102. Fly.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  1103. Fly.velocity = mouse.hit.lookVector*560
  1104. wait(0.1)
  1105. Fly:remove()
  1106. wait(3)
  1107. FA = false
  1108. end
  1109. end
  1110. end)
  1111. wait(0.5)
  1112. for i = 1,20 do
  1113. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(7.6,5.5,0) * CFrame.Angles(3.1,0,0),.3)
  1114. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-7.6,5.5,0) * CFrame.Angles(3.1,0,0),.3)
  1115. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,7.5,0) * CFrame.Angles(0,0,0),.3)
  1116. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(0,0,0),.3)
  1117. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-2.5, -8.8,0) *CFrame.Angles(0,0,0),.3)
  1118. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(2.5, -8.8,0) * CFrame.Angles(0,0,0),.3)
  1119. if Debounces.on == false then break end
  1120. wait()
  1121. end
  1122. Rock2:remove()
  1123. local Fly = Instance.new("BodyVelocity",Rock)
  1124. Fly.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  1125. Fly.velocity = mouse.hit.lookVector*200
  1126. for i = 1,20 do
  1127. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(7.6,1.5,-1) * CFrame.Angles(1.55,0,0),.3)
  1128. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-7.6,1.5,-1) * CFrame.Angles(1.55,0,0),.3)
  1129. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,7.5,0) * CFrame.Angles(-0.3,0,0),.3)
  1130. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(-0.3,0,0),.3)
  1131. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-2.5, -8.8,0) *CFrame.Angles(0,0,0),.3)
  1132. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(2.5, -8.8,-2) * CFrame.Angles(0.5,0,0),.3)
  1133. if Debounces.on == false then break end
  1134. wait()
  1135. end
  1136. if Debounces.CanAttack == false then
  1137. Debounces.CanAttack = true
  1138. Debounces.on = false
  1139. Debounces.NoIdl = false
  1140. end
  1141. wait(2)
  1142. Fly:remove()
  1143. local SFXZ = Instance.new("Sound",Rock)
  1144. SFXZ.SoundId = "rbxassetid://134854740"
  1145. SFXZ.Volume = math.huge
  1146. SFXZ.Pitch = 1
  1147. SFXZ.Looped = false
  1148. wait(0.01)
  1149. SFXZ:Play()
  1150. wait(3)
  1151. Rock:remove()
  1152. end
  1153. end
  1154. end)
  1155. mouse.KeyDown:connect(function(key)
  1156. if key == "e" then
  1157. if Debounces.CanAttack == true then
  1158. Debounces.CanAttack = false
  1159. Debounces.on = true
  1160. Debounces.NoIdl = true
  1161. for i = 1,20 do
  1162. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(7.6,1,-3) * CFrame.Angles(1.3,0,0),.3)
  1163. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-7.6,1,0) * CFrame.Angles(-0.5,0,0),.3)
  1164. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,7.5,0) * CFrame.Angles(0,0,0),.3)
  1165. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -8, 0) * CFrame.Angles(-0.5,0,0),.3)
  1166. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-2.5, -3.3,-3.5) *CFrame.Angles(0.5,0,0),.3)
  1167. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(2.5, -7.6,0.5) * CFrame.Angles(-1.1,0,0),.3)
  1168. if Debounces.on == false then break end
  1169. wait()
  1170. end
  1171. local HitBox = Instance.new("Part",char)
  1172. HitBox.Size = Vector3.new(5,5,5)
  1173. HitBox.CanCollide = false
  1174. HitBox.Transparency = math.huge
  1175. local HitBox2 = Instance.new("Weld",HitBox)
  1176. HitBox2.Part0 = rarm
  1177. HitBox2.Part1 = HitBox
  1178. HitBox2.C0 = CFrame.new(0,-4.5,0)
  1179. HitBox.Touched:connect(function(hit)
  1180. if hit.Parent:FindFirstChild("Humanoid") and hit.Parent ~= nil then
  1181. if not DD then DD = true
  1182. HitBox:remove()
  1183. hit.Parent.Humanoid.PlatformStand = true
  1184. local We = Instance.new("Weld",hit.Parent.Torso)
  1185. We.Part0 = rarm
  1186. We.Part1 = hit.Parent.Torso
  1187. We.C0 = CFrame.new(0,-5,0)*CFrame.Angles(-1.55,0,0)
  1188. wait(1)
  1189. for i = 1,20 do
  1190. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(7.6,4,0) * CFrame.Angles(3.1,0,1),.3)
  1191. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-7.6,4,0) * CFrame.Angles(-3.1,0,-1),.3)
  1192. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,7.5,0) * CFrame.Angles(1,0,0),.3)
  1193. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -8, 0) * CFrame.Angles(-0.5,0,0),.3)
  1194. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-2.5, -3.3,-3.5) *CFrame.Angles(0.5,0,0),.3)
  1195. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(2.5, -7.6,0.5) * CFrame.Angles(-1.1,0,0),.3)
  1196. if Debounces.on == false then break end
  1197. wait()
  1198. end
  1199. hit.Parent.Humanoid:TakeDamage(20)
  1200. for i = 1,20 do
  1201. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(6,4,-1) * CFrame.Angles(1.55,0,-1),.3)
  1202. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-6,4,-1) * CFrame.Angles(1.55,0,1),.3)
  1203. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,7.5,0) * CFrame.Angles(-0.4,0,0),.3)
  1204. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -8, 0) * CFrame.Angles(-0.5,0,0),.3)
  1205. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-2.5, -3.3,-3.5) *CFrame.Angles(0.5,0,0),.3)
  1206. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(2.5, -7.6,0.5) * CFrame.Angles(-1.1,0,0),.3)
  1207. if Debounces.on == false then break end
  1208. wait()
  1209. end
  1210. for i = 1,20 do
  1211. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(5,4,-1) * CFrame.Angles(1.55,0,-1.3),.3)
  1212. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-5,4,-1) * CFrame.Angles(1.55,0,1.3),.3)
  1213. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,7.5,0) * CFrame.Angles(-0.4,0,0),.3)
  1214. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -8, 0) * CFrame.Angles(-0.5,0,0),.3)
  1215. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-2.5, -3.3,-3.5) *CFrame.Angles(0.5,0,0),.3)
  1216. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(2.5, -7.6,0.5) * CFrame.Angles(-1.1,0,0),.3)
  1217. if Debounces.on == false then break end
  1218. wait()
  1219. end
  1220. local partasdeff = Instance.new("ParticleEmitter",hit.Parent.Torso)
  1221. partasdeff.Color = ColorSequence.new(Color3.new(1, 0, 0), Color3.new(1, 0, 0))
  1222. partasdeff.LightEmission = .1
  1223. partasdeff.Size = NumberSequence.new(0.2)
  1224. partasdeff.Texture = "http://www.roblox.com/asset/?ID=380529823"
  1225. aaa = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.2),NumberSequenceKeypoint.new(1, 5)})
  1226. bbb = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.0636, 0), NumberSequenceKeypoint.new(1, 1)})
  1227. partasdeff.Transparency = bbb
  1228. partasdeff.Size = aaa
  1229. partasdeff.ZOffset = .9
  1230. partasdeff.Acceleration = Vector3.new(0, -5, 0)
  1231. partasdeff.LockedToPart = false
  1232. partasdeff.EmissionDirection = "Top"
  1233. partasdeff.Lifetime = NumberRange.new(1, 2)
  1234. partasdeff.Rate = 1000
  1235. partasdeff.Rotation = NumberRange.new(-100, 100)
  1236. partasdeff.RotSpeed = NumberRange.new(-100, 100)
  1237. partasdeff.Speed = NumberRange.new(10)
  1238. partasdeff.VelocitySpread = 300
  1239. partasdeff.Enabled = true
  1240. wait(1.5)
  1241. hit.Parent:BreakJoints()
  1242. We:remove()
  1243. partasdeff.Enabled = false
  1244. if Debounces.CanAttack == false then
  1245. Debounces.CanAttack = true
  1246. Debounces.on = false
  1247. Debounces.NoIdl = false
  1248. end
  1249. wait(3)
  1250. DD = false
  1251. end
  1252. end
  1253. end)
  1254. wait(5)
  1255. if Debounces.CanAttack == false then
  1256. Debounces.CanAttack = true
  1257. Debounces.on = false
  1258. Debounces.NoIdl = false
  1259. end
  1260. end
  1261. end
  1262. end)
  1263. mouse.KeyDown:connect(function(key)
  1264. if key == "r" then
  1265. if Debounces.CanAttack == true then
  1266. Debounces.CanAttack = false
  1267. Debounces.on = true
  1268. Debounces.NoIdl = true
  1269. for i = 1,20 do
  1270. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(7.6,1,0) * CFrame.Angles(0.5,0,0),.3)
  1271. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-7.6,1,0) * CFrame.Angles(-0.5,0,0),.3)
  1272. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,7.5,0) * CFrame.Angles(0,0,0),.3)
  1273. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(-0.5,0,0),.3)
  1274. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-2.5, -8.8, -2) *CFrame.Angles(0.5,0,0),.3)
  1275. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(2.5, -7.6, 1.2) * CFrame.Angles(-1.5,0,0),.3)
  1276. if Debounces.on == false then break end
  1277. wait()
  1278. end
  1279. local HitBox = Instance.new("Part",char)
  1280. HitBox.Size = Vector3.new(5,5,5)
  1281. HitBox.CanCollide = false
  1282. HitBox.Transparency = math.huge
  1283. local HitBox2 = Instance.new("Weld",HitBox)
  1284. HitBox2.Part0 = rleg
  1285. HitBox2.Part1 = HitBox
  1286. HitBox2.C0 = CFrame.new(0,-1.1,0)
  1287. local SFXZ = Instance.new("Sound",torso)
  1288. SFXZ.SoundId = "rbxassetid://169259383"
  1289. SFXZ.Volume = math.huge
  1290. SFXZ.Pitch = 0.5
  1291. SFXZ.Looped = false
  1292. wait(0.01)
  1293. SFXZ:Play()
  1294. HitBox.Touched:connect(function(hit)
  1295. if hit.Parent:FindFirstChild("Humanoid") and hit.Parent ~= nil then
  1296. local SFXZ = Instance.new("Sound",torso)
  1297. SFXZ.SoundId = "rbxassetid://743886825"
  1298. SFXZ.Volume = 1
  1299. SFXZ.Pitch = 0.5
  1300. SFXZ.Looped = false
  1301. SFXZ:Play()
  1302. HitBox:remove()
  1303. hit.Parent.Humanoid:TakeDamage(44)
  1304. hit.Parent.Humanoid.PlatformStand = true
  1305. local Fl = Instance.new("BodyVelocity",hit.Parent.Torso)
  1306. Fl.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  1307. Fl.velocity = rleg.CFrame.lookVector*350
  1308. wait(0.1)
  1309. Fl:remove()
  1310. end
  1311. end)
  1312. for i = 1,20 do
  1313. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(7.6,1,0) * CFrame.Angles(-0.5,0,0),.3)
  1314. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-7.6,1,0) * CFrame.Angles(0.5,0,0),.3)
  1315. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,7.5,0) * CFrame.Angles(0,0,0),.3)
  1316. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(0.5,0,0),.3)
  1317. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-2.5, -8.8, 2) *CFrame.Angles(-0.5,0,0),.3)
  1318. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(2.5, -7.6, -1.2) * CFrame.Angles(1.5,0,0),.3)
  1319. if Debounces.on == false then break end
  1320. wait()
  1321. end
  1322. if Debounces.CanAttack == false then
  1323. Debounces.CanAttack = true
  1324. Debounces.on = false
  1325. Debounces.NoIdl = false
  1326. HitBox:remove()
  1327. end
  1328. end
  1329. end
  1330. end)
  1331. ----------------------------------------------------
  1332. mouse.KeyDown:connect(function(key)
  1333. if string.byte(key) == 48 then
  1334. char.Humanoid.WalkSpeed = 80
  1335. end
  1336. end)
  1337. mouse.KeyUp:connect(function(key)
  1338. if string.byte(key) == 48 then
  1339. char.Humanoid.WalkSpeed = 28
  1340. end
  1341. end)
  1342. ----------------------------------------------------
  1343. local animpose = "Idle"
  1344. local lastanimpose = "Idle"
  1345. local sine = 0
  1346. local change = 1
  1347. local val = 0
  1348. local ffing = false
  1349. ----------------------------------------------------
  1350. local x = Instance.new("Sound", char.Torso)
  1351. x.SoundId = "http://www.roblox.com/asset/?id=273962540"
  1352. x.Looped = true
  1353. x.Volume = 1
  1354. x.Pitch = 1
  1355. local footsteps = false
  1356. -------------------------------
  1357. game:GetService("RunService").RenderStepped:connect(function()
  1358. rarm.BrickColor = ASD
  1359. larm.BrickColor = ASD
  1360. rleg.BrickColor = ASD
  1361. lleg.BrickColor = ASD
  1362. hed.BrickColor = ASD
  1363. torso.BrickColor = ASD
  1364. --[[if char.Humanoid.Jump == true then
  1365. jump = true
  1366. else
  1367. jump = false
  1368. end]]
  1369. char.Humanoid.FreeFalling:connect(function(f)
  1370. if f then
  1371. ffing = true
  1372. else
  1373. ffing = false
  1374. end
  1375. end)
  1376. sine = sine + change
  1377. if jumpn == true then
  1378. animpose = "Jumping"
  1379. elseif ffing == true then
  1380. animpose = "Freefalling"
  1381. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  1382. animpose = "Idle"
  1383. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  1384. animpose = "Walking"
  1385. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  1386. animpose = "Running"
  1387. end
  1388. if animpose ~= lastanimpose then
  1389. sine = 0
  1390. if Debounces.NoIdl == false then
  1391. if animpose == "Idle" then
  1392. for i = 1, 2 do
  1393. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(8,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.2)
  1394. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-8,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.2)
  1395. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,7.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  1396. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  1397. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-3, -8.8, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  1398. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(3, -8.8, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  1399. end
  1400. elseif animpose == "Walking" then
  1401. for i = 1, 2 do
  1402. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(7.3, .9, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(20)), 0.2)
  1403. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-7.3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  1404. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,7.5,0)*CFrame.Angles(math.rad(-8), math.rad(0), math.rad(0)),0.2)
  1405. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  1406. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-2.5, -8.8, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  1407. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(2.5, -8.8, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  1408. end
  1409. elseif animpose == "Running" then
  1410. for i = 1, 2 do
  1411. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(7.8, 0.9, .5) * CFrame.Angles(math.rad(-10), math.rad(-40), math.rad(50)), 0.2)
  1412. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-7.8, 1.2, 0-1*math.cos(sine/4)/2)*CFrame.Angles(math.rad(50-80*math.cos(sine/8)/2), math.rad(0), math.rad(0-70*math.cos(sine/8)/2)), 0.2)
  1413. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,7.5,0)*CFrame.Angles(math.rad(6+8*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  1414. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+4*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  1415. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-2.5, -8.8-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  1416. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(2.5, -8.8+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  1417. end
  1418. wait()
  1419. end
  1420. else
  1421. end
  1422. end
  1423. lastanimpose = animpose
  1424. if Debounces.NoIdl == false then
  1425. if animpose == "Idle" then
  1426. if stanceToggle == "Normal" then
  1427. change = 0.5
  1428. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(8,1,0)*CFrame.new(0,0-.3*math.sin(tick()*1),0)*CFrame.Angles(0,0,0)*CFrame.Angles(0,0,0.3),.2)
  1429. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-8,1,0)*CFrame.new(0,0-.3*math.sin(tick()*1),0)*CFrame.Angles(0,0,0)*CFrame.Angles(0,0,-0.3),.2)
  1430. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,7.5,-.2)*CFrame.Angles(0-.1*math.sin(tick()*1),0,0)*CFrame.Angles(-0.3,0,0), 0.2)
  1431. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.5, 0) * CFrame.Angles(0, 0, 0), 0.2)
  1432. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-3, -8.8, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  1433. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(3, -8.8, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  1434. elseif stanceToggle == "Sitting" then
  1435. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(100-1*math.cos(sine/14)), math.rad(0), math.rad(20)), 0.2)
  1436. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2, .9, -1)*CFrame.Angles(math.rad(78+1*math.cos(sine/14)), math.rad(0), math.rad(50)), 0.2)
  1437. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.3) * CFrame.Angles(math.rad(-14+1*math.cos(sine/14)), math.rad(0), math.rad(0)),0.2)
  1438. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(-10+1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
  1439. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10-1*math.cos(sine/14)), 0, 0), 0.2)
  1440. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-50-1*math.cos(sine/14)), 0, 0), 0.2)
  1441. end
  1442. elseif animpose == "Walking" then
  1443. if stanceToggle == "Normal" then
  1444. change = 1
  1445. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(7.6,0.8,0)*CFrame.Angles(0-.2*math.sin(tick()*2.5),0,0.2),.3)
  1446. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-7.6,0.8,0)*CFrame.Angles(0+.2*math.sin(tick()*2.5),0,-0.2),.3)
  1447. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,7.5,0)*CFrame.Angles(-0.2,0,0),.3)
  1448. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0,-1.8,0)*CFrame.new(0,0-.1*math.sin(tick()*2),0)*CFrame.Angles(0,0,0),.3)
  1449. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-2.5, -8.8-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + -math.sin(sine/14)/2.3, 0, 0), .4)
  1450. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(2.5, -8.8+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + math.sin(sine/14)/2.3, 0, 0), .4)
  1451. end
  1452. elseif animpose == "Running" then
  1453. change = 1
  1454. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(7.7,0.5,0)*CFrame.Angles(0-.5*math.sin(tick()*7),0,0),.3)
  1455. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-7.7,0.5,0)*CFrame.Angles(0+.5*math.sin(tick()*7),0,0),.3)
  1456. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,7.5,0)*CFrame.Angles(math.rad(6+6*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  1457. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  1458. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-2.5, -8.8-0.80*math.cos(sine/6)/2.4, -.15 + math.sin(sine/6)/1.5) * CFrame.Angles(math.rad(-10) + -math.sin(sine/6)/1.7, 0, 0), .4)
  1459. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(2.5, -8.8+0.80*math.cos(sine/6)/2.4, -.15 + -math.sin(sine/6)/1.5) * CFrame.Angles(math.rad(-10) + math.sin(sine/6)/1.7, 0, 0), .4)
  1460. end
  1461. end
  1462. if animpose == "Walking" then
  1463. if footsteps == false then
  1464. x:Play()
  1465. footsteps = true
  1466. end
  1467. x.Pitch = 1.1
  1468. elseif animpose == "Idle" then
  1469. x:Stop()
  1470. footsteps = false
  1471. elseif animpose == "Running" then
  1472. x.Pitch = 1.2
  1473. if footsteps == false then
  1474. x:Play()
  1475. footsteps = true
  1476. end
  1477. end
  1478. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement