Advertisement
Chaseplayzrbx_YT

Roblox op super saiyan blue script leakled ;)

Apr 21st, 2018
1,342
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 54.71 KB | None | 0 0
  1. ---- https://pastebin.com/raw/UgXfsbYS
  2. ---------------------------------- Super Saiyan Blue ---------------------------------
  3.  
  4.  
  5. Player = game:GetService("Players").chaseplayzrbx_YT
  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 = true
  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 = true
  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 = 70
  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="Pastel blue"
  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(0,255,255)
  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 = "The Ultimate Super Saiyan Blue"
  248.  
  249.  
  250.  
  251.  
  252.  
  253.  
  254. Player:ClearCharacterAppearance()
  255. wait(0.1)
  256. Player.Character.Head.BrickColor = BrickColor.new("Really black")
  257. Player.Character.Torso.BrickColor = BrickColor.new("Really black")
  258. Player.Character["Right Arm"].BrickColor = BrickColor.new("Really black")
  259. Player.Character["Right Leg"].BrickColor = BrickColor.new("Really black")
  260. Player.Character["Left Leg"].BrickColor = BrickColor.new("Really black")
  261. Player.Character["Left Arm"].BrickColor = BrickColor.new("Really black")
  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("Toothpaste")
  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("Toothpaste")
  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("Toothpaste")
  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("Toothpaste")
  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("Toothpaste")
  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. game.Lighting.OutdoorAmbient = TBlast.BrickColor.Color
  320. game.Lighting.TimeOfDay = 0.1
  321. game.Lighting.FogEnd = 1000
  322. game.Lighting.FogColor = TBlast.BrickColor.Color
  323. game.Lighting.TimeOfDay = "00:00:00"
  324. game.Lighting.Ambient = Color3.new(0,0,0)
  325. game.Lighting.FogColor = Color3.new(0,0,0)
  326. game.Lighting.FogEnd = 500
  327. game.Lighting.FogStart = 0
  328. game.Lighting.GlobalShadows = true
  329.  
  330.  
  331.  
  332.  
  333.  
  334.  
  335.  
  336.  
  337.  
  338.  
  339.  
  340.  
  341.  
  342. local Model = Instance.new("Model")
  343. Model.Name = "Hair"
  344. p1 = Instance.new("Part", Model)
  345. p1.BrickColor = BrickColor.new("Teal")
  346. p1.Transparency = 1
  347. p1.FormFactor = Enum.FormFactor.Symmetric
  348. p1.Size = Vector3.new(1, 1, 1)
  349. 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)
  350. p1.CanCollide = false
  351. p1.Locked = true
  352. p1.BottomSurface = Enum.SurfaceType.Smooth
  353. p1.TopSurface = Enum.SurfaceType.Smooth
  354. b1 = Instance.new("SpecialMesh", p1)
  355. b1.MeshId = "http://www.roblox.com/asset/?id=12212520"
  356. b1.TextureId = ""
  357. b1.MeshType = Enum.MeshType.FileMesh
  358. b1.Name = "Mesh"
  359. b1.VertexColor = Vector3.new(0, 0, 0)
  360. b1.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  361. p2 = Instance.new("Part", Model)
  362. p2.BrickColor = BrickColor.new("Pastel brown")
  363. p2.Transparency = 1
  364. p2.Name = "Head"
  365. p2.FormFactor = Enum.FormFactor.Symmetric
  366. p2.Size = Vector3.new(2, 1, 1)
  367. 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)
  368. p2.CanCollide = false
  369. p2.Locked = true
  370. p2.TopSurface = Enum.SurfaceType.Smooth
  371. b2 = Instance.new("SpecialMesh", p2)
  372. b2.MeshType = Enum.MeshType.Head
  373. b2.Name = "Mesh"
  374. b2.Scale = Vector3.new(1.25, 1.25, 1.25)
  375. p3 = Instance.new("Part", Model)
  376. p3.BrickColor = BrickColor.new("Teal")
  377. p3.Transparency = 1
  378. p3.FormFactor = Enum.FormFactor.Symmetric
  379. p3.Size = Vector3.new(2, 2, 2)
  380. 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)
  381. p3.CanCollide = false
  382. p3.Locked = true
  383. p3.BottomSurface = Enum.SurfaceType.Smooth
  384. p3.TopSurface = Enum.SurfaceType.Smooth
  385. b3 = Instance.new("SpecialMesh", p3)
  386. b3.MeshId = "http://www.roblox.com/asset/?id=16627529"
  387. b3.TextureId = ""
  388. b3.MeshType = Enum.MeshType.FileMesh
  389. b3.Name = "Mesh"
  390. b3.VertexColor = Vector3.new(0, 0, 0)
  391. b3.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  392. p4 = Instance.new("Part", Model)
  393. p4.BrickColor = BrickColor.new("Teal")
  394. p4.FormFactor = Enum.FormFactor.Symmetric
  395. p4.Size = Vector3.new(1, 1, 1)
  396. p4.Transparency = 1
  397. 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)
  398. p4.CanCollide = false
  399. p4.Locked = true
  400. p4.BottomSurface = Enum.SurfaceType.Smooth
  401. p4.TopSurface = Enum.SurfaceType.Smooth
  402. b4 = Instance.new("SpecialMesh", p4)
  403. b4.MeshId = "http://www.roblox.com/asset/?id=19326912"
  404. b4.TextureId = ""
  405. b4.MeshType = Enum.MeshType.FileMesh
  406. b4.Name = "Mesh"
  407. b4.VertexColor = Vector3.new(0, 0, 0)
  408. p5 = Instance.new("Part", Model)
  409. p5.BrickColor = BrickColor.new("Teal")
  410. p5.FormFactor = Enum.FormFactor.Symmetric
  411. p5.Size = Vector3.new(1, 1, 1)
  412. 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)
  413. p5.CanCollide = false
  414. p5.Transparency = 1
  415. p5.Locked = true
  416. p5.BottomSurface = Enum.SurfaceType.Smooth
  417. p5.TopSurface = Enum.SurfaceType.Smooth
  418. b5 = Instance.new("SpecialMesh", p5)
  419. b5.MeshId = "http://www.roblox.com/asset/?id=45916884"
  420. b5.TextureId = ""
  421. b5.MeshType = Enum.MeshType.FileMesh
  422. b5.Name = "Mesh"
  423. b5.VertexColor = Vector3.new(0, 0, 0)
  424. b5.Scale = Vector3.new(1, 0.899999976, 1)
  425. p6 = Instance.new("Part", Model)
  426. p6.BrickColor = BrickColor.new("Teal")
  427. p6.FormFactor = Enum.FormFactor.Symmetric
  428. p6.Transparency = 1
  429. p6.Size = Vector3.new(1, 1, 1)
  430. 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)
  431. p6.CanCollide = false
  432. p6.Locked = true
  433. p6.BottomSurface = Enum.SurfaceType.Smooth
  434. p6.TopSurface = Enum.SurfaceType.Smooth
  435. b6 = Instance.new("SpecialMesh", p6)
  436. b6.MeshId = "http://www.roblox.com/asset/?id=62246019"
  437. b6.TextureId = ""
  438. b6.MeshType = Enum.MeshType.FileMesh
  439. b6.Name = "Mesh"
  440. b6.VertexColor = Vector3.new(0, 0, 0)
  441. p7 = Instance.new("Part", Model)
  442. p7.BrickColor = BrickColor.new("Teal")
  443. p7.FormFactor = Enum.FormFactor.Symmetric
  444. p7.Transparency = 1
  445. p7.Size = Vector3.new(1, 1, 1)
  446. 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)
  447. p7.CanCollide = false
  448. p7.Locked = true
  449. p7.BottomSurface = Enum.SurfaceType.Smooth
  450. p7.TopSurface = Enum.SurfaceType.Smooth
  451. b7 = Instance.new("SpecialMesh", p7)
  452. b7.MeshId = "http://www.roblox.com/asset/?id=76056263"
  453. b7.TextureId = ""
  454. b7.MeshType = Enum.MeshType.FileMesh
  455. b7.Name = "Mesh"
  456. b7.VertexColor = Vector3.new(0, 0, 0)
  457. p8 = Instance.new("Part", Model)
  458. p8.BrickColor = BrickColor.new("Bright bluish green")
  459. p8.FormFactor = Enum.FormFactor.Symmetric
  460. p8.Size = Vector3.new(1, 1, 1)
  461. 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)
  462. p8.CanCollide = false
  463. p8.Transparency = 1
  464. p8.Locked = true
  465. p8.BottomSurface = Enum.SurfaceType.Smooth
  466. p8.TopSurface = Enum.SurfaceType.Smooth
  467. b8 = Instance.new("SpecialMesh", p8)
  468. b8.MeshId = "http://www.roblox.com/asset/?id=12212520"
  469. b8.TextureId = ""
  470. b8.MeshType = Enum.MeshType.FileMesh
  471. b8.Name = "Mesh"
  472. b8.VertexColor = Vector3.new(0, 0, 0)
  473. b8.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  474. p9 = Instance.new("Part", Model)
  475. p9.BrickColor = BrickColor.new("Teal")
  476. p9.FormFactor = Enum.FormFactor.Symmetric
  477. p9.Size = Vector3.new(2, 1, 2)
  478. p9.Transparency = 1
  479. 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)
  480. p9.CanCollide = false
  481. p9.Locked = true
  482. p9.BottomSurface = Enum.SurfaceType.Smooth
  483. p9.TopSurface = Enum.SurfaceType.Smooth
  484. b9 = Instance.new("SpecialMesh", p9)
  485. b9.MeshId = "http://www.roblox.com/asset/?id=12259089"
  486. b9.TextureId = ""
  487. b9.MeshType = Enum.MeshType.FileMesh
  488. b9.Name = "Mesh"
  489. b9.VertexColor = Vector3.new(0, 0, 0)
  490. b9.Scale = Vector3.new(1.01999998, 1.04999995, 1.04999995)
  491. p10 = Instance.new("Part", Model)
  492. p10.BrickColor = BrickColor.new("Teal")
  493. p10.Transparency = 1
  494. p10.FormFactor = Enum.FormFactor.Symmetric
  495. p10.Size = Vector3.new(1, 1, 1)
  496. 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)
  497. p10.CanCollide = false
  498. p10.Locked = true
  499. p10.BottomSurface = Enum.SurfaceType.Smooth
  500. p10.TopSurface = Enum.SurfaceType.Smooth
  501. b10 = Instance.new("SpecialMesh", p10)
  502. b10.MeshId = "http://www.roblox.com/asset/?id=12212520"
  503. b10.TextureId = ""
  504. b10.MeshType = Enum.MeshType.FileMesh
  505. b10.Name = "Mesh"
  506. b10.VertexColor = Vector3.new(0, 0, 0)
  507. b10.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  508. p11 = Instance.new("Part", Model)
  509. p11.BrickColor = BrickColor.new("Teal")
  510. p11.Transparency = 1
  511. p11.FormFactor = Enum.FormFactor.Symmetric
  512. p11.Size = Vector3.new(1, 1, 1)
  513. 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)
  514. p11.CanCollide = false
  515. p11.Locked = true
  516. p11.BottomSurface = Enum.SurfaceType.Smooth
  517. p11.TopSurface = Enum.SurfaceType.Smooth
  518. b11 = Instance.new("SpecialMesh", p11)
  519. b11.MeshId = "http://www.roblox.com/asset/?id=12212520"
  520. b11.TextureId = ""
  521. b11.MeshType = Enum.MeshType.FileMesh
  522. b11.Name = "Mesh"
  523. b11.VertexColor = Vector3.new(0, 0, 0)
  524. b11.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  525. p12 = Instance.new("Part", Model)
  526. p12.BrickColor = BrickColor.new("Bright bluish green")
  527. p12.FormFactor = Enum.FormFactor.Custom
  528. p12.Size = Vector3.new(1, 3.5, 1)
  529. 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)
  530. p12.CanCollide = false
  531. p12.Transparency = 1
  532. p12.Locked = true
  533. p12.BottomSurface = Enum.SurfaceType.Smooth
  534. p12.TopSurface = Enum.SurfaceType.Smooth
  535. b12 = Instance.new("SpecialMesh", p12)
  536. b12.MeshId = "http://www.roblox.com/asset/?id=12212520"
  537. b12.TextureId = ""
  538. b12.MeshType = Enum.MeshType.FileMesh
  539. b12.Name = "Mesh"
  540. b12.VertexColor = Vector3.new(0, 0, 0)
  541. b12.Scale = Vector3.new(1, 3, 1.29999995)
  542. p13 = Instance.new("Part", Model)
  543. p13.Transparency = 1
  544. p13.BrickColor = BrickColor.new("Teal")
  545. p13.FormFactor = Enum.FormFactor.Custom
  546. p13.Size = Vector3.new(1, 2, 1)
  547. 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)
  548. p13.CanCollide = false
  549. p13.Locked = true
  550. p13.BottomSurface = Enum.SurfaceType.Smooth
  551. p13.TopSurface = Enum.SurfaceType.Smooth
  552. b13 = Instance.new("SpecialMesh", p13)
  553. b13.MeshId = "http://www.roblox.com/asset/?id=12212520"
  554. b13.TextureId = ""
  555. b13.MeshType = Enum.MeshType.FileMesh
  556. b13.Name = "Mesh"
  557. b13.VertexColor = Vector3.new(0, 0, 0)
  558. b13.Scale = Vector3.new(1, 3, 1.29999995)
  559. p14 = Instance.new("Part", Model)
  560. p14.Transparency = 1
  561. p14.BrickColor = BrickColor.new("Teal")
  562. p14.FormFactor = Enum.FormFactor.Custom
  563. p14.Size = Vector3.new(1, 2, 1)
  564. 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)
  565. p14.CanCollide = false
  566. p14.Locked = true
  567. p14.BottomSurface = Enum.SurfaceType.Smooth
  568. p14.TopSurface = Enum.SurfaceType.Smooth
  569. b14 = Instance.new("SpecialMesh", p14)
  570. b14.MeshId = "http://www.roblox.com/asset/?id=12212520"
  571. b14.TextureId = ""
  572. b14.MeshType = Enum.MeshType.FileMesh
  573. b14.Name = "Mesh"
  574. b14.VertexColor = Vector3.new(0, 0, 0)
  575. b14.Scale = Vector3.new(1, 3, 1.29999995)
  576. p15 = Instance.new("Part", Model)
  577. p15.BrickColor = BrickColor.new("Bright bluish green")
  578. p15.FormFactor = Enum.FormFactor.Custom
  579. p15.Size = Vector3.new(1, 2.5, 1)
  580. 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)
  581. p15.CanCollide = false
  582. p15.Transparency = 1
  583. p15.Locked = true
  584. p15.BottomSurface = Enum.SurfaceType.Smooth
  585. p15.TopSurface = Enum.SurfaceType.Smooth
  586. b15 = Instance.new("SpecialMesh", p15)
  587. b15.MeshId = "http://www.roblox.com/asset/?id=12212520"
  588. b15.TextureId = ""
  589. b15.MeshType = Enum.MeshType.FileMesh
  590. b15.Name = "Mesh"
  591. b15.VertexColor = Vector3.new(0, 0, 0)
  592. b15.Scale = Vector3.new(1, 3, 1.29999995)
  593. p16 = Instance.new("Part", Model)
  594. p16.BrickColor = BrickColor.new("Teal")
  595. p16.FormFactor = Enum.FormFactor.Custom
  596. p16.Size = Vector3.new(1, 2.5, 1)
  597. p16.Transparency = 1
  598. 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)
  599. p16.CanCollide = false
  600. p16.Locked = true
  601. p16.BottomSurface = Enum.SurfaceType.Smooth
  602. p16.TopSurface = Enum.SurfaceType.Smooth
  603. b16 = Instance.new("SpecialMesh", p16)
  604. b16.MeshId = "http://www.roblox.com/asset/?id=12212520"
  605. b16.TextureId = ""
  606. b16.MeshType = Enum.MeshType.FileMesh
  607. b16.Name = "Mesh"
  608. b16.VertexColor = Vector3.new(0, 0, 0)
  609. b16.Scale = Vector3.new(1, 3, 1.29999995)
  610. p17 = Instance.new("Part", Model)
  611. p17.BrickColor = BrickColor.new("Bright bluish green")
  612. p17.Transparency = 1
  613. p17.FormFactor = Enum.FormFactor.Custom
  614. p17.Size = Vector3.new(1, 2.4000001, 1)
  615. 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)
  616. p17.CanCollide = false
  617. p17.Locked = true
  618. p17.BottomSurface = Enum.SurfaceType.Smooth
  619. p17.TopSurface = Enum.SurfaceType.Smooth
  620. b17 = Instance.new("SpecialMesh", p17)
  621. b17.MeshId = "http://www.roblox.com/asset/?id=12212520"
  622. b17.TextureId = ""
  623. b17.MeshType = Enum.MeshType.FileMesh
  624. b17.Name = "Mesh"
  625. b17.VertexColor = Vector3.new(0, 0, 0)
  626. b17.Scale = Vector3.new(1, 3, 1.29999995)
  627. p18 = Instance.new("Part", Model)
  628. p18.BrickColor = BrickColor.new("Teal")
  629. p18.FormFactor = Enum.FormFactor.Custom
  630. p18.Size = Vector3.new(2, 2, 2)
  631. p18.Transparency = 1
  632. 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)
  633. p18.CanCollide = false
  634. p18.Locked = true
  635. p18.BottomSurface = Enum.SurfaceType.Smooth
  636. p18.TopSurface = Enum.SurfaceType.Smooth
  637. b18 = Instance.new("SpecialMesh", p18)
  638. b18.MeshId = "http://www.roblox.com/asset/?id=16627529"
  639. b18.TextureId = ""
  640. b18.MeshType = Enum.MeshType.FileMesh
  641. b18.Name = "Mesh"
  642. b18.VertexColor = Vector3.new(0, 0, 0)
  643. b18.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  644. w1 = Instance.new("Weld", p1)
  645. w1.Name = "Head_Weld"
  646. w1.Part0 = p1
  647. 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)
  648. w1.Part1 = p2
  649. 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)
  650. w2 = Instance.new("Weld", p2)
  651. w2.Name = "Part_Weld"
  652. w2.Part0 = p2
  653. 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)
  654. w2.Part1 = p3
  655. 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)
  656. w3 = Instance.new("Weld", p3)
  657. w3.Name = "Part_Weld"
  658. w3.Part0 = p3
  659. 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)
  660. w3.Part1 = p4
  661. 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)
  662. w4 = Instance.new("Weld", p4)
  663. w4.Name = "Part_Weld"
  664. w4.Part0 = p4
  665. 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)
  666. w4.Part1 = p5
  667. 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)
  668. w5 = Instance.new("Weld", p5)
  669. w5.Name = "Part_Weld"
  670. w5.Part0 = p5
  671. 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)
  672. w5.Part1 = p6
  673. 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)
  674. w6 = Instance.new("Weld", p6)
  675. w6.Name = "Part_Weld"
  676. w6.Part0 = p6
  677. 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)
  678. w6.Part1 = p7
  679. 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)
  680. w7 = Instance.new("Weld", p7)
  681. w7.Name = "Part_Weld"
  682. w7.Part0 = p7
  683. 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)
  684. w7.Part1 = p8
  685. 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)
  686. w8 = Instance.new("Weld", p8)
  687. w8.Name = "Part_Weld"
  688. w8.Part0 = p8
  689. 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)
  690. w8.Part1 = p9
  691. 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)
  692. w9 = Instance.new("Weld", p9)
  693. w9.Name = "Part_Weld"
  694. w9.Part0 = p9
  695. 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)
  696. w9.Part1 = p10
  697. 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)
  698. w10 = Instance.new("Weld", p10)
  699. w10.Name = "Part_Weld"
  700. w10.Part0 = p10
  701. 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)
  702. w10.Part1 = p11
  703. 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)
  704. w11 = Instance.new("Weld", p11)
  705. w11.Name = "Part_Weld"
  706. w11.Part0 = p11
  707. 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)
  708. w11.Part1 = p12
  709. 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)
  710. w12 = Instance.new("Weld", p12)
  711. w12.Name = "Part_Weld"
  712. w12.Part0 = p12
  713. 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)
  714. w12.Part1 = p13
  715. 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)
  716. w13 = Instance.new("Weld", p13)
  717. w13.Name = "Part_Weld"
  718. w13.Part0 = p13
  719. 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)
  720. w13.Part1 = p14
  721. 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)
  722. w14 = Instance.new("Weld", p14)
  723. w14.Name = "Part_Weld"
  724. w14.Part0 = p14
  725. 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)
  726. w14.Part1 = p15
  727. 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)
  728. w15 = Instance.new("Weld", p15)
  729. w15.Name = "Part_Weld"
  730. w15.Part0 = p15
  731. 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)
  732. w15.Part1 = p16
  733. 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)
  734. w16 = Instance.new("Weld", p16)
  735. w16.Name = "Part_Weld"
  736. w16.Part0 = p16
  737. 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)
  738. w16.Part1 = p17
  739. 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)
  740. w17 = Instance.new("Weld", p17)
  741. w17.Name = "Part_Weld"
  742. w17.Part0 = p17
  743. 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)
  744. w17.Part1 = p18
  745. 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)
  746. Model.Parent = char
  747. Model:MakeJoints()
  748.  
  749.  
  750. ----------------------------------------------------
  751. local cor = Instance.new("Part", char.Hair)
  752. cor.Name = "Link"
  753. cor.Locked = true
  754. cor.BottomSurface = 0
  755. cor.CanCollide = false
  756. cor.Size = Vector3.new(1, 9, 1)
  757. cor.Transparency = 1
  758. cor.TopSurface = 0
  759. corw = Instance.new("Weld", cor)
  760. corw.Part0 = hed
  761. corw.Part1 = cor
  762. corw.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  763. corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  764. weld1 = Instance.new("Weld", char.Hair)
  765. weld1.Part0 = cor
  766. weld1.Part1 = char.Hair.Head
  767. weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  768. ----------------------------------------------------betterhair
  769. pr = Instance.new("Part",hed)
  770. pr.BrickColor = BrickColor.new("Toothpaste")
  771. pr.Material = "Neon"
  772. pr.Reflectance = 0.04
  773. pr.Anchored = false
  774. pr.CanCollide = false
  775. pr.Archivable = false
  776. pr.Locked = true
  777. pr.Size = Vector3.new(1,1,1)
  778. prm = Instance.new("SpecialMesh",pr)
  779. prm.MeshType = "FileMesh"
  780. prm.MeshId = "rbxassetid://560718478"
  781. prm.Scale = Vector3.new(6,6,6)
  782. newWeld(hed, pr, 0, 0, 0)
  783. pr.Weld.C1 = CFrame.new(0,-.8,-.43) * CFrame.Angles(0,0,0)
  784. ----------------------------------------------------
  785.  
  786.  
  787.  
  788.  
  789.  
  790.  
  791. local Mus = Instance.new("Sound",Character)
  792. Mus.SoundId = "rbxassetid://197233463"
  793. Mus.Pitch = 1
  794. Mus.Volume = 3
  795. Mus.Looped = true
  796. Mus:Play()
  797.  
  798. local min = Instance.new("Sound",Character)
  799. min.SoundId = "rbxassetid://159882644"
  800. min.Pitch = .71
  801. min.Volume = 10
  802. min.Looped = false
  803.  
  804.  
  805.  
  806.  
  807.  
  808. paly = game.Players.LocalPlayer
  809. paly = game.Players.LocalPlayer
  810. p = game.Players.LocalPlayer
  811. char = paly.Character
  812. vt = Vector3.new
  813. rarm = char["Right Arm"]
  814. larm = char["Left Arm"]
  815. local maincolor = BrickColor.new("Toothpaste")
  816.  
  817. local orb = Instance.new("Part")
  818. orb.Parent = char
  819. orb.Size = Vector3.new(0.5, 0.5, 0.5)
  820. orb.Archivable = true
  821. orb.Transparency = 1
  822. orb.BrickColor = maincolor
  823. orb.Material = "Neon"
  824. orb.CanCollide = false
  825. local weld1 = Instance.new("Weld")
  826. weld1.Parent = rarm
  827. weld1.Part0 = rarm
  828. weld1.Part1 = orb
  829. weld1.C1 = CFrame.new(0, 1.125, 0)
  830. local pt1 = NumberSequenceKeypoint.new(0,0.85,0)
  831. local pt2 = NumberSequenceKeypoint.new(1,0,0)
  832. local effecto = Instance.new("ParticleEmitter",orb)
  833. effecto.LightEmission = 1
  834. effecto.Texture = "http://www.roblox.com/asset/?id=284607870"
  835. effecto.Color = ColorSequence.new(maincolor.Color)
  836. effecto.Rate = 10000
  837. effecto.Lifetime = NumberRange.new(1)
  838. effecto.Size = NumberSequence.new({pt1,pt2})
  839. effecto.Speed = NumberRange.new(0,0)
  840. effecto.RotSpeed = NumberRange.new(100,100)
  841.  
  842. local orbz = Instance.new("Part")
  843. orbz.Parent = char
  844. orbz.Size = Vector3.new(0.5, 0.5, 0.5)
  845. orbz.Archivable = true
  846. orbz.Transparency = 1
  847. orbz.BrickColor = maincolor
  848. orbz.Material = "Neon"
  849. orbz.CanCollide = false
  850. local weldz1 = Instance.new("Weld")
  851. weldz1.Parent = larm
  852. weldz1.Part0 = larm
  853. weldz1.Part1 = orbz
  854. weldz1.C1 = CFrame.new(0, 1.125, 0)
  855. local effecton = Instance.new("ParticleEmitter",orbz)
  856. effecton.LightEmission = 1
  857. effecton.Texture = "http://www.roblox.com/asset/?id=284607870"
  858. effecton.Color = ColorSequence.new(maincolor.Color)
  859. effecton.Rate = 10000
  860. effecton.Lifetime = NumberRange.new(1)
  861. effecton.Size = NumberSequence.new({pt1,pt2})
  862. effecton.Speed = NumberRange.new(0,0)
  863. effecton.RotSpeed = NumberRange.new(100,100)
  864.  
  865.  
  866.  
  867.  
  868.  
  869.  
  870.  
  871.  
  872.  
  873.  
  874.  
  875.  
  876.  
  877.  
  878.  
  879.  
  880. ArtificialHB = Create("BindableEvent", script){
  881. Parent = script,
  882. Name = "Heartbeat",
  883. }
  884.  
  885. script:WaitForChild("Heartbeat")
  886.  
  887. frame = 1 / 30
  888. tf = 0
  889. allowframeloss = false
  890. tossremainder = false
  891. lastframe = tick()
  892. script.Heartbeat:Fire()
  893.  
  894. game:GetService("RunService").Heartbeat:connect(function(s, p)
  895. tf = tf + s
  896. if tf >= frame then
  897. if allowframeloss then
  898. script.Heartbeat:Fire()
  899. lastframe = tick()
  900. else
  901. for i = 1, math.floor(tf / frame) do
  902. script.Heartbeat:Fire()
  903. end
  904. lastframe = tick()
  905. end
  906. if tossremainder then
  907. tf = 0
  908. else
  909. tf = tf - frame * math.floor(tf / frame)
  910. end
  911. end
  912. end)
  913.  
  914. function swait(num)
  915. if num == 0 or num == nil then
  916. ArtificialHB.Event:wait()
  917. else
  918. for i = 0, num do
  919. ArtificialHB.Event:wait()
  920. end
  921. end
  922. end
  923.  
  924.  
  925.  
  926.  
  927.  
  928.  
  929.  
  930.  
  931.  
  932.  
  933.  
  934. function RemoveOutlines(part)
  935. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  936. end
  937.  
  938. CFuncs = {
  939. ["Part"] = {
  940. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  941. local Part = Create("Part"){
  942. Parent = Parent,
  943. Reflectance = Reflectance,
  944. Transparency = Transparency,
  945. CanCollide = false,
  946. Locked = true,
  947. BrickColor = BrickColor.new(tostring(BColor)),
  948. Name = Name,
  949. Size = Size,
  950. Material = Material,
  951. }
  952. RemoveOutlines(Part)
  953. return Part
  954. end;
  955. };
  956.  
  957. ["Mesh"] = {
  958. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  959. local Msh = Create(Mesh){
  960. Parent = Part,
  961. Offset = OffSet,
  962. Scale = Scale,
  963. }
  964. if Mesh == "SpecialMesh" then
  965. Msh.MeshType = MeshType
  966. Msh.MeshId = MeshId
  967. end
  968. return Msh
  969. end;
  970. };
  971.  
  972. ["Mesh"] = {
  973. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  974. local Msh = Create(Mesh){
  975. Parent = Part,
  976. Offset = OffSet,
  977. Scale = Scale,
  978. }
  979. if Mesh == "SpecialMesh" then
  980. Msh.MeshType = MeshType
  981. Msh.MeshId = MeshId
  982. end
  983. return Msh
  984. end;
  985. };
  986.  
  987. ["Weld"] = {
  988. Create = function(Parent, Part0, Part1, C0, C1)
  989. local Weld = Create("Weld"){
  990. Parent = Parent,
  991. Part0 = Part0,
  992. Part1 = Part1,
  993. C0 = C0,
  994. C1 = C1,
  995. }
  996. return Weld
  997. end;
  998. };
  999.  
  1000. ["Sound"] = {
  1001. Create = function(id, par, vol, pit)
  1002. coroutine.resume(coroutine.create(function()
  1003. local S = Create("Sound"){
  1004. Volume = vol,
  1005. Pitch = pit or 1,
  1006. SoundId = id,
  1007. Parent = par or workspace,
  1008. }
  1009. wait()
  1010. S:play()
  1011. game:GetService("Debris"):AddItem(S, 6)
  1012. end))
  1013. end;
  1014. };
  1015.  
  1016. ["ParticleEmitter"] = {
  1017. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  1018. local fp = Create("ParticleEmitter"){
  1019. Parent = Parent,
  1020. Color = ColorSequence.new(Color1, Color2),
  1021. LightEmission = LightEmission,
  1022. Size = Size,
  1023. Texture = Texture,
  1024. Transparency = Transparency,
  1025. ZOffset = ZOffset,
  1026. Acceleration = Accel,
  1027. Drag = Drag,
  1028. LockedToPart = LockedToPart,
  1029. VelocityInheritance = VelocityInheritance,
  1030. EmissionDirection = EmissionDirection,
  1031. Enabled = Enabled,
  1032. Lifetime = LifeTime,
  1033. Rate = Rate,
  1034. Rotation = Rotation,
  1035. RotSpeed = RotSpeed,
  1036. Speed = Speed,
  1037. VelocitySpread = VelocitySpread,
  1038. }
  1039. return fp
  1040. end;
  1041. };
  1042.  
  1043. CreateTemplate = {
  1044.  
  1045. };
  1046. }
  1047.  
  1048.  
  1049.  
  1050. New = function(Object, Parent, Name, Data)
  1051. local Object = Instance.new(Object)
  1052. for Index, Value in pairs(Data or {}) do
  1053. Object[Index] = Value
  1054. end
  1055. Object.Parent = Parent
  1056. Object.Name = Name
  1057. return Object
  1058. end
  1059.  
  1060.  
  1061.  
  1062.  
  1063.  
  1064.  
  1065.  
  1066.  
  1067. function chatfunc(text)
  1068. local chat = coroutine.wrap(function()
  1069. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  1070. Character:FindFirstChild("TalkingBillBoard"):destroy()
  1071. end
  1072. local naeeym2 = Instance.new("BillboardGui",Character)
  1073. naeeym2.Size = UDim2.new(0,100,0,40)
  1074. naeeym2.StudsOffset = Vector3.new(0,3,0)
  1075. naeeym2.Adornee = Character.Head
  1076. naeeym2.Name = "TalkingBillBoard"
  1077. local tecks2 = Instance.new("TextLabel",naeeym2)
  1078. tecks2.BackgroundTransparency = 1
  1079. tecks2.BorderSizePixel = 0
  1080. tecks2.Text = ""
  1081. tecks2.Font = "Fantasy"
  1082. tecks2.TextSize = 30
  1083. tecks2.TextStrokeTransparency = 0
  1084. tecks2.TextColor3 = Color3.new(.6,0,0)
  1085. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  1086. tecks2.Size = UDim2.new(1,0,0.5,0)
  1087. local tecks3 = Instance.new("TextLabel",naeeym2)
  1088. tecks3.BackgroundTransparency = 1
  1089. tecks3.BorderSizePixel = 0
  1090. tecks3.Text = ""
  1091. tecks3.Font = "Fantasy"
  1092. tecks3.TextSize = 30
  1093. tecks3.TextStrokeTransparency = 0
  1094. tecks3.TextColor3 = Color3.new(0,255,255)
  1095. tecks3.TextStrokeColor3 = Color3.new(0,0,0)
  1096. tecks3.Size = UDim2.new(1,0,0.5,0)
  1097. for i = 1,string.len(text),1 do
  1098. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=565939471", Character, 6, .8)
  1099. tecks2.Text = string.sub(text,1,i)
  1100. tecks3.Text = string.sub(text,1,i)
  1101. wait(0.01)
  1102. end
  1103. wait(2)
  1104. for i = 1, 50 do
  1105. swait()
  1106. tecks2.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
  1107. tecks2.Rotation = tecks2.Rotation - .8
  1108. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  1109. tecks2.TextTransparency = tecks2.TextTransparency + .04
  1110. tecks3.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
  1111. tecks3.Rotation = tecks2.Rotation + .8
  1112. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  1113. tecks3.TextTransparency = tecks2.TextTransparency + .04
  1114. end
  1115. naeeym2:Destroy()
  1116. end)
  1117. chat()
  1118. end
  1119. function onChatted(msg)
  1120. chatfunc(msg)
  1121. end
  1122. Player.Chatted:connect(onChatted)
  1123.  
  1124. abss = Instance.new("BillboardGui",Character)
  1125. abss.Size = UDim2.new(10,0,10,0)
  1126. abss.Enabled = false
  1127. abss.Name = "ROCKYMOUNT"
  1128. imgl = Instance.new("ImageLabel",abss)
  1129. imgl.Position = UDim2.new(0,0,0,0)
  1130. imgl.Size = UDim2.new(1,0,1,0)
  1131. imgl.Image = "rbxassetid://711463989"
  1132. imgl.BackgroundTransparency = 1
  1133. imgl.ImageColor3 = Color3.new(0,255,255)
  1134. img2 = Instance.new("ImageLabel",abss)
  1135. img2.Position = UDim2.new(0,0,0,0)
  1136. img2.Size = UDim2.new(1,0,1,0)
  1137. img2.Image = "rbxassetid://711463989"
  1138. img2.BackgroundTransparency = 1
  1139. img2.ImageColor3 = Color3.new(0,255,255)
  1140.  
  1141.  
  1142.  
  1143.  
  1144.  
  1145.  
  1146.  
  1147. function TargetSelect(person)
  1148. local dd=coroutine.wrap(function()
  1149. if targetted ~= person then
  1150. targetted = person
  1151. img2.Size = UDim2.new(1,0,1,0)
  1152. img2.ImageTransparency = 0
  1153. img2.Image = "rbxassetid://711463989"
  1154. img2.Position = UDim2.new(0,0,0,0)
  1155. for i = 0, 2, 0.1 do
  1156. swait()
  1157. img2.Size = img2.Size + UDim2.new(.05,0,.05,0)
  1158. img2.Position = img2.Position + UDim2.new(-.025,0,-.025,0)
  1159. img2.ImageTransparency = img2.ImageTransparency + 0.05
  1160. end
  1161. end
  1162. end)
  1163. dd()
  1164. end
  1165.  
  1166. function LockOn()
  1167. if Mouse.Target.Parent ~= Character and Mouse.Target.Parent.Parent ~= Character and Mouse.Target.Parent:FindFirstChild("Humanoid") ~= nil then
  1168. TargetSelect(Mouse.Target.Parent)
  1169. target = Mouse.Target.Parent
  1170. end
  1171. end
  1172.  
  1173.  
  1174.  
  1175. function Teleport()
  1176. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=153613030", Torso, 1, 1)
  1177. RootPart.CFrame = targetted.Torso.CFrame * CFrame.new(0,0,4)
  1178. end
  1179.  
  1180. HC = Neck
  1181. RAC = RS
  1182. LAC = LS
  1183. RLC = RH
  1184. LLC = LH
  1185. TCF = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  1186. HCF = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  1187. RACF = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1188. LACF = CFrame.new(-1, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1189. RLCF = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1190. LLCF = CFrame.new(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1191. RWF = CFrame.new(-1.5, 0, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  1192. LWF = CFrame.new(1.5, 0, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  1193. RLWF = CFrame.new(-.5, 2, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  1194. LLWF = CFrame.new(.5, 2, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  1195. RW = Instance.new("Weld",HC.Parent)
  1196. RW.Part1 = HC.Parent
  1197. RW.Part0 = chara["Right Arm"]
  1198. RW.C0 = RWF
  1199. LW = Instance.new("Weld",HC.Parent)
  1200. LW.Part1 = HC.Parent
  1201. LW.Part0 = chara["Left Arm"]
  1202. LW.C0 = LWF
  1203. RLW = nil
  1204. LLW = nil
  1205. bc = BrickColor.new
  1206. --ok
  1207. ------------------------------Keys--------------------------
  1208. function ExplodeFast(rad,par)
  1209. local expart = Instance.new("Part",script.Parent)
  1210. local expart2 = Instance.new("Part",script.Parent)
  1211. local partMesh = Instance.new("SpecialMesh",expart)
  1212. partMesh.MeshType = "Sphere"
  1213. local partMesh2 = Instance.new("SpecialMesh",expart2)
  1214. partMesh2.MeshType = "Sphere"
  1215. local expld = Instance.new("Explosion", script.Parent)
  1216. expld.Visible = false
  1217. local plode = Instance.new("Sound",expart)
  1218. plode.SoundId = "rbxassetid://153274423"
  1219. plode.Volume = 2.5
  1220. plode.Pitch = 1
  1221. plode.Looped = false
  1222. plode:Play()
  1223. local ploder = Instance.new("Sound",expart)
  1224. ploder.SoundId = "rbxassetid://130972023"
  1225. ploder.Volume = 2.5
  1226. ploder.Pitch = 1
  1227. ploder.Looped = false
  1228. ploder:Play()
  1229. expld.BlastRadius = rad
  1230. expld.Position = par.Position
  1231. partMesh.Scale = vt(rad,rad,rad)
  1232. expart.Size = vt(1,1,1)*1.5
  1233. expart.Transparency = 0
  1234. expart.Anchored = true
  1235. expart.Material = "Neon"
  1236. expart.BrickColor = bc("Really black")
  1237. expart.CFrame = par.CFrame
  1238. partMesh2.Scale = vt(rad,rad,rad)
  1239. expart2.Size = vt(1.15,1.15,1.15)*1.5
  1240. expart2.Transparency = 0.5
  1241. expart2.Anchored = true
  1242. expart2.Material = "Neon"
  1243. expart2.BrickColor = bc("Cyan")
  1244. expart2.CFrame = par.CFrame
  1245. local value = 1*rad/6.5
  1246. par:Destroy()
  1247. for i = 0, 100 do
  1248. partMesh.Scale = partMesh.Scale + vt(value,value,value)
  1249. expart.CFrame = expart.CFrame
  1250. partMesh2.Scale = partMesh2.Scale + vt(value,value,value)
  1251. expart2.CFrame = expart.CFrame
  1252. value = value - 0.035*rad/6.5
  1253. if value < 1 then
  1254. value = 0.25
  1255. expart.Transparency = expart.Transparency + 0.025
  1256. expart2.Transparency = expart2.Transparency + 0.025
  1257. end
  1258. wait()
  1259. end
  1260. plode.Parent = nil
  1261. ploder.Parent = nil
  1262. expart.Parent = nil
  1263. expart2.Parent = nil
  1264. expld.Parent = nil
  1265. end
  1266.  
  1267.  
  1268.  
  1269. local children = GetChildren
  1270.  
  1271. Mouse.KeyDown:connect(function(key)
  1272. if key == "q" then
  1273. LockOn()
  1274. elseif key == "e" and targetted ~= nil then
  1275. Teleport()
  1276. elseif key == "z" and targetted ~= nil and attack == false and target ~= nil then
  1277. attack = true
  1278. abss.Enabled = false
  1279. Teleport()
  1280. target.Torso.Anchored = true
  1281. Torso.Anchored = true
  1282. wait(1)
  1283. chatfunc('How many minutes will you last?')
  1284. wait(4)
  1285. coroutine.wrap(function()
  1286. for i,v in pairs(target:children()) do
  1287. if v:IsA("Accessory") then
  1288. v:Destroy()
  1289. end
  1290. end
  1291. for i,v in pairs(target:children()) do
  1292. if v:IsA("Part") then
  1293. v.Transparency = 1
  1294. end
  1295. end
  1296. target:BreakJoints()
  1297. ExplodeFast(4,target.Torso)
  1298. end)()
  1299. wait(.2)
  1300. wait(1)
  1301. Torso.Anchored = false
  1302. attack = false
  1303. end
  1304. end)
  1305.  
  1306.  
  1307.  
  1308.  
  1309.  
  1310.  
  1311. local stanceToggle = "Landed"
  1312. local animpose = "Landed"
  1313. local lastanimpose = "Landed"
  1314.  
  1315. local animpose = "Idle"
  1316. local lastanimpose = "Idle"
  1317. local sine = 0
  1318. local change = 1
  1319. local val = 0
  1320. local ffing = false
  1321. local player = p
  1322. local pchar = player.Character
  1323. local mouse = player:GetMouse()
  1324. local cam = workspace.CurrentCamera
  1325. local rad = math.rad
  1326. local keysDown = {}
  1327. local flySpeed = 0
  1328. local MAX_FLY_SPEED = 50
  1329. local canFly = false
  1330. local flyToggled = false
  1331. local forward, side = 0, 0
  1332. local lastForward, lastSide = 0, 0
  1333. local floatBP = Instance.new("BodyPosition")
  1334. x = Instance.new("Sound", char)
  1335. x.SoundId = "http://www.roblox.com/asset/?id=198360408"
  1336. x.Looped = true
  1337. x.Volume = 9
  1338. local footsteps = false
  1339. game:GetService("RunService").RenderStepped:connect(function()
  1340. if char.Humanoid.Health > 0 then
  1341. if char.Humanoid.Jump == true then
  1342. jumpn = true
  1343. else
  1344. jumpn = false
  1345. end
  1346. char.Humanoid.FreeFalling:connect(function(f)
  1347. if f then
  1348. ffing = true
  1349. else
  1350. ffing = false
  1351. end
  1352. end)
  1353. sine = sine + change
  1354. if jumpn == true then
  1355. animpose = "Jumping"
  1356. elseif ffing == true then
  1357. animpose = "Freefalling"
  1358. elseif (torso.Velocity * Vector3.new(1, 0, 1)).magnitude < 2 then
  1359. animpose = "Idle"
  1360. elseif (torso.Velocity * Vector3.new(1, 0, 1)).magnitude < 20 then
  1361. animpose = "Walking"
  1362. elseif (torso.Velocity * Vector3.new(1, 0, 1)).magnitude > 20 then
  1363. animpose = "Running"
  1364. end
  1365. if animpose ~= lastanimpose then
  1366. sine = 0
  1367. if Debounces.NoIdl == false then
  1368. if stanceToggle == "Floating" then
  1369. change = 1
  1370. 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)
  1371. 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)
  1372. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-8)), 0.6)
  1373. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(8)), 0.6)
  1374. end
  1375. elseif stanceToggle == "Landed" then
  1376. change = 1
  1377. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
  1378. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
  1379. elseif stanceToggle == "Sitting" then
  1380. change = 1
  1381. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
  1382. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
  1383. wait()
  1384. end
  1385. else
  1386. end
  1387. lastanimpose = animpose
  1388. if Debounces.NoIdl == false then
  1389. if animpose == "Idle" then
  1390. if stanceToggle == "Floating" then
  1391. change = 0.5
  1392. 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)
  1393. 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)
  1394. 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)
  1395. 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)
  1396. 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)
  1397. 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)
  1398. elseif stanceToggle == "Landed" then
  1399. 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)
  1400. 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)
  1401. 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)
  1402. 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)
  1403. 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)
  1404. 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)
  1405. elseif stanceToggle == "Sitting" then
  1406. 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)
  1407. 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)
  1408. 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)
  1409. 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)
  1410. 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)
  1411. 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)
  1412. end
  1413. elseif animpose == "Walking" then
  1414. if stanceToggle == "Landed" then
  1415. change = 0.5
  1416. 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)
  1417. 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)
  1418. 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)
  1419. 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)
  1420. 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)
  1421. 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)
  1422. elseif stanceToggle == "Sitting" then
  1423. stanceToggle = "Landed"
  1424. elseif stanceToggle == "Floating" then
  1425. 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)
  1426. 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)
  1427. 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)
  1428. 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)
  1429. 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)
  1430. 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)
  1431. end
  1432. elseif animpose == "Running" then
  1433. change = 1
  1434. if stanceToggle == "Landed" then
  1435. 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)
  1436. 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)
  1437. 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)
  1438. 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)
  1439. 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)
  1440. 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)
  1441. end
  1442. end
  1443. end
  1444. end
  1445. end)
  1446.  
  1447.  
  1448. hum.MaxHealth = math.huge
  1449. wait(3)
  1450. hum.Health = math.huge
  1451.  
  1452.  
  1453. min:Play()
  1454.  
  1455. while true do
  1456. swait()
  1457. Character.Humanoid.MaxHealth = math.huge
  1458. Character.Humanoid.Health = math.huge
  1459. imgl.Rotation = imgl.Rotation + 3
  1460. img2.Rotation = img2.Rotation + 3
  1461. if targetted ~= nil then
  1462. abss.Adornee = targetted:FindFirstChild("Torso") or targetted:FindFirstChild("UpperTorso")
  1463. abss.Enabled = true
  1464. elseif targetted == nil then
  1465. abss.Adornee = nil
  1466. abss.Enabled = false
  1467. end
  1468.  
  1469. while true and imgl.Rotation >= 360 do
  1470. imgl.Rotation = 0
  1471. img2.Rotation = 0
  1472. end
  1473. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement