Advertisement
JRKPastesBins

Untitled

Aug 26th, 2017
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 54.29 KB | None | 0 0
  1. ---- https://pastebin.com/raw/UgXfsbYS
  2. ---------------------------------- Super Saiyan Blue ---------------------------------
  3.  
  4.  
  5. Player = game:GetService("Players").LocalPlayer
  6. Character = Player.Character
  7. chara = Character
  8. PlayerGui = Player.PlayerGui
  9. Backpack = Player.Backpack
  10. Torso = Character.Torso
  11. Head = Character.Head
  12. attack = false
  13. Humanoid = Character.Humanoid
  14. LeftArm = Character["Left Arm"]
  15. LeftLeg = Character["Left Leg"]
  16. RightArm = Character["Right Arm"]
  17. RightLeg = Character["Right Leg"]
  18. LS = Torso["Left Shoulder"]
  19. LH = Torso["Left Hip"]
  20. RS = Torso["Right Shoulder"]
  21. RH = Torso["Right Hip"]
  22. Neck = Torso.Neck
  23. f = Instance.new("ForceField",Character)
  24. f.Visible = false
  25. it = Instance.new
  26. vt = Vector3.new
  27. cf = CFrame.new
  28. euler = CFrame.fromEulerAnglesXYZ
  29. angles = CFrame.Angles
  30. necko = cf(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  31. necko2 = cf(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  32. LHC0 = cf(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  33. LHC1 = cf(-0.5, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  34. RHC0 = cf(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  35. RHC1 = cf(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  36. RootPart = Character.HumanoidRootPart
  37. RootJoint = RootPart.RootJoint
  38. RootCF = euler(-1.57, 0, 3.14)
  39. attack = false
  40. attackdebounce = false
  41. MMouse = nil
  42. combo = 0
  43. local hitfloor, posfloor = nil, nil
  44. local idle = 0
  45. local Anim = "Idle"
  46. local Effects = {}
  47. local Weapon = {}
  48. local Welds = {}
  49. local arcorb = false
  50. local decreaseatk = 0
  51. local decreasedef = 0
  52. local decreasemvmt = 0
  53. local Obelisks = {}
  54. local maxobelisks = 1
  55. local manaregain = 8
  56. local passivenum = 30
  57. local p = game.Players.LocalPlayer
  58. --if p.Name~='UniversalDespair' and p.Name~='hasang1' then p.Character:Destroy() script:Destroy() return end
  59. local char = p.Character
  60. local mouse = p:GetMouse()
  61. local larm = char["Left Arm"]
  62. local rarm = char["Right Arm"]
  63. local lleg = char["Left Leg"]
  64. local rleg = char["Right Leg"]
  65. local hed = char.Head
  66. local torso = char.Torso
  67. local hum = char.Humanoid
  68. local cam = game.Workspace.CurrentCamera
  69. local root = char.HumanoidRootPart
  70. local deb = false
  71. local shot = 0
  72. local debris=game:service"Debris"
  73. local l = game:GetService("Lighting")
  74. local rs = game:GetService("RunService").RenderStepped
  75. ptz = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  76. local Mouse = Player:GetMouse()
  77. local Create = LoadLibrary("RbxUtility").Create
  78. math.randomseed(os.time())
  79. local eColors={'Toothpaste','Really black'}
  80. hum.WalkSpeed = 5
  81.  
  82.  
  83.  
  84.  
  85. Debounces = {
  86. CanAttack = true;
  87. NoIdl = false;
  88. Slashing = false;
  89. Slashed = false;
  90. RPunch = false;
  91. RPunched = false;
  92. LPunch = false;
  93. LPunched = false;
  94. }
  95. local Touche = {char.Name, }
  96.  
  97. function NoOutline(Part)
  98. Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
  99. end
  100. function lerp(a, b, t) -- Linear interpolation
  101. return a + (b - a)*t
  102. end
  103. function clerp(a, b, t) -- Linear interpolation
  104. return a:lerp(b,t)
  105. end
  106.  
  107. function slerp(a, b, t) --Spherical interpolation
  108. dot = a:Dot(b)
  109. if dot > 0.99999 or dot < -0.99999 then
  110. return t <= 0.5 and a or b
  111. else
  112. r = math.acos(dot)
  113. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  114. end
  115. end
  116.  
  117. function matrixInterpolate(a, b, t)
  118. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  119. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  120. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  121. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  122. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  123. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  124. local t = v1:Dot(v2)
  125. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  126. return CFrame.new()
  127. end
  128. return CFrame.new(
  129. v0.x, v0.y, v0.z,
  130. v1.x, v1.y, v1.z,
  131. v2.x, v2.y, v2.z,
  132. v3.x, v3.y, v3.z)
  133. end
  134. ----------------------------------------------------
  135. function genWeld(a,b)
  136. local w = Instance.new("Weld",a)
  137. w.Part0 = a
  138. w.Part1 = b
  139. return w
  140. end
  141. function weld(a, b)
  142. local weld = Instance.new("Weld")
  143. weld.Name = "W"
  144. weld.Part0 = a
  145. weld.Part1 = b
  146. weld.C0 = a.CFrame:inverse() * b.CFrame
  147. weld.Parent = a
  148. return weld;
  149. end
  150. ----------------------------------------------------
  151. function Lerp(c1,c2,al)
  152. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  153. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  154. for i,v in pairs(com1) do
  155. com1[i] = v+(com2[i]-v)*al
  156. end
  157. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  158. end
  159. ----------------------------------------------------
  160. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  161. local wld = Instance.new("Weld", wp1)
  162. wld.Part0 = wp0
  163. wld.Part1 = wp1
  164. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  165. end
  166. ----------------------------------------------------
  167. function weld5(part0, part1, c0, c1)
  168. weeld=Instance.new("Weld", part0)
  169. weeld.Part0=part0
  170. weeld.Part1=part1
  171. weeld.C0=c0
  172. weeld.C1=c1
  173. return weeld
  174. end
  175. ----------------------------------------------------
  176. function HasntTouched(plrname)
  177. local ret = true
  178. for _, v in pairs(Touche) do
  179. if v == plrname then
  180. ret = false
  181. end
  182. end
  183. return ret
  184. end
  185. ----------------------------------------------------
  186. newWeld(torso, larm, -1.5, 0.5, 0)
  187. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  188. newWeld(torso, rarm, 1.5, 0.5, 0)
  189. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  190. newWeld(torso, hed, 0, 1.5, 0)
  191. newWeld(torso, lleg, -0.5, -1, 0)
  192. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  193. newWeld(torso, rleg, 0.5, -1, 0)
  194. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  195. newWeld(root, torso, 0, -1, 0)
  196. torso.Weld.C1 = CFrame.new(0, -1, 0)
  197. ----------------------------------------------------
  198.  
  199.  
  200.  
  201.  
  202.  
  203.  
  204.  
  205.  
  206.  
  207.  
  208.  
  209.  
  210.  
  211.  
  212.  
  213.  
  214. CV="Mulberry"
  215.  
  216. local txt = Instance.new("BillboardGui", Character)
  217. txt.Adornee = Character .Head
  218. txt.Name = "_status"
  219. txt.Size = UDim2.new(2, 0, 1.2, 0)
  220. txt.StudsOffset = Vector3.new(-9, 11, 0)
  221. local text = Instance.new("TextLabel", txt)
  222. text.Size = UDim2.new(10, 0, 7, 0)
  223. text.FontSize = "Size24"
  224. text.TextScaled = true
  225. text.TextTransparency = 0
  226. text.BackgroundTransparency = 1
  227. text.TextTransparency = 0
  228. text.TextStrokeTransparency = 0
  229. text.Font = "Antique"
  230. text.TextStrokeColor3 = Color3.new(148,0,211)
  231.  
  232. v=Instance.new("Part")
  233. v.Name = "ColorBrick"
  234. v.Parent=Player.Character
  235. v.FormFactor="Symmetric"
  236. v.Anchored=true
  237. v.CanCollide=false
  238. v.BottomSurface="Smooth"
  239. v.TopSurface="Smooth"
  240. v.Size=Vector3.new(10,5,3)
  241. v.Transparency=1
  242. v.CFrame=Character.Torso.CFrame
  243. v.BrickColor=BrickColor.new(CV)
  244. v.Transparency=1
  245. text.TextColor3 = Color3.new(0,0,0)
  246. v.Shape="Block"
  247. text.Text = "Super Sayian Violetto"
  248.  
  249.  
  250.  
  251.  
  252.  
  253.  
  254. Player:ClearCharacterAppearance()
  255. wait(0.1)
  256. Player.Character.Head.BrickColor = BrickColor.new("Bright violet")
  257. Player.Character.Torso.BrickColor = BrickColor.new("Bright violet")
  258. Player.Character["Right Arm"].BrickColor = BrickColor.new("Bright violet")
  259. Player.Character["Right Leg"].BrickColor = BrickColor.new("Bright violet")
  260. Player.Character["Left Leg"].BrickColor = BrickColor.new("Bright violet")
  261. Player.Character["Left Arm"].BrickColor = BrickColor.new("Bright violet")
  262. Player.Character.Head.face:Destroy()
  263.  
  264.  
  265.  
  266.  
  267.  
  268.  
  269.  
  270. local selectionBoxOfTorso = Instance.new("SelectionBox",Torso)
  271. selectionBoxOfTorso.Adornee = Torso
  272. selectionBoxOfTorso.Color = BrickColor.new("Dark indigo")
  273. selectionBoxOfTorso.LineThickness = 0.01
  274. selectionBoxOfTorso.Transparency = 0
  275.  
  276. local selectionBoxOfRightArm = Instance.new("SelectionBox",Character["Right Arm"])
  277. selectionBoxOfRightArm.Adornee = Character["Right Arm"]
  278. selectionBoxOfRightArm.Color = BrickColor.new("Dark indigo")
  279. selectionBoxOfRightArm.LineThickness = 0.01
  280. selectionBoxOfRightArm.Transparency = 0
  281.  
  282. local selectionBoxOfRightLeg = Instance.new("SelectionBox",Character["Right Leg"])
  283. selectionBoxOfRightLeg.Adornee = Character["Right Leg"]
  284. selectionBoxOfRightLeg.Color = BrickColor.new("Dark indigo")
  285. selectionBoxOfRightLeg.LineThickness = 0.01
  286. selectionBoxOfRightLeg.Transparency = 0
  287.  
  288. local selectionBoxOfLeftArm = Instance.new("SelectionBox",Character["Left Arm"])
  289. selectionBoxOfLeftArm.Adornee = Character["Left Arm"]
  290. selectionBoxOfLeftArm.Color = BrickColor.new("Dark indigo")
  291. selectionBoxOfLeftArm.LineThickness = 0.01
  292. selectionBoxOfLeftArm.Transparency = 0
  293.  
  294. local selectionBoxOfLeftLeg = Instance.new("SelectionBox",Character["Left Leg"])
  295. selectionBoxOfLeftLeg.Adornee = Character["Left Leg"]
  296. selectionBoxOfLeftLeg.Color = BrickColor.new("Dark indigo")
  297. selectionBoxOfLeftLeg.LineThickness = 0.01
  298. selectionBoxOfLeftLeg.Transparency = 0
  299.  
  300.  
  301. LightOnBody = Instance.new("PointLight", Head)
  302. LightOnBody.Brightness = 3000
  303. LightOnBody.Range = 20
  304. LightOnBody.Color = Color3.new(0, 255, 255)
  305.  
  306.  
  307.  
  308.  
  309. local TBlast, TBMesh = Instance.new("Part"), Instance.new("SpecialMesh")
  310. TBlast.BrickColor = BrickColor.new("Toothpaste")
  311. TBlast.Transparency = 1
  312. TBlast.Anchored = true
  313. TBlast.CanCollide = false
  314. TBlast.CFrame = root.CFrame
  315. TBlast.Size = Vector3.new(2,2,2)
  316. TBMesh.Parent = TBlast
  317. TBMesh.MeshType = "Sphere"
  318. game.Lighting.Brightness = 0
  319.  
  320.  
  321.  
  322.  
  323.  
  324.  
  325.  
  326.  
  327.  
  328.  
  329.  
  330.  
  331.  
  332.  
  333. local Model = Instance.new("Model")
  334. Model.Name = "Hair"
  335. p1 = Instance.new("Part", Model)
  336. p1.BrickColor = BrickColor.new("Teal")
  337. p1.Transparency = 1
  338. p1.FormFactor = Enum.FormFactor.Symmetric
  339. p1.Size = Vector3.new(1, 1, 1)
  340. p1.CFrame = CFrame.new(-2.49043155, 8.24595642, -3.40113306, -5.48362732e-006, -0.978699088, 0.205299795, 3.27825546e-007, -0.205299854, -0.978699148, 1, -5.28991222e-006, 1.48639083e-006)
  341. p1.CanCollide = false
  342. p1.Locked = true
  343. p1.BottomSurface = Enum.SurfaceType.Smooth
  344. p1.TopSurface = Enum.SurfaceType.Smooth
  345. b1 = Instance.new("SpecialMesh", p1)
  346. b1.MeshId = "http://www.roblox.com/asset/?id=12212520"
  347. b1.TextureId = ""
  348. b1.MeshType = Enum.MeshType.FileMesh
  349. b1.Name = "Mesh"
  350. b1.VertexColor = Vector3.new(0, 0, 0)
  351. b1.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  352. p2 = Instance.new("Part", Model)
  353. p2.BrickColor = BrickColor.new("Pastel brown")
  354. p2.Transparency = 1
  355. p2.Name = "Head"
  356. p2.FormFactor = Enum.FormFactor.Symmetric
  357. p2.Size = Vector3.new(2, 1, 1)
  358. p2.CFrame = CFrame.new(-1.70008016, 8.14794922, -3.40013027, 4.24603923e-006, 7.4505806e-008, -1, -1.50268988e-007, 1, 1.49011612e-008, 1.00000012, 6.79109462e-008, 4.23316806e-006)
  359. p2.CanCollide = false
  360. p2.Locked = true
  361. p2.TopSurface = Enum.SurfaceType.Smooth
  362. b2 = Instance.new("SpecialMesh", p2)
  363. b2.MeshType = Enum.MeshType.Head
  364. b2.Name = "Mesh"
  365. b2.Scale = Vector3.new(1.25, 1.25, 1.25)
  366. p3 = Instance.new("Part", Model)
  367. p3.BrickColor = BrickColor.new("Teal")
  368. p3.Transparency = 1
  369. p3.FormFactor = Enum.FormFactor.Symmetric
  370. p3.Size = Vector3.new(2, 2, 2)
  371. p3.CFrame = CFrame.new(-1.70003617, 8.71796131, -3.4000442, 2.57710985e-006, 6.95607483e-008, -1.00000012, -1.20466638e-007, 1, 9.95640903e-009, 1.00000024, 3.81086345e-008, 2.56423846e-006)
  372. p3.CanCollide = false
  373. p3.Locked = true
  374. p3.BottomSurface = Enum.SurfaceType.Smooth
  375. p3.TopSurface = Enum.SurfaceType.Smooth
  376. b3 = Instance.new("SpecialMesh", p3)
  377. b3.MeshId = "http://www.roblox.com/asset/?id=16627529"
  378. b3.TextureId = ""
  379. b3.MeshType = Enum.MeshType.FileMesh
  380. b3.Name = "Mesh"
  381. b3.VertexColor = Vector3.new(0, 0, 0)
  382. b3.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  383. p4 = Instance.new("Part", Model)
  384. p4.BrickColor = BrickColor.new("Teal")
  385. p4.FormFactor = Enum.FormFactor.Symmetric
  386. p4.Size = Vector3.new(1, 1, 1)
  387. p4.Transparency = 1
  388. p4.CFrame = CFrame.new(-1.77981007, 8.84795475, -3.40016508, 5.79576135e-006, 7.9450956e-008, -1.00000012, -1.80071311e-007, 1, 1.98458743e-008, 1.00000024, 9.77132402e-008, 5.78289018e-006)
  389. p4.CanCollide = false
  390. p4.Locked = true
  391. p4.BottomSurface = Enum.SurfaceType.Smooth
  392. p4.TopSurface = Enum.SurfaceType.Smooth
  393. b4 = Instance.new("SpecialMesh", p4)
  394. b4.MeshId = "http://www.roblox.com/asset/?id=19326912"
  395. b4.TextureId = ""
  396. b4.MeshType = Enum.MeshType.FileMesh
  397. b4.Name = "Mesh"
  398. b4.VertexColor = Vector3.new(0, 0, 0)
  399. p5 = Instance.new("Part", Model)
  400. p5.BrickColor = BrickColor.new("Teal")
  401. p5.FormFactor = Enum.FormFactor.Symmetric
  402. p5.Size = Vector3.new(1, 1, 1)
  403. p5.CFrame = CFrame.new(-1.70003772, 8.46796131, -3.40004301, -3.43517968e-007, 2.98088111e-007, -1, -1.00421907e-007, 1, 2.38484063e-007, 1.00000012, 1.80640072e-008, -3.56389592e-007)
  404. p5.CanCollide = false
  405. p5.Transparency = 1
  406. p5.Locked = true
  407. p5.BottomSurface = Enum.SurfaceType.Smooth
  408. p5.TopSurface = Enum.SurfaceType.Smooth
  409. b5 = Instance.new("SpecialMesh", p5)
  410. b5.MeshId = "http://www.roblox.com/asset/?id=45916884"
  411. b5.TextureId = ""
  412. b5.MeshType = Enum.MeshType.FileMesh
  413. b5.Name = "Mesh"
  414. b5.VertexColor = Vector3.new(0, 0, 0)
  415. b5.Scale = Vector3.new(1, 0.899999976, 1)
  416. p6 = Instance.new("Part", Model)
  417. p6.BrickColor = BrickColor.new("Teal")
  418. p6.FormFactor = Enum.FormFactor.Symmetric
  419. p6.Transparency = 1
  420. p6.Size = Vector3.new(1, 1, 1)
  421. p6.CFrame = CFrame.new(-1.89967656, 8.58795834, -3.44990659, -5.81936433e-007, 5.36502284e-007, -0.99999994, -1.3998249e-007, 1, 4.76898265e-007, 1, 5.76247672e-008, -5.94808171e-007)
  422. p6.CanCollide = false
  423. p6.Locked = true
  424. p6.BottomSurface = Enum.SurfaceType.Smooth
  425. p6.TopSurface = Enum.SurfaceType.Smooth
  426. b6 = Instance.new("SpecialMesh", p6)
  427. b6.MeshId = "http://www.roblox.com/asset/?id=62246019"
  428. b6.TextureId = ""
  429. b6.MeshType = Enum.MeshType.FileMesh
  430. b6.Name = "Mesh"
  431. b6.VertexColor = Vector3.new(0, 0, 0)
  432. p7 = Instance.new("Part", Model)
  433. p7.BrickColor = BrickColor.new("Teal")
  434. p7.FormFactor = Enum.FormFactor.Symmetric
  435. p7.Transparency = 1
  436. p7.Size = Vector3.new(1, 1, 1)
  437. p7.CFrame = CFrame.new(-1.89918542, 8.31796837, -3.50097537, -4.62727087e-007, 5.36502228e-007, -0.999999881, -1.39982518e-007, 1, 4.76898208e-007, 0.99999994, 5.76247459e-008, -4.75598938e-007)
  438. p7.CanCollide = false
  439. p7.Locked = true
  440. p7.BottomSurface = Enum.SurfaceType.Smooth
  441. p7.TopSurface = Enum.SurfaceType.Smooth
  442. b7 = Instance.new("SpecialMesh", p7)
  443. b7.MeshId = "http://www.roblox.com/asset/?id=76056263"
  444. b7.TextureId = ""
  445. b7.MeshType = Enum.MeshType.FileMesh
  446. b7.Name = "Mesh"
  447. b7.VertexColor = Vector3.new(0, 0, 0)
  448. p8 = Instance.new("Part", Model)
  449. p8.BrickColor = BrickColor.new("Bright bluish green")
  450. p8.FormFactor = Enum.FormFactor.Symmetric
  451. p8.Size = Vector3.new(1, 1, 1)
  452. p8.CFrame = CFrame.new(-2.62433338, 7.66397905, -3.4010179, -1.17798254e-006, -0.805111349, 0.593123376, -2.5008859e-007, -0.593123615, -0.805111527, 0.999999881, -9.58229293e-007, 4.4941558e-007)
  453. p8.CanCollide = false
  454. p8.Transparency = 1
  455. p8.Locked = true
  456. p8.BottomSurface = Enum.SurfaceType.Smooth
  457. p8.TopSurface = Enum.SurfaceType.Smooth
  458. b8 = Instance.new("SpecialMesh", p8)
  459. b8.MeshId = "http://www.roblox.com/asset/?id=12212520"
  460. b8.TextureId = ""
  461. b8.MeshType = Enum.MeshType.FileMesh
  462. b8.Name = "Mesh"
  463. b8.VertexColor = Vector3.new(0, 0, 0)
  464. b8.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  465. p9 = Instance.new("Part", Model)
  466. p9.BrickColor = BrickColor.new("Teal")
  467. p9.FormFactor = Enum.FormFactor.Symmetric
  468. p9.Size = Vector3.new(2, 1, 2)
  469. p9.Transparency = 1
  470. p9.CFrame = CFrame.new(-1.76505995, 8.56096649, -3.40065479, -9.73168881e-007, -0.0995008349, -0.995037436, -1.70322267e-007, 0.995037675, -0.0995009243, 1, 1.13823972e-007, -6.80968242e-007)
  471. p9.CanCollide = false
  472. p9.Locked = true
  473. p9.BottomSurface = Enum.SurfaceType.Smooth
  474. p9.TopSurface = Enum.SurfaceType.Smooth
  475. b9 = Instance.new("SpecialMesh", p9)
  476. b9.MeshId = "http://www.roblox.com/asset/?id=12259089"
  477. b9.TextureId = ""
  478. b9.MeshType = Enum.MeshType.FileMesh
  479. b9.Name = "Mesh"
  480. b9.VertexColor = Vector3.new(0, 0, 0)
  481. b9.Scale = Vector3.new(1.01999998, 1.04999995, 1.04999995)
  482. p10 = Instance.new("Part", Model)
  483. p10.BrickColor = BrickColor.new("Teal")
  484. p10.Transparency = 1
  485. p10.FormFactor = Enum.FormFactor.Symmetric
  486. p10.Size = Vector3.new(1, 1, 1)
  487. p10.CFrame = CFrame.new(-2.0207715, 9.06097031, -3.39961624, -1.10652763e-006, -0.683569431, -0.729885519, -2.85231891e-007, 0.729885638, -0.68356967, 1.00000012, -3.22293062e-007, -8.40051371e-007)
  488. p10.CanCollide = false
  489. p10.Locked = true
  490. p10.BottomSurface = Enum.SurfaceType.Smooth
  491. p10.TopSurface = Enum.SurfaceType.Smooth
  492. b10 = Instance.new("SpecialMesh", p10)
  493. b10.MeshId = "http://www.roblox.com/asset/?id=12212520"
  494. b10.TextureId = ""
  495. b10.MeshType = Enum.MeshType.FileMesh
  496. b10.Name = "Mesh"
  497. b10.VertexColor = Vector3.new(0, 0, 0)
  498. b10.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  499. p11 = Instance.new("Part", Model)
  500. p11.BrickColor = BrickColor.new("Teal")
  501. p11.Transparency = 1
  502. p11.FormFactor = Enum.FormFactor.Symmetric
  503. p11.Size = Vector3.new(1, 1, 1)
  504. p11.CFrame = CFrame.new(-2.16468835, 8.78595829, -3.40089417, -1.41617738e-006, -0.989475727, -0.144699216, -4.36450762e-007, 0.144699067, -0.989476085, 1.00000024, -9.47996682e-007, -7.38401468e-007)
  505. p11.CanCollide = false
  506. p11.Locked = true
  507. p11.BottomSurface = Enum.SurfaceType.Smooth
  508. p11.TopSurface = Enum.SurfaceType.Smooth
  509. b11 = Instance.new("SpecialMesh", p11)
  510. b11.MeshId = "http://www.roblox.com/asset/?id=12212520"
  511. b11.TextureId = ""
  512. b11.MeshType = Enum.MeshType.FileMesh
  513. b11.Name = "Mesh"
  514. b11.VertexColor = Vector3.new(0, 0, 0)
  515. b11.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  516. p12 = Instance.new("Part", Model)
  517. p12.BrickColor = BrickColor.new("Bright bluish green")
  518. p12.FormFactor = Enum.FormFactor.Custom
  519. p12.Size = Vector3.new(1, 3.5, 1)
  520. p12.CFrame = CFrame.new(-3.74216318, 6.74288082, -3.40101933, -1.20476273e-006, -0.553697288, 0.832718134, -3.31002866e-007, -0.832718611, -0.553697169, 1.00000036, -8.7345768e-007, 3.69213154e-007)
  521. p12.CanCollide = false
  522. p12.Transparency = 1
  523. p12.Locked = true
  524. p12.BottomSurface = Enum.SurfaceType.Smooth
  525. p12.TopSurface = Enum.SurfaceType.Smooth
  526. b12 = Instance.new("SpecialMesh", p12)
  527. b12.MeshId = "http://www.roblox.com/asset/?id=12212520"
  528. b12.TextureId = ""
  529. b12.MeshType = Enum.MeshType.FileMesh
  530. b12.Name = "Mesh"
  531. b12.VertexColor = Vector3.new(0, 0, 0)
  532. b12.Scale = Vector3.new(1, 3, 1.29999995)
  533. p13 = Instance.new("Part", Model)
  534. p13.Transparency = 1
  535. p13.BrickColor = BrickColor.new("Teal")
  536. p13.FormFactor = Enum.FormFactor.Custom
  537. p13.Size = Vector3.new(1, 2, 1)
  538. p13.CFrame = CFrame.new(-3.32689047, 6.86741829, -3.40101862, -9.81709945e-007, -0.319307148, 0.947651446, -5.6545997e-007, -0.947651923, -0.31930691, 1.00000048, -8.39551717e-007, 1.79318391e-007)
  539. p13.CanCollide = false
  540. p13.Locked = true
  541. p13.BottomSurface = Enum.SurfaceType.Smooth
  542. p13.TopSurface = Enum.SurfaceType.Smooth
  543. b13 = Instance.new("SpecialMesh", p13)
  544. b13.MeshId = "http://www.roblox.com/asset/?id=12212520"
  545. b13.TextureId = ""
  546. b13.MeshType = Enum.MeshType.FileMesh
  547. b13.Name = "Mesh"
  548. b13.VertexColor = Vector3.new(0, 0, 0)
  549. b13.Scale = Vector3.new(1, 3, 1.29999995)
  550. p14 = Instance.new("Part", Model)
  551. p14.Transparency = 1
  552. p14.BrickColor = BrickColor.new("Teal")
  553. p14.FormFactor = Enum.FormFactor.Custom
  554. p14.Size = Vector3.new(1, 2, 1)
  555. p14.CFrame = CFrame.new(-3.02689028, 7.96740961, -3.40101862, -1.33478545e-006, -0.750354111, 0.661036491, -5.20037702e-008, -0.661037207, -0.750354171, 1.0000006, -6.31296757e-007, 2.01137496e-007)
  556. p14.CanCollide = false
  557. p14.Locked = true
  558. p14.BottomSurface = Enum.SurfaceType.Smooth
  559. p14.TopSurface = Enum.SurfaceType.Smooth
  560. b14 = Instance.new("SpecialMesh", p14)
  561. b14.MeshId = "http://www.roblox.com/asset/?id=12212520"
  562. b14.TextureId = ""
  563. b14.MeshType = Enum.MeshType.FileMesh
  564. b14.Name = "Mesh"
  565. b14.VertexColor = Vector3.new(0, 0, 0)
  566. b14.Scale = Vector3.new(1, 3, 1.29999995)
  567. p15 = Instance.new("Part", Model)
  568. p15.BrickColor = BrickColor.new("Bright bluish green")
  569. p15.FormFactor = Enum.FormFactor.Custom
  570. p15.Size = Vector3.new(1, 2.5, 1)
  571. p15.CFrame = CFrame.new(-2.96531463, 7.75924349, -2.90101862, 0.342019022, -0.520305753, 0.782499552, -1.1920929e-007, -0.832718909, -0.553697407, 0.939693451, 0.189374983, -0.284806281)
  572. p15.CanCollide = false
  573. p15.Transparency = 1
  574. p15.Locked = true
  575. p15.BottomSurface = Enum.SurfaceType.Smooth
  576. p15.TopSurface = Enum.SurfaceType.Smooth
  577. b15 = Instance.new("SpecialMesh", p15)
  578. b15.MeshId = "http://www.roblox.com/asset/?id=12212520"
  579. b15.TextureId = ""
  580. b15.MeshType = Enum.MeshType.FileMesh
  581. b15.Name = "Mesh"
  582. b15.VertexColor = Vector3.new(0, 0, 0)
  583. b15.Scale = Vector3.new(1, 3, 1.29999995)
  584. p16 = Instance.new("Part", Model)
  585. p16.BrickColor = BrickColor.new("Teal")
  586. p16.FormFactor = Enum.FormFactor.Custom
  587. p16.Size = Vector3.new(1, 2.5, 1)
  588. p16.Transparency = 1
  589. p16.CFrame = CFrame.new(-2.96531439, 7.75924349, -3.80101967, -0.258820295, -0.534830391, 0.804343879, -1.78813934e-007, -0.832718968, -0.553697228, 0.96592629, -0.143308073, 0.215523779)
  590. p16.CanCollide = false
  591. p16.Locked = true
  592. p16.BottomSurface = Enum.SurfaceType.Smooth
  593. p16.TopSurface = Enum.SurfaceType.Smooth
  594. b16 = Instance.new("SpecialMesh", p16)
  595. b16.MeshId = "http://www.roblox.com/asset/?id=12212520"
  596. b16.TextureId = ""
  597. b16.MeshType = Enum.MeshType.FileMesh
  598. b16.Name = "Mesh"
  599. b16.VertexColor = Vector3.new(0, 0, 0)
  600. b16.Scale = Vector3.new(1, 3, 1.29999995)
  601. p17 = Instance.new("Part", Model)
  602. p17.BrickColor = BrickColor.new("Bright bluish green")
  603. p17.Transparency = 1
  604. p17.FormFactor = Enum.FormFactor.Custom
  605. p17.Size = Vector3.new(1, 2.4000001, 1)
  606. p17.CFrame = CFrame.new(-2.69075108, 7.07788849, -3.40101933, -1.13248825e-006, -0.319307148, 0.947651625, -1.1920929e-006, -0.947652161, -0.319306791, 1.0000006, -1.54972076e-006, 1.04308128e-007)
  607. p17.CanCollide = false
  608. p17.Locked = true
  609. p17.BottomSurface = Enum.SurfaceType.Smooth
  610. p17.TopSurface = Enum.SurfaceType.Smooth
  611. b17 = Instance.new("SpecialMesh", p17)
  612. b17.MeshId = "http://www.roblox.com/asset/?id=12212520"
  613. b17.TextureId = ""
  614. b17.MeshType = Enum.MeshType.FileMesh
  615. b17.Name = "Mesh"
  616. b17.VertexColor = Vector3.new(0, 0, 0)
  617. b17.Scale = Vector3.new(1, 3, 1.29999995)
  618. p18 = Instance.new("Part", Model)
  619. p18.BrickColor = BrickColor.new("Teal")
  620. p18.FormFactor = Enum.FormFactor.Custom
  621. p18.Size = Vector3.new(2, 2, 2)
  622. p18.Transparency = 1
  623. p18.CFrame = CFrame.new(-1.70003319, 8.71796608, -3.40004444, -2.37434961e-006, 1.78813934e-007, 1.00000036, -2.35242567e-007, 1.00000072, 3.27825546e-007, -1.0000006, 7.95440158e-009, -2.91315405e-006)
  624. p18.CanCollide = false
  625. p18.Locked = true
  626. p18.BottomSurface = Enum.SurfaceType.Smooth
  627. p18.TopSurface = Enum.SurfaceType.Smooth
  628. b18 = Instance.new("SpecialMesh", p18)
  629. b18.MeshId = "http://www.roblox.com/asset/?id=16627529"
  630. b18.TextureId = ""
  631. b18.MeshType = Enum.MeshType.FileMesh
  632. b18.Name = "Mesh"
  633. b18.VertexColor = Vector3.new(0, 0, 0)
  634. b18.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  635. w1 = Instance.new("Weld", p1)
  636. w1.Name = "Head_Weld"
  637. w1.Part0 = p1
  638. w1.C0 = CFrame.new(3.40111661, -0.744508088, 8.58160019, -5.48362732e-006, 3.27825546e-007, 1, -0.978699088, -0.205299854, -5.30481339e-006, 0.205299824, -0.978699148, 1.49011612e-006)
  639. w1.Part1 = p2
  640. w1.C1 = CFrame.new(3.40013766, -8.14794827, -1.70006609, 4.23192978e-006, -1.08796726e-007, 1.00000012, 2.9664772e-008, 1, 1.08796598e-007, -1.00000012, 2.96642924e-008, 4.23192978e-006)
  641. w2 = Instance.new("Weld", p2)
  642. w2.Name = "Part_Weld"
  643. w2.Part0 = p2
  644. w2.C0 = CFrame.new(3.40013766, -8.14794827, -1.70006609, 4.23192978e-006, -1.08796726e-007, 1.00000012, 2.9664772e-008, 1, 1.08796598e-007, -1.00000012, 2.96642924e-008, 4.23192978e-006)
  645. w2.Part1 = p3
  646. w2.C1 = CFrame.new(3.40004802, -8.71796036, -1.70002759, 2.56299973e-006, -7.89943471e-008, 1, 2.47196947e-008, 1, 7.89942831e-008, -1, 2.47194887e-008, 2.56299973e-006)
  647. w3 = Instance.new("Weld", p3)
  648. w3.Name = "Part_Weld"
  649. w3.Part0 = p3
  650. w3.C0 = CFrame.new(3.40004802, -8.71796036, -1.70002759, 2.56299973e-006, -7.89943471e-008, 1, 2.47196947e-008, 1, 7.89942831e-008, -1, 2.47194887e-008, 2.56299973e-006)
  651. w3.Part1 = p4
  652. w3.C1 = CFrame.new(3.40017533, -8.8479538, -1.77979064, 5.78165054e-006, -1.38599077e-007, 1, 3.46098972e-008, 1, 1.38598878e-007, -1, 3.46090907e-008, 5.78165054e-006)
  653. w4 = Instance.new("Weld", p4)
  654. w4.Name = "Part_Weld"
  655. w4.Part0 = p4
  656. w4.C0 = CFrame.new(3.40017533, -8.8479538, -1.77979064, 5.78165054e-006, -1.38599077e-007, 1, 3.46098972e-008, 1, 1.38598878e-007, -1, 3.46090907e-008, 5.78165054e-006)
  657. w4.Part1 = p5
  658. w4.C1 = CFrame.new(3.40004182, -8.46796036, -1.70004117, -3.57627869e-007, -5.89495883e-008, 0.99999994, 2.53247009e-007, 1, 5.89496665e-008, -0.99999994, 2.53247009e-007, -3.57627869e-007)
  659. w5 = Instance.new("Weld", p5)
  660. w5.Name = "Part_Weld"
  661. w5.Part0 = p5
  662. w5.C0 = CFrame.new(3.40004182, -8.46796036, -1.70004117, -3.57627869e-007, -5.89495883e-008, 0.99999994, 2.53247009e-007, 1, 5.89496665e-008, -0.99999994, 2.53247009e-007, -3.57627869e-007)
  663. w5.Part1 = p6
  664. w5.C1 = CFrame.new(3.44990563, -8.58795738, -1.89968324, -5.96046448e-007, -9.85101565e-008, 1, 4.91661183e-007, 1, 9.85104407e-008, -1, 4.9166124e-007, -5.96046448e-007)
  665. w6 = Instance.new("Weld", p6)
  666. w6.Name = "Part_Weld"
  667. w6.Part0 = p6
  668. w6.C0 = CFrame.new(3.44990563, -8.58795738, -1.89968324, -5.96046448e-007, -9.85101565e-008, 1, 4.91661183e-007, 1, 9.85104407e-008, -1, 4.9166124e-007, -5.96046448e-007)
  669. w6.Part1 = p7
  670. w6.C1 = CFrame.new(3.50097466, -8.31796741, -1.89919162, -4.76837158e-007, -9.85101849e-008, 0.99999994, 4.91661126e-007, 1, 9.85104265e-008, -0.99999994, 4.91661183e-007, -4.76837158e-007)
  671. w7 = Instance.new("Weld", p7)
  672. w7.Name = "Part_Weld"
  673. w7.Part0 = p7
  674. w7.C0 = CFrame.new(3.50097466, -8.31796741, -1.89919162, -4.76837158e-007, -9.85101849e-008, 0.99999994, 4.91661126e-007, 1, 9.85104265e-008, -0.99999994, 4.91661183e-007, -4.76837158e-007)
  675. w7.Part1 = p8
  676. w7.C1 = CFrame.new(3.40101647, 2.43280101, 7.72691393, -1.1920929e-006, -2.08616257e-007, 1, -0.805111527, -0.593123555, -9.83476639e-007, 0.593123496, -0.805111527, 4.17232513e-007)
  677. w8 = Instance.new("Weld", p8)
  678. w8.Name = "Part_Weld"
  679. w8.Part0 = p8
  680. w8.C0 = CFrame.new(3.40101647, 2.43280101, 7.72691393, -1.1920929e-006, -2.08616257e-007, 1, -0.805111527, -0.593123555, -9.83476639e-007, 0.593123496, -0.805111527, 4.17232513e-007)
  681. w8.Part1 = p9
  682. w8.C1 = CFrame.new(3.40065455, -8.6941061, -0.904481649, -8.34465027e-007, -1.67638063e-007, 1.00000012, -0.0995008498, 0.995037496, 1.00582838e-007, -0.995037615, -0.0995008498, -8.34465027e-007)
  683. w9 = Instance.new("Weld", p9)
  684. w9.Name = "Part_Weld"
  685. w9.Part0 = p9
  686. w9.C0 = CFrame.new(3.40065455, -8.6941061, -0.904481649, -8.34465027e-007, -1.67638063e-007, 1.00000012, -0.0995008498, 0.995037496, 1.00582838e-007, -0.995037615, -0.0995008498, -8.34465027e-007)
  687. w9.Part1 = p10
  688. w9.C1 = CFrame.new(3.39961672, -7.99480963, 4.71886492, -9.53674316e-007, -2.98023224e-007, 1, -0.683569372, 0.729885519, -4.47034836e-007, -0.729885459, -0.683569431, -9.53674316e-007)
  689. w10 = Instance.new("Weld", p10)
  690. w10.Name = "Part_Weld"
  691. w10.Part0 = p10
  692. w10.C0 = CFrame.new(3.39961672, -7.99480963, 4.71886492, -9.53674316e-007, -2.98023224e-007, 1, -0.683569372, 0.729885519, -4.47034836e-007, -0.729885459, -0.683569431, -9.53674316e-007)
  693. w10.Part1 = p11
  694. w10.C1 = CFrame.new(3.40089583, -3.41323304, 8.38025856, -1.31130219e-006, -4.76837158e-007, 1.00000012, -0.989475787, 0.144699097, -1.07288361e-006, -0.144699246, -0.989475787, -7.15255737e-007)
  695. w11 = Instance.new("Weld", p11)
  696. w11.Name = "Part_Weld"
  697. w11.Part0 = p11
  698. w11.C0 = CFrame.new(3.40089583, -3.41323304, 8.38025856, -1.31130219e-006, -4.76837158e-007, 1.00000012, -0.989475787, 0.144699097, -1.07288361e-006, -0.144699246, -0.989475787, -7.15255737e-007)
  699. w11.Part1 = p12
  700. w11.C1 = CFrame.new(3.40101814, 3.54288888, 6.84968376, -9.53674316e-007, -4.47034836e-007, 1, -0.553697109, -0.832718134, -9.23871994e-007, 0.832718134, -0.553697109, 6.55651093e-007)
  701. w12 = Instance.new("Weld", p12)
  702. w12.Name = "Part_Weld"
  703. w12.Part0 = p12
  704. w12.C0 = CFrame.new(3.40101814, 3.54288888, 6.84968376, -9.53674316e-007, -4.47034836e-007, 1, -0.553697109, -0.832718134, -9.23871994e-007, 0.832718134, -0.553697109, 6.55651093e-007)
  705. w12.Part1 = p13
  706. w12.C1 = CFrame.new(3.40102005, 5.44561195, 5.34554911, -8.34465027e-007, -6.40749931e-007, 1.00000012, -0.319307029, -0.947651505, -8.19563866e-007, 0.947651386, -0.319307029, 3.57627869e-007)
  707. w13 = Instance.new("Weld", p13)
  708. w13.Name = "Part_Weld"
  709. w13.Part0 = p13
  710. w13.C0 = CFrame.new(3.40102005, 5.44561195, 5.34554911, -8.34465027e-007, -6.40749931e-007, 1.00000012, -0.319307029, -0.947651505, -8.19563866e-007, 0.947651386, -0.319307029, 3.57627869e-007)
  711. w13.Part1 = p14
  712. w13.C1 = CFrame.new(3.40101624, 2.99550176, 7.97925997, -9.53674316e-007, -1.49011612e-007, 1, -0.750353813, -0.661036491, -8.64267349e-007, 0.661036491, -0.750353813, 5.36441803e-007)
  713. w14 = Instance.new("Weld", p14)
  714. w14.Name = "Part_Weld"
  715. w14.Part0 = p14
  716. w14.C0 = CFrame.new(3.40101624, 2.99550176, 7.97925997, -9.53674316e-007, -1.49011612e-007, 1, -0.750353813, -0.661036491, -8.64267349e-007, 0.661036491, -0.750353813, 5.36441803e-007)
  717. w14.Part1 = p15
  718. w14.C1 = CFrame.new(3.74026394, 5.46776819, 5.79039907, 0.34201923, -3.27825546e-007, 0.939692974, -0.520305395, -0.832718134, 0.189374775, 0.782499313, -0.553697109, -0.284805775)
  719. w15 = Instance.new("Weld", p15)
  720. w15.Name = "Part_Weld"
  721. w15.Part0 = p15
  722. w15.C0 = CFrame.new(3.74026394, 5.46776819, 5.79039907, 0.34201923, -3.27825546e-007, 0.939692974, -0.520305395, -0.832718134, 0.189374775, 0.782499313, -0.553697109, -0.284805775)
  723. w15.Part1 = p16
  724. w15.C1 = CFrame.new(2.90401983, 4.33060169, 7.50061178, -0.258819938, -2.68220901e-007, 0.965925574, -0.534830093, -0.832718134, -0.143308043, 0.80434382, -0.55369705, 0.215523928)
  725. w16 = Instance.new("Weld", p16)
  726. w16.Name = "Part_Weld"
  727. w16.Part0 = p16
  728. w16.C0 = CFrame.new(2.90401983, 4.33060169, 7.50061178, -0.258819938, -2.68220901e-007, 0.965925574, -0.534830093, -0.832718134, -0.143308043, 0.80434382, -0.55369705, 0.215523928)
  729. w16.Part1 = p17
  730. w16.C1 = CFrame.new(3.4010253, 5.84818506, 4.80991411, -8.56413749e-007, -1.3483392e-006, 1, -0.31930685, -0.947651386, -1.55121427e-006, 0.947651386, -0.31930685, 3.81047698e-007)
  731. w17 = Instance.new("Weld", p17)
  732. w17.Name = "Part_Weld"
  733. w17.Part0 = p17
  734. w17.C0 = CFrame.new(3.4010253, 5.84818506, 4.80991411, -8.56413749e-007, -1.3483392e-006, 1, -0.31930685, -0.947651386, -1.55121427e-006, 0.947651386, -0.31930685, 3.81047698e-007)
  735. w17.Part1 = p18
  736. w17.C1 = CFrame.new(-3.40004683, -8.71796036, 1.70002675, -2.6504224e-006, -7.89943471e-008, -1, -2.47197018e-008, 1, -7.89942831e-008, 1, 2.47194887e-008, -2.6504224e-006)
  737. Model.Parent = char
  738. Model:MakeJoints()
  739.  
  740.  
  741. ----------------------------------------------------
  742. local cor = Instance.new("Part", char.Hair)
  743. cor.Name = "Link"
  744. cor.Locked = true
  745. cor.BottomSurface = 0
  746. cor.CanCollide = false
  747. cor.Size = Vector3.new(1, 9, 1)
  748. cor.Transparency = 1
  749. cor.TopSurface = 0
  750. corw = Instance.new("Weld", cor)
  751. corw.Part0 = hed
  752. corw.Part1 = cor
  753. corw.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  754. corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  755. weld1 = Instance.new("Weld", char.Hair)
  756. weld1.Part0 = cor
  757. weld1.Part1 = char.Hair.Head
  758. weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  759. ----------------------------------------------------betterhair
  760. pr = Instance.new("Part",hed)
  761. pr.BrickColor = BrickColor.new("Dark indigo")
  762. pr.Material = "Neon"
  763. pr.Reflectance = 0.04
  764. pr.Anchored = false
  765. pr.CanCollide = false
  766. pr.Archivable = false
  767. pr.Locked = true
  768. pr.Size = Vector3.new(1,1,1)
  769. prm = Instance.new("SpecialMesh",pr)
  770. prm.MeshType = "FileMesh"
  771. prm.MeshId = "rbxassetid://560718478"
  772. prm.Scale = Vector3.new(6,6,6)
  773. newWeld(hed, pr, 0, 0, 0)
  774. pr.Weld.C1 = CFrame.new(0,-.8,-.43) * CFrame.Angles(0,0,0)
  775. ----------------------------------------------------
  776.  
  777.  
  778.  
  779.  
  780.  
  781.  
  782. local Mus = Instance.new("Sound",Character)
  783. Mus.SoundId = "rbxassetid://292481006"
  784. Mus.Pitch = 1
  785. Mus.Volume = 3
  786. Mus.Looped = true
  787. Mus:Play()
  788.  
  789. local min = Instance.new("Sound",Character)
  790. min.SoundId = "rbxassetid://300208779"
  791. min.Pitch = .71
  792. min.Volume = 10
  793. min.Looped = false
  794.  
  795.  
  796.  
  797.  
  798.  
  799. paly = game.Players.LocalPlayer
  800. paly = game.Players.LocalPlayer
  801. p = game.Players.LocalPlayer
  802. char = paly.Character
  803. vt = Vector3.new
  804. rarm = char["Right Arm"]
  805. larm = char["Left Arm"]
  806. local maincolor = BrickColor.new("Dark indigo")
  807.  
  808. local orb = Instance.new("Part")
  809. orb.Parent = char
  810. orb.Size = Vector3.new(0.5, 0.5, 0.5)
  811. orb.Archivable = true
  812. orb.Transparency = 1
  813. orb.BrickColor = maincolor
  814. orb.Material = "Neon"
  815. orb.CanCollide = false
  816. local weld1 = Instance.new("Weld")
  817. weld1.Parent = rarm
  818. weld1.Part0 = rarm
  819. weld1.Part1 = orb
  820. weld1.C1 = CFrame.new(0, 1.125, 0)
  821. local pt1 = NumberSequenceKeypoint.new(0,0.85,0)
  822. local pt2 = NumberSequenceKeypoint.new(1,0,0)
  823. local effecto = Instance.new("ParticleEmitter",orb)
  824. effecto.LightEmission = 1
  825. effecto.Texture = "http://www.roblox.com/asset/?id=284607870"
  826. effecto.Color = ColorSequence.new(maincolor.Color)
  827. effecto.Rate = 10000
  828. effecto.Lifetime = NumberRange.new(1)
  829. effecto.Size = NumberSequence.new({pt1,pt2})
  830. effecto.Speed = NumberRange.new(0,0)
  831. effecto.RotSpeed = NumberRange.new(100,100)
  832.  
  833. local orbz = Instance.new("Part")
  834. orbz.Parent = char
  835. orbz.Size = Vector3.new(0.5, 0.5, 0.5)
  836. orbz.Archivable = true
  837. orbz.Transparency = 1
  838. orbz.BrickColor = maincolor
  839. orbz.Material = "Neon"
  840. orbz.CanCollide = false
  841. local weldz1 = Instance.new("Weld")
  842. weldz1.Parent = larm
  843. weldz1.Part0 = larm
  844. weldz1.Part1 = orbz
  845. weldz1.C1 = CFrame.new(0, 1.125, 0)
  846. local effecton = Instance.new("ParticleEmitter",orbz)
  847. effecton.LightEmission = 1
  848. effecton.Texture = "http://www.roblox.com/asset/?id=284607870"
  849. effecton.Color = ColorSequence.new(maincolor.Color)
  850. effecton.Rate = 10000
  851. effecton.Lifetime = NumberRange.new(1)
  852. effecton.Size = NumberSequence.new({pt1,pt2})
  853. effecton.Speed = NumberRange.new(0,0)
  854. effecton.RotSpeed = NumberRange.new(100,100)
  855.  
  856.  
  857.  
  858.  
  859.  
  860.  
  861.  
  862.  
  863.  
  864.  
  865.  
  866.  
  867.  
  868.  
  869.  
  870.  
  871. ArtificialHB = Create("BindableEvent", script){
  872. Parent = script,
  873. Name = "Heartbeat",
  874. }
  875.  
  876. script:WaitForChild("Heartbeat")
  877.  
  878. frame = 1 / 30
  879. tf = 0
  880. allowframeloss = false
  881. tossremainder = false
  882. lastframe = tick()
  883. script.Heartbeat:Fire()
  884.  
  885. game:GetService("RunService").Heartbeat:connect(function(s, p)
  886. tf = tf + s
  887. if tf >= frame then
  888. if allowframeloss then
  889. script.Heartbeat:Fire()
  890. lastframe = tick()
  891. else
  892. for i = 1, math.floor(tf / frame) do
  893. script.Heartbeat:Fire()
  894. end
  895. lastframe = tick()
  896. end
  897. if tossremainder then
  898. tf = 0
  899. else
  900. tf = tf - frame * math.floor(tf / frame)
  901. end
  902. end
  903. end)
  904.  
  905. function swait(num)
  906. if num == 0 or num == nil then
  907. ArtificialHB.Event:wait()
  908. else
  909. for i = 0, num do
  910. ArtificialHB.Event:wait()
  911. end
  912. end
  913. end
  914.  
  915.  
  916.  
  917.  
  918.  
  919.  
  920.  
  921.  
  922.  
  923.  
  924.  
  925. function RemoveOutlines(part)
  926. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  927. end
  928.  
  929. CFuncs = {
  930. ["Part"] = {
  931. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  932. local Part = Create("Part"){
  933. Parent = Parent,
  934. Reflectance = Reflectance,
  935. Transparency = Transparency,
  936. CanCollide = false,
  937. Locked = true,
  938. BrickColor = BrickColor.new(tostring(BColor)),
  939. Name = Name,
  940. Size = Size,
  941. Material = Material,
  942. }
  943. RemoveOutlines(Part)
  944. return Part
  945. end;
  946. };
  947.  
  948. ["Mesh"] = {
  949. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  950. local Msh = Create(Mesh){
  951. Parent = Part,
  952. Offset = OffSet,
  953. Scale = Scale,
  954. }
  955. if Mesh == "SpecialMesh" then
  956. Msh.MeshType = MeshType
  957. Msh.MeshId = MeshId
  958. end
  959. return Msh
  960. end;
  961. };
  962.  
  963. ["Mesh"] = {
  964. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  965. local Msh = Create(Mesh){
  966. Parent = Part,
  967. Offset = OffSet,
  968. Scale = Scale,
  969. }
  970. if Mesh == "SpecialMesh" then
  971. Msh.MeshType = MeshType
  972. Msh.MeshId = MeshId
  973. end
  974. return Msh
  975. end;
  976. };
  977.  
  978. ["Weld"] = {
  979. Create = function(Parent, Part0, Part1, C0, C1)
  980. local Weld = Create("Weld"){
  981. Parent = Parent,
  982. Part0 = Part0,
  983. Part1 = Part1,
  984. C0 = C0,
  985. C1 = C1,
  986. }
  987. return Weld
  988. end;
  989. };
  990.  
  991. ["Sound"] = {
  992. Create = function(id, par, vol, pit)
  993. coroutine.resume(coroutine.create(function()
  994. local S = Create("Sound"){
  995. Volume = vol,
  996. Pitch = pit or 1,
  997. SoundId = id,
  998. Parent = par or workspace,
  999. }
  1000. wait()
  1001. S:play()
  1002. game:GetService("Debris"):AddItem(S, 6)
  1003. end))
  1004. end;
  1005. };
  1006.  
  1007. ["ParticleEmitter"] = {
  1008. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  1009. local fp = Create("ParticleEmitter"){
  1010. Parent = Parent,
  1011. Color = ColorSequence.new(Color1, Color2),
  1012. LightEmission = LightEmission,
  1013. Size = Size,
  1014. Texture = Texture,
  1015. Transparency = Transparency,
  1016. ZOffset = ZOffset,
  1017. Acceleration = Accel,
  1018. Drag = Drag,
  1019. LockedToPart = LockedToPart,
  1020. VelocityInheritance = VelocityInheritance,
  1021. EmissionDirection = EmissionDirection,
  1022. Enabled = Enabled,
  1023. Lifetime = LifeTime,
  1024. Rate = Rate,
  1025. Rotation = Rotation,
  1026. RotSpeed = RotSpeed,
  1027. Speed = Speed,
  1028. VelocitySpread = VelocitySpread,
  1029. }
  1030. return fp
  1031. end;
  1032. };
  1033.  
  1034. CreateTemplate = {
  1035.  
  1036. };
  1037. }
  1038.  
  1039.  
  1040.  
  1041. New = function(Object, Parent, Name, Data)
  1042. local Object = Instance.new(Object)
  1043. for Index, Value in pairs(Data or {}) do
  1044. Object[Index] = Value
  1045. end
  1046. Object.Parent = Parent
  1047. Object.Name = Name
  1048. return Object
  1049. end
  1050.  
  1051.  
  1052.  
  1053.  
  1054.  
  1055.  
  1056.  
  1057.  
  1058. function chatfunc(text)
  1059. local chat = coroutine.wrap(function()
  1060. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  1061. Character:FindFirstChild("TalkingBillBoard"):destroy()
  1062. end
  1063. local naeeym2 = Instance.new("BillboardGui",Character)
  1064. naeeym2.Size = UDim2.new(0,100,0,40)
  1065. naeeym2.StudsOffset = Vector3.new(0,3,0)
  1066. naeeym2.Adornee = Character.Head
  1067. naeeym2.Name = "TalkingBillBoard"
  1068. local tecks2 = Instance.new("TextLabel",naeeym2)
  1069. tecks2.BackgroundTransparency = 1
  1070. tecks2.BorderSizePixel = 0
  1071. tecks2.Text = ""
  1072. tecks2.Font = "Fantasy"
  1073. tecks2.TextSize = 30
  1074. tecks2.TextStrokeTransparency = 0
  1075. tecks2.TextColor3 = Color3.new(.6,0,0)
  1076. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  1077. tecks2.Size = UDim2.new(1,0,0.5,0)
  1078. local tecks3 = Instance.new("TextLabel",naeeym2)
  1079. tecks3.BackgroundTransparency = 1
  1080. tecks3.BorderSizePixel = 0
  1081. tecks3.Text = ""
  1082. tecks3.Font = "Fantasy"
  1083. tecks3.TextSize = 30
  1084. tecks3.TextStrokeTransparency = 0
  1085. tecks3.TextColor3 = Color3.new(0,255,255)
  1086. tecks3.TextStrokeColor3 = Color3.new(0,0,0)
  1087. tecks3.Size = UDim2.new(1,0,0.5,0)
  1088. for i = 1,string.len(text),1 do
  1089. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=565939471", Character, 6, .8)
  1090. tecks2.Text = string.sub(text,1,i)
  1091. tecks3.Text = string.sub(text,1,i)
  1092. wait(0.01)
  1093. end
  1094. wait(2)
  1095. for i = 1, 50 do
  1096. swait()
  1097. tecks2.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
  1098. tecks2.Rotation = tecks2.Rotation - .8
  1099. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  1100. tecks2.TextTransparency = tecks2.TextTransparency + .04
  1101. tecks3.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
  1102. tecks3.Rotation = tecks2.Rotation + .8
  1103. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  1104. tecks3.TextTransparency = tecks2.TextTransparency + .04
  1105. end
  1106. naeeym2:Destroy()
  1107. end)
  1108. chat()
  1109. end
  1110. function onChatted(msg)
  1111. chatfunc(msg)
  1112. end
  1113. Player.Chatted:connect(onChatted)
  1114.  
  1115. abss = Instance.new("BillboardGui",Character)
  1116. abss.Size = UDim2.new(10,0,10,0)
  1117. abss.Enabled = false
  1118. abss.Name = "ROCKYMOUNT"
  1119. imgl = Instance.new("ImageLabel",abss)
  1120. imgl.Position = UDim2.new(0,0,0,0)
  1121. imgl.Size = UDim2.new(1,0,1,0)
  1122. imgl.Image = "rbxassetid://"
  1123. imgl.BackgroundTransparency = 1
  1124. imgl.ImageColor3 = Color3.new(0,255,255)
  1125. img2 = Instance.new("ImageLabel",abss)
  1126. img2.Position = UDim2.new(0,0,0,0)
  1127. img2.Size = UDim2.new(1,0,1,0)
  1128. img2.Image = "rbxassetid://"
  1129. img2.BackgroundTransparency = 1
  1130. img2.ImageColor3 = Color3.new(0,255,255)
  1131.  
  1132.  
  1133.  
  1134.  
  1135.  
  1136.  
  1137.  
  1138. function TargetSelect(person)
  1139. local dd=coroutine.wrap(function()
  1140. if targetted ~= person then
  1141. targetted = person
  1142. img2.Size = UDim2.new(1,0,1,0)
  1143. img2.ImageTransparency = 0
  1144. img2.Image = "rbxassetid://"
  1145. img2.Position = UDim2.new(0,0,0,0)
  1146. for i = 0, 2, 0.1 do
  1147. swait()
  1148. img2.Size = img2.Size + UDim2.new(.05,0,.05,0)
  1149. img2.Position = img2.Position + UDim2.new(-.025,0,-.025,0)
  1150. img2.ImageTransparency = img2.ImageTransparency + 0.05
  1151. end
  1152. end
  1153. end)
  1154. dd()
  1155. end
  1156.  
  1157. function LockOn()
  1158. if Mouse.Target.Parent ~= Character and Mouse.Target.Parent.Parent ~= Character and Mouse.Target.Parent:FindFirstChild("Humanoid") ~= nil then
  1159. TargetSelect(Mouse.Target.Parent)
  1160. target = Mouse.Target.Parent
  1161. end
  1162. end
  1163.  
  1164.  
  1165.  
  1166. function Teleport()
  1167. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=153613030", Torso, 1, 1)
  1168. RootPart.CFrame = targetted.Torso.CFrame * CFrame.new(0,0,4)
  1169. end
  1170.  
  1171. HC = Neck
  1172. RAC = RS
  1173. LAC = LS
  1174. RLC = RH
  1175. LLC = LH
  1176. TCF = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  1177. HCF = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  1178. RACF = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1179. LACF = CFrame.new(-1, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1180. RLCF = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1181. LLCF = CFrame.new(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1182. RWF = CFrame.new(-1.5, 0, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  1183. LWF = CFrame.new(1.5, 0, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  1184. RLWF = CFrame.new(-.5, 2, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  1185. LLWF = CFrame.new(.5, 2, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  1186. RW = Instance.new("Weld",HC.Parent)
  1187. RW.Part1 = HC.Parent
  1188. RW.Part0 = chara["Right Arm"]
  1189. RW.C0 = RWF
  1190. LW = Instance.new("Weld",HC.Parent)
  1191. LW.Part1 = HC.Parent
  1192. LW.Part0 = chara["Left Arm"]
  1193. LW.C0 = LWF
  1194. RLW = nil
  1195. LLW = nil
  1196. bc = BrickColor.new
  1197. --ok
  1198. ------------------------------Keys--------------------------
  1199. function ExplodeFast(rad,par)
  1200. local expart = Instance.new("Part",script.Parent)
  1201. local expart2 = Instance.new("Part",script.Parent)
  1202. local partMesh = Instance.new("SpecialMesh",expart)
  1203. partMesh.MeshType = "Sphere"
  1204. local partMesh2 = Instance.new("SpecialMesh",expart2)
  1205. partMesh2.MeshType = "Sphere"
  1206. local expld = Instance.new("Explosion", script.Parent)
  1207. expld.Visible = false
  1208. local plode = Instance.new("Sound",expart)
  1209. plode.SoundId = "rbxassetid://153274423"
  1210. plode.Volume = 2.5
  1211. plode.Pitch = 1
  1212. plode.Looped = false
  1213. plode:Play()
  1214. local ploder = Instance.new("Sound",expart)
  1215. ploder.SoundId = "rbxassetid://130972023"
  1216. ploder.Volume = 2.5
  1217. ploder.Pitch = 1
  1218. ploder.Looped = false
  1219. ploder:Play()
  1220. expld.BlastRadius = rad
  1221. expld.Position = par.Position
  1222. partMesh.Scale = vt(rad,rad,rad)
  1223. expart.Size = vt(1,1,1)*1.5
  1224. expart.Transparency = 0
  1225. expart.Anchored = true
  1226. expart.Material = "Neon"
  1227. expart.BrickColor = bc("Really black")
  1228. expart.CFrame = par.CFrame
  1229. partMesh2.Scale = vt(rad,rad,rad)
  1230. expart2.Size = vt(1.15,1.15,1.15)*1.5
  1231. expart2.Transparency = 0.5
  1232. expart2.Anchored = true
  1233. expart2.Material = "Neon"
  1234. expart2.BrickColor = bc("Dark indigo")
  1235. expart2.CFrame = par.CFrame
  1236. local value = 1*rad/6.5
  1237. par:Destroy()
  1238. for i = 0, 100 do
  1239. partMesh.Scale = partMesh.Scale + vt(value,value,value)
  1240. expart.CFrame = expart.CFrame
  1241. partMesh2.Scale = partMesh2.Scale + vt(value,value,value)
  1242. expart2.CFrame = expart.CFrame
  1243. value = value - 0.035*rad/6.5
  1244. if value < 1 then
  1245. value = 0.25
  1246. expart.Transparency = expart.Transparency + 0.025
  1247. expart2.Transparency = expart2.Transparency + 0.025
  1248. end
  1249. wait()
  1250. end
  1251. plode.Parent = nil
  1252. ploder.Parent = nil
  1253. expart.Parent = nil
  1254. expart2.Parent = nil
  1255. expld.Parent = nil
  1256. end
  1257.  
  1258.  
  1259.  
  1260. local children = GetChildren
  1261.  
  1262. Mouse.KeyDown:connect(function(key)
  1263. if key == "q" then
  1264. LockOn()
  1265. elseif key == "e" and targetted ~= nil then
  1266. Teleport()
  1267. elseif key == "z" and targetted ~= nil and attack == false and target ~= nil then
  1268. attack = true
  1269. abss.Enabled = false
  1270. Teleport()
  1271. target.Torso.Anchored = true
  1272. Torso.Anchored = true
  1273. wait(1)
  1274. chatfunc('Omae wa mou, Shindeiru')
  1275. wait(4)
  1276. coroutine.wrap(function()
  1277. for i,v in pairs(target:children()) do
  1278. if v:IsA("Accessory") then
  1279. v:Destroy()
  1280. end
  1281. end
  1282. for i,v in pairs(target:children()) do
  1283. if v:IsA("Part") then
  1284. v.Transparency = 1
  1285. end
  1286. end
  1287. target:BreakJoints()
  1288. ExplodeFast(4,target.Torso)
  1289. end)()
  1290. wait(.2)
  1291. wait(1)
  1292. Torso.Anchored = false
  1293. attack = false
  1294. end
  1295. end)
  1296.  
  1297.  
  1298.  
  1299.  
  1300.  
  1301.  
  1302. local stanceToggle = "Landed"
  1303. local animpose = "Landed"
  1304. local lastanimpose = "Landed"
  1305.  
  1306. local animpose = "Idle"
  1307. local lastanimpose = "Idle"
  1308. local sine = 0
  1309. local change = 1
  1310. local val = 0
  1311. local ffing = false
  1312. local player = p
  1313. local pchar = player.Character
  1314. local mouse = player:GetMouse()
  1315. local cam = workspace.CurrentCamera
  1316. local rad = math.rad
  1317. local keysDown = {}
  1318. local flySpeed = 0
  1319. local MAX_FLY_SPEED = 50
  1320. local canFly = false
  1321. local flyToggled = false
  1322. local forward, side = 0, 0
  1323. local lastForward, lastSide = 0, 0
  1324. local floatBP = Instance.new("BodyPosition")
  1325. x = Instance.new("Sound", char)
  1326. x.SoundId = "http://www.roblox.com/asset/?id=198360408"
  1327. x.Looped = true
  1328. x.Volume = 10
  1329. local footsteps = false
  1330. game:GetService("RunService").RenderStepped:connect(function()
  1331. if char.Humanoid.Health > 0 then
  1332. if char.Humanoid.Jump == true then
  1333. jumpn = true
  1334. else
  1335. jumpn = false
  1336. end
  1337. char.Humanoid.FreeFalling:connect(function(f)
  1338. if f then
  1339. ffing = true
  1340. else
  1341. ffing = false
  1342. end
  1343. end)
  1344. sine = sine + change
  1345. if jumpn == true then
  1346. animpose = "Jumping"
  1347. elseif ffing == true then
  1348. animpose = "Freefalling"
  1349. elseif (torso.Velocity * Vector3.new(1, 0, 1)).magnitude < 2 then
  1350. animpose = "Idle"
  1351. elseif (torso.Velocity * Vector3.new(1, 0, 1)).magnitude < 20 then
  1352. animpose = "Walking"
  1353. elseif (torso.Velocity * Vector3.new(1, 0, 1)).magnitude > 20 then
  1354. animpose = "Running"
  1355. end
  1356. if animpose ~= lastanimpose then
  1357. sine = 0
  1358. if Debounces.NoIdl == false then
  1359. if stanceToggle == "Floating" then
  1360. change = 1
  1361. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-10)), 0.6)
  1362. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(30)), 0.2)
  1363. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-8)), 0.6)
  1364. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(8)), 0.6)
  1365. end
  1366. elseif stanceToggle == "Landed" then
  1367. change = 1
  1368. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
  1369. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
  1370. elseif stanceToggle == "Sitting" then
  1371. change = 1
  1372. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
  1373. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
  1374. wait()
  1375. end
  1376. else
  1377. end
  1378. lastanimpose = animpose
  1379. if Debounces.NoIdl == false then
  1380. if animpose == "Idle" then
  1381. if stanceToggle == "Floating" then
  1382. change = 0.5
  1383. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0 - 0.16 * math.cos(sine / 14), 0) * CFrame.Angles(math.rad(-20 - 1 * math.cos(sine / 14)), math.rad(0), 0), 0.05)
  1384. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.65, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(30 + 1 * math.cos(sine / 14))), 0.2)
  1385. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.65 + 0.05 * math.cos(sine / 14), 0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(-10 - 1.5 * math.cos(sine / 14))), 0.2)
  1386. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -0.3) * CFrame.Angles(math.rad(-20 + 2 * math.cos(sine / 14)), math.rad(0), math.rad(0)), 0.2)
  1387. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), math.rad(0 + 2 * math.cos(sine / 14)), math.rad(-8 - 1.5 * math.cos(sine / 14))), 0.2)
  1388. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(20), math.rad(0 + 2 * math.cos(sine / 14)), math.rad(8 + 1.5 * math.cos(sine / 14))), 0.2)
  1389. elseif stanceToggle == "Landed" then
  1390. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.65 + 0.05 * math.cos(sine / 14), 0) * CFrame.Angles(math.rad(-30), math.rad(-20), math.rad(22 + 2 * math.cos(sine / 14))), 0.2)
  1391. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5 + 0.05 * math.cos(sine / 14), -0.5) * CFrame.Angles(math.rad(70), math.rad(-10), math.rad(26 - 2 * math.cos(sine / 14))), 0.2)
  1392. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-10 + 2 * math.cos(sine / 14)), math.rad(36), math.rad(0)), 0.2)
  1393. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10 + 1 * math.cos(sine / 14)), math.rad(-36), math.rad(0)), 0.2)
  1394. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.7, -1, 0) * CFrame.Angles(math.rad(30 - 1.5 * math.cos(sine / 14)), math.rad(30), math.rad(-30)), 0.2)
  1395. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10 - 1.5 * math.cos(sine / 14)), math.rad(30), math.rad(20)), 0.2)
  1396. elseif stanceToggle == "Sitting" then
  1397. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.3, -0.1) * CFrame.Angles(math.rad(45 - 2 * math.cos(sine / 14)), math.rad(0), math.rad(32)), 0.2)
  1398. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-20 + 1 * math.cos(sine / 14))), 0.2)
  1399. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -0.2) * CFrame.Angles(math.rad(14 + 2 * math.cos(sine / 14)), math.rad(-40), math.rad(14)), 0.2)
  1400. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-50 + 1 * math.cos(sine / 14)), math.rad(40), math.rad(0)), 0.2)
  1401. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.4, 0.2, -0.8) * CFrame.Angles(math.rad(30 - 1 * math.cos(sine / 14)), 0, math.rad(20)), 0.2)
  1402. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.8, -1, 0) * CFrame.Angles(math.rad(-10 - 1 * math.cos(sine / 14)), math.rad(-40), math.rad(0)), 0.2)
  1403. end
  1404. elseif animpose == "Walking" then
  1405. if stanceToggle == "Landed" then
  1406. change = 0.5
  1407. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5 + 0.05 * math.cos(sine / 3), -math.sin(sine / 6) / 4) * CFrame.Angles(math.sin(sine / 6) / 2.8, -math.sin(sine / 6) / 3, math.rad(-10 - 2 * math.cos(sine / 3))), 0.2)
  1408. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5 - 0.05 * math.cos(sine / 3), math.sin(sine / 6) / 4) * CFrame.Angles(-math.sin(sine / 6) / 2.8, -math.sin(sine / 6) / 3, math.rad(10 + 2 * math.cos(sine / 3))), 0.2)
  1409. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-8 + 2 * math.cos(sine / 3)), math.rad(0), math.rad(0)), 0.2)
  1410. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1 - 0.15 * math.cos(sine / 6) / 5, -0.15 + math.sin(sine / 6) / 5) * CFrame.Angles(math.rad(-14) + -math.sin(sine / 6) / 2.7, 0, 0), 0.4)
  1411. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1 + 0.15 * math.cos(sine / 6) / 5, -0.15 + -math.sin(sine / 6) / 5) * CFrame.Angles(math.rad(-14) + math.sin(sine / 6) / 2.7, 0, 0), 0.4)
  1412. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1 + 0.07 * math.cos(sine / 3), 0) * CFrame.Angles(math.rad(-4 + 1 * math.cos(sine / 3)), 0, math.rad(0)), 0.2)
  1413. elseif stanceToggle == "Sitting" then
  1414. stanceToggle = "Landed"
  1415. elseif stanceToggle == "Floating" then
  1416. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0 - 0.1 * math.cos(sine / 16), 0) * CFrame.Angles(math.rad(-20), 0, 0), 0.6)
  1417. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(90), 0, math.rad(30 + 2 * math.cos(sine / 16))), 0.3)
  1418. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(15 + 10 * math.cos(sine / 16)), 0, 0), 0.3)
  1419. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -0.3) * CFrame.Angles(math.rad(-18 + 2 * math.cos(sine / 16)), math.rad(0), math.rad(0)), 0.3)
  1420. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(13 + 4 * math.cos(sine / 16)), 0, 0), 0.3)
  1421. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(15 + 10 * math.cos(sine / 16)), 0, 0), 0.3)
  1422. end
  1423. elseif animpose == "Running" then
  1424. change = 1
  1425. if stanceToggle == "Landed" then
  1426. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4 - 0.1 * math.cos(sine / 6), 0.5, 0 + 0.8 * math.cos(sine / 6)) * CFrame.Angles(math.rad(20 - 90 * math.cos(sine / 6) / 1.2), math.rad(0), math.rad(20 - 40 * math.cos(sine / 6))), 0.2)
  1427. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4 - 0.1 * math.cos(sine / 6), 0.5, 0 - 0.8 * math.cos(sine / 6)) * CFrame.Angles(math.rad(20 + 90 * math.cos(sine / 6) / 1.2), math.rad(0), math.rad(-20 - 40 * math.cos(sine / 6))), 0.2)
  1428. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -0.2) * CFrame.Angles(math.rad(-8 + 12 * math.cos(sine / 3) / 1.8), math.rad(0 - 8 * math.cos(sine / 6)), math.rad(0)), 0.2)
  1429. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1 - 0.1 * math.cos(sine / 3), 0) * CFrame.Angles(math.rad(-14 + 15 * math.cos(sine / 3) / 2), math.rad(0 + 12 * math.cos(sine / 6)), math.rad(0)), 0.2)
  1430. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1 + 0.1 * math.cos(sine / 6) / 3, -0.15 + -math.sin(sine / 6) / 3) * CFrame.Angles(math.rad(-12) + math.sin(sine / 6) / 1.7, math.rad(0 - 12 * math.cos(sine / 6)), 0), 0.8)
  1431. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1 - 0.1 * math.cos(sine / 6) / 3, -0.15 + math.sin(sine / 6) / 3) * CFrame.Angles(math.rad(-12) + -math.sin(sine / 6) / 1.7, math.rad(0 - 12 * math.cos(sine / 6)), 0), 0.8)
  1432. end
  1433. end
  1434. end
  1435. end
  1436. end)
  1437.  
  1438.  
  1439. hum.MaxHealth = math.huge
  1440. wait(3)
  1441. hum.Health = math.huge
  1442.  
  1443.  
  1444. min:Play()
  1445.  
  1446. while true do
  1447. swait()
  1448. Character.Humanoid.MaxHealth = math.huge
  1449. Character.Humanoid.Health = math.huge
  1450. imgl.Rotation = imgl.Rotation + 3
  1451. img2.Rotation = img2.Rotation + 3
  1452. if targetted ~= nil then
  1453. abss.Adornee = targetted:FindFirstChild("Torso") or targetted:FindFirstChild("UpperTorso")
  1454. abss.Enabled = true
  1455. elseif targetted == nil then
  1456. abss.Adornee = nil
  1457. abss.Enabled = false
  1458. end
  1459.  
  1460. while true and imgl.Rotation >= 360 do
  1461. imgl.Rotation = 0
  1462. img2.Rotation = 0
  1463. end
  1464. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement