Advertisement
ScriptMK

A fee

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