Advertisement
copra50

test

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