bmrx13

memeba

Sep 19th, 2018
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 162.82 KB | None | 0 0
  1. Player = game.Players.LocalPlayer--https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code by Mokiros")
  7. local rp = RealPlayer
  8. script.Parent = rp.Character
  9.  
  10. --RemoteEvent for communicating
  11. local Event = Instance.new("RemoteEvent")
  12. Event.Name = "UserInput_Event"
  13.  
  14. --Fake event to make stuff like Mouse.KeyDown work
  15. local function fakeEvent()
  16. local t = {_fakeEvent=true,Functions={},Connect=function(self,f)table.insert(self.Functions,f) end}
  17. t.connect = t.Connect
  18. return t
  19. end
  20.  
  21. --Creating fake input objects with fake variables
  22. local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  23. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  24. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  25. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  26. end}
  27. --Merged 2 functions into one by checking amount of arguments
  28. CAS.UnbindAction = CAS.BindAction
  29.  
  30. --This function will trigger the events that have been :Connect()'ed
  31. local function te(self,ev,...)
  32. local t = m[ev]
  33. if t and t._fakeEvent then
  34. for _,f in pairs(t.Functions) do
  35. f(...)
  36. end
  37. end
  38. end
  39. m.TrigEvent = te
  40. UIS.TrigEvent = te
  41.  
  42. Event.OnServerEvent:Connect(function(plr,io)
  43. if plr~=rp then return end
  44. m.Target = io.Target
  45. m.Hit = io.Hit
  46. if not io.isMouse then
  47. local b = io.UserInputState == Enum.UserInputState.Begin
  48. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  49. return m:TrigEvent(b and "Button1Down" or "Button1Up")
  50. end
  51. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  52. return m:TrigEvent(b and "Button2Down" or "Button2Up")
  53. end
  54. for _,t in pairs(CAS.Actions) do
  55. for _,k in pairs(t.Keys) do
  56. if k==io.KeyCode then
  57. t.Function(t.Name,io.UserInputState,io)
  58. end
  59. end
  60. end
  61. m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  62. UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false)
  63. end
  64. end)
  65. Event.Parent = NLS([==[
  66. local Player = game:GetService("Players").LocalPlayer
  67. local Event = script:WaitForChild("UserInput_Event")
  68.  
  69. local Mouse = Player:GetMouse()
  70. local UIS = game:GetService("UserInputService")
  71. local input = function(io,a)
  72. if a then return end
  73. --Since InputObject is a client-side instance, we create and pass table instead
  74. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  75. end
  76. UIS.InputBegan:Connect(input)
  77. UIS.InputEnded:Connect(input)
  78.  
  79. local h,t
  80. --Give the server mouse data 30 times every second, but only if the values changed
  81. --If player is not moving their mouse, client won't fire events
  82. while wait(1/30) do
  83. if h~=Mouse.Hit or t~=Mouse.Target then
  84. h,t=Mouse.Hit,Mouse.Target
  85. Event:FireServer({isMouse=true,Target=t,Hit=h})
  86. end
  87. end]==],Player.Character)
  88.  
  89. ----Sandboxed game object that allows the usage of client-side methods and services
  90. --Real game object
  91. local _rg = game
  92.  
  93. --Metatable for fake service
  94. local fsmt = {
  95. __index = function(self,k)
  96. local s = rawget(self,"_RealService")
  97. if s then
  98. return typeof(s[k])=="function"
  99. and function(_,...)return s[k](s,...)end or s[k]
  100. end
  101. end,
  102. __newindex = function(self,k,v)
  103. local s = rawget(self,"_RealService")
  104. if s then s[k]=v end
  105. end
  106. }
  107. local function FakeService(t,RealService)
  108. t._RealService = typeof(RealService)=="string" and _rg:GetService(RealService) or RealService
  109. return setmetatable(t,fsmt)
  110. end
  111.  
  112. --Fake game object
  113. local g = {
  114. GetService = function(self,s)
  115. return rawget(self,s) or _rg:GetService(s)
  116. end,
  117. Players = FakeService({
  118. LocalPlayer = FakeService({GetMouse=function(self)return m end},Player)
  119. },"Players"),
  120. UserInputService = FakeService(UIS,"UserInputService"),
  121. ContextActionService = FakeService(CAS,"ContextActionService"),
  122. RunService = FakeService({
  123. _btrs = {},
  124. RenderStepped = _rg:GetService("RunService").Heartbeat,
  125. BindToRenderStep = function(self,name,_,fun)
  126. self._btrs[name] = self.Heartbeat:Connect(fun)
  127. end,
  128. UnbindFromRenderStep = function(self,name)
  129. self._btrs[name]:Disconnect()
  130. end,
  131. },"RunService")
  132. }
  133. rawset(g.Players,"localPlayer",g.Players.LocalPlayer)
  134. g.service = g.GetService
  135. FakeService(g,game)
  136. --Changing owner to fake player object to support owner:GetMouse()
  137. game,owner = g,g.Players.LocalPlayer
  138. end
  139. Character = Player.Character
  140. PlayerGui = Player.PlayerGui
  141. Backpack = Player.Backpack
  142. Torso = Character.Torso
  143. Head = Character.Head
  144. Humanoid = Character.Humanoid
  145. LeftArm = Character["Left Arm"]
  146. LeftLeg = Character["Left Leg"]
  147. RightArm = Character["Right Arm"]
  148. RightLeg = Character["Right Leg"]
  149. Character = Player.Character
  150. PlayerGui = Player.PlayerGui
  151. Backpack = Player.Backpack
  152. Torso = Character.Torso
  153. Head = Character.Head
  154. Humanoid = Character.Humanoid
  155. LeftArm = Character["Left Arm"]
  156. LeftLeg = Character["Left Leg"]
  157. RightArm = Character["Right Arm"]
  158. RightLeg = Character["Right Leg"]
  159. LS = Torso["Left Shoulder"]
  160. LH = Torso["Left Hip"]
  161. RS = Torso["Right Shoulder"]
  162. RH = Torso["Right Hip"]
  163. Neck = Torso.Neck
  164. attacktype = 1
  165. vt = Vector3.new
  166. cf = CFrame.new
  167. euler = CFrame.fromEulerAnglesXYZ
  168. angles = CFrame.Angles
  169. necko = cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  170. necko2 = cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  171. LHC0 = cf(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  172. LHC1 = cf(-0.5, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  173. RHC0 = cf(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  174. RHC1 = cf(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  175. RootPart = Character.HumanoidRootPart
  176. RootJoint = RootPart.RootJoint
  177. RootCF = euler(-1.57, 0, 3.14)
  178. attack = false
  179. equipped = true
  180. local Anim = "Idle"
  181. local Effects = {}
  182. cam = workspace.CurrentCamera
  183. ZTarget = nil
  184. RocketTarget = nil
  185. local RbxUtility = LoadLibrary("RbxUtility")
  186. local Create = RbxUtility.Create
  187. local m = Create("Model"){
  188. Parent = Character,
  189. Name = "WeaponModel",
  190. }
  191. mouse = Player:GetMouse()
  192.  
  193. z = Instance.new("Sound", Character)
  194. z.SoundId = "rbxassetid://183973343"
  195. z.Looped = false
  196. z.Pitch = 1
  197. z.Volume = 7
  198. wait(.1)
  199. z:Play()
  200. ----------------------------------------------------
  201. cn,ca,bc,v3,r = CFrame.new,CFrame.Angles,BrickColor.new,Vector3.new,function(a)return (math.random()-.5)*2*(a or 1) end
  202. deg,nf,c3,ins,ma,pi,mr = math.deg,math.floor,Color3.new,Instance.new,math.abs,math.pi,math.rad
  203. local part = function(prnt,cfr,siz,col,anc,canc,tra,mat,typ)
  204. local p = ins(typ or "Part")
  205. p.FormFactor = "Custom"
  206. p.Material = mat
  207. p.Transparency = tra
  208. p.CanCollide = canc
  209. p.Anchored = anc
  210. p.BrickColor = bc(col)
  211. p.Size = siz
  212. p.CFrame = cfr
  213. p.Parent = prnt
  214. p.Locked = true
  215. p.TopSurface,p.BottomSurface = 0,0
  216. p:BreakJoints()
  217. return p
  218. end
  219. local mesh = function(typ,prnt,scal,mtyp,mid,mtx)
  220. local m = ins(typ or "SpecialMesh")
  221. if mtyp then m.MeshType = mtyp end
  222. if mid then m.MeshId = mid end
  223. if mtx then m.TextureId = mtx end
  224. if scal then m.Scale = scal end
  225. m.Parent = prnt
  226. return m
  227. end
  228. function cylinderOpen(cf,col,col2)
  229. local p = part(Character,cf,v3(0,1000,0),col,true,false,.1,"Granite")
  230. local pm = mesh("CylinderMesh",p)
  231. local p2 = part(Character,cf,v3(0,1000,0),col2,true,false,.1,"Granite")
  232. local p2m = mesh("CylinderMesh",p2)
  233. Spawn(function()
  234. for i=.1,1.1,.0125 do
  235. p.Transparency = i
  236. p2.Transparency = i
  237. pm.Scale = pm.Scale + v3(.8,0,.8)
  238. p2m.Scale = p2m.Scale + v3(.5,0,.5)
  239. wait()
  240. end
  241. p:Destroy()
  242. p2:Destroy()
  243. end)
  244. end
  245.  
  246. function expandDong()
  247. local nTarg = Torso
  248. local Orbi = Instance.new('Part')
  249. Orbi.Size = Vector3.new(3,3,3)
  250. Orbi.CanCollide = false
  251. Orbi.Locked = true
  252. Orbi.Shape = 'Ball'
  253. Orbi.Anchored = true
  254. Orbi.Transparency = .6
  255. Orbi.TopSurface,Orbi.BottomSurface = 0,0
  256. Orbi.Name = 'Expand Dong'
  257. Orbi.BrickColor = BrickColor.new('Dark Blue')
  258.  
  259. local OrbiMesh = Instance.new('SpecialMesh',Orbi)
  260. OrbiMesh.Name = 'Dxpand Eong'
  261. OrbiMesh.Scale = Vector3.new(2, 2, 2)
  262. OrbiMesh.MeshType = 'Sphere'
  263. Orbi.Parent = Character
  264. ypcall(function()
  265. for i = 3,.35,-1 do
  266. OrbiMesh.Scale = OrbiMesh.Scale + Vector3.new(.7, .7, .7)
  267. Orbi.CFrame = nTarg.CFrame
  268. end
  269. for i = .6,1,.05 do
  270. wait(0.04)
  271. Orbi.Transparency = i
  272. end
  273. Orbi:Destroy()
  274. end)
  275. end
  276.  
  277.  
  278. function expandDong2()
  279. local nTarg = Torso
  280. local Orbi = Instance.new('Part')
  281. Orbi.Size = Vector3.new(3,3,3)
  282. Orbi.CanCollide = false
  283. Orbi.Locked = true
  284. Orbi.Shape = 'Ball'
  285. Orbi.Anchored = true
  286. Orbi.Transparency = .6
  287. Orbi.TopSurface,Orbi.BottomSurface = 0,0
  288. Orbi.Name = 'Expand Dong'
  289. Orbi.BrickColor = BrickColor.new('Really black')
  290.  
  291. local OrbiMesh = Instance.new('SpecialMesh',Orbi)
  292. OrbiMesh.Name = 'Dxpand Eong'
  293. OrbiMesh.Scale = Vector3.new(2.5, 2.5, 2.5)
  294. OrbiMesh.MeshType = 'Sphere'
  295. Orbi.Parent = Character
  296. ypcall(function()
  297. for i = 3,0,-1 do
  298. OrbiMesh.Scale = OrbiMesh.Scale + Vector3.new(.7, .7, .7)
  299. Orbi.CFrame = nTarg.CFrame
  300. end
  301. for i = .6,1,.05 do
  302. wait(0.04)
  303. Orbi.Transparency = i
  304. end
  305. Orbi:Destroy()
  306. end)
  307. end
  308. cylinderOpen(Torso.CFrame,"Dark blue","Really black")
  309. expandDong2()
  310. expandDong()
  311.  
  312. wait(1)
  313. local p = game.Players.LocalPlayer
  314. repeat wait() until p
  315. local char = p.Character
  316. repeat wait() until char
  317. local mouse = p:GetMouse()
  318. local larm = char["Left Arm"]
  319. local rarm = char["Right Arm"]
  320. local lleg = char["Left Leg"]
  321. local rleg = char["Right Leg"]
  322. local hed = char.Head
  323. local chatServ = game:GetService("Chat")
  324. local torso = char.Torso
  325. local hum = char.Humanoid
  326. local cam = game.Workspace.CurrentCamera
  327. local root = char.HumanoidRootPart
  328. local deb = false
  329. local shot = 0
  330. local l = game:GetService("Lighting")
  331. local rs = game:GetService("RunService").RenderStepped
  332. local insServ = game:GetService("InsertService")
  333. local debServ = game:GetService("Debris")
  334. local stanceToggle = "Normal"
  335. math.randomseed(os.time())
  336. hum.WalkSpeed = 80
  337. debServ:AddItem(char:WaitForChild("Health"), 0)
  338. char:WaitForChild("Animate").Disabled = true
  339. debServ:AddItem(hum:WaitForChild("Animator"), 0)
  340. hum.MaxHealth = 999999999
  341. wait(0.1)
  342. hum.Health = 999999999
  343. ----------------------------------------------------
  344. local shIRT = char:FindFirstChild("Shirt")
  345. local pANTS = char:FindFirstChild("Pants")
  346. if shIRT then
  347. shIRT:Destroy()
  348. end
  349. if pANTS then
  350. pANTS:Destroy()
  351. end
  352. shirt = Instance.new("Shirt", char)
  353. shirt.Name = "Shirt"
  354. pants = Instance.new("Pants", char)
  355. pants.Name = "Pants"
  356. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=289028097"
  357. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=289028434"
  358. char.Humanoid.JumpPower = 150
  359. ----------------------------------------------------
  360. Debounces = {
  361. on = false;
  362. ks = false;
  363. CanAttack = true;
  364. CanJoke = true;
  365. NoIdl = false;
  366. Slashing = false;
  367. Slashed = false;
  368. Grabbing = false;
  369. Grabbed = false;
  370. }
  371. local Touche = {char.Name, }
  372. ----------------------------------------------------
  373. function lerp(a, b, t) -- Linear interpolation
  374. return a + (b - a)*t
  375. end
  376.  
  377. function slerp(a, b, t) --Spherical interpolation
  378. dot = a:Dot(b)
  379. if dot > 0.99999 or dot < -0.99999 then
  380. return t <= 0.5 and a or b
  381. else
  382. r = math.acos(dot)
  383. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  384. end
  385. end
  386.  
  387. function matrixInterpolate(a, b, t)
  388. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  389. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  390. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  391. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  392. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  393. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  394. local t = v1:Dot(v2)
  395. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  396. return CFrame.new()
  397. end
  398. return CFrame.new(
  399. v0.x, v0.y, v0.z,
  400. v1.x, v1.y, v1.z,
  401. v2.x, v2.y, v2.z,
  402. v3.x, v3.y, v3.z)
  403. end
  404. ----------------------------------------------------
  405. function genWeld(a,b)
  406. local w = Instance.new("Weld",a)
  407. w.Part0 = a
  408. w.Part1 = b
  409. return w
  410. end
  411. function weld(a, b)
  412. local weld = Instance.new("Weld")
  413. weld.Name = "W"
  414. weld.Part0 = a
  415. weld.Part1 = b
  416. weld.C0 = a.CFrame:inverse() * b.CFrame
  417. weld.Parent = a
  418. return weld;
  419. end
  420. ----------------------------------------------------
  421. function Lerp(c1,c2,al)
  422. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  423. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  424. for i,v in pairs(com1) do
  425. com1[i] = v+(com2[i]-v)*al
  426. end
  427. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  428. end
  429. ----------------------------------------------------
  430. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  431. local wld = Instance.new("Motor6D", wp1)
  432. wld.Name = "Weld"
  433. wld.Part0 = wp0
  434. wld.Part1 = wp1
  435. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  436. end
  437. ----------------------------------------------------
  438. for i,v in pairs(char:children()) do
  439. if v:IsA("Hat") then
  440. debServ:AddItem(v, 0)
  441. end
  442. end
  443. for i,v in pairs(hed:children()) do
  444. if v:IsA("Sound") then
  445. debServ:AddItem(v, 0)
  446. end
  447. end
  448. ----------------------------------------------------
  449. function HasntTouched(plrname)
  450. local ret = true
  451. for _, v in pairs(Touche) do
  452. if v == plrname then
  453. ret = false
  454. end
  455. end
  456. return ret
  457. end
  458. ----------------------------------------------------
  459. larm.Size = larm.Size * 2
  460. rarm.Size = rarm.Size * 2
  461. lleg.Size = lleg.Size * 2
  462. rleg.Size = rleg.Size * 2
  463. torso.Size = torso.Size * 2
  464. hed.Size = hed.Size * 2
  465. root.Size = root.Size * 2
  466. ----------------------------------------------------
  467. newWeld(torso, larm, -1.5, 0.5, 0)
  468. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  469. newWeld(torso, rarm, 1.5, 0.5, 0)
  470. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  471. newWeld(torso, hed, 0, 1.5, 0)
  472. newWeld(torso, lleg, -0.5, -1, 0)
  473. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  474. newWeld(torso, rleg, 0.5, -1, 0)
  475. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  476. newWeld(root, torso, 0, -1, 0)
  477. torso.Weld.C1 = CFrame.new(0, -1, 0)
  478. ----------------------------------------------------
  479. local HBill = Instance.new("BillboardGui", hed)
  480. local HMain, HBarBack, HBar = Instance.new("Frame", HBill), Instance.new("Frame"), Instance.new("Frame")
  481. local HHealth, HName = Instance.new("TextLabel", HBarBack), Instance.new("TextLabel")
  482. HBill.Size = UDim2.new(20,0,2.2,0)
  483. HBill.StudsOffset = Vector3.new(0,4,0)
  484. HBill.AlwaysOnTop = true
  485. HMain.BackgroundColor3 = Color3.new(0/255, 0, 0/255)
  486. HMain.BackgroundTransparency = 0.6
  487. HMain.Size = UDim2.new(1,0,1,0)
  488. HBarBack.Parent = HMain
  489. HBarBack.BackgroundColor3 = Color3.new(0/255,0/255,0/255)
  490. HBarBack.BorderColor3 = Color3.new(0,0,0)
  491. HBarBack.BorderSizePixel = 2
  492. HBarBack.Position = UDim2.new(.025, 0, .55, 0)
  493. HBarBack.Size = UDim2.new(.95, 0, .25, 0)
  494. HBar.Parent = HBarBack
  495. HBar.BackgroundColor3 = Color3.new(0, 0/255, 225)
  496. HBar.BorderColor3 = Color3.new(0,0,0)
  497. HBar.Size = UDim2.new(.5,0,1,0)
  498. HHealth.BackgroundTransparency = 1
  499. HHealth.Size = UDim2.new(1,0,1,0)
  500. HHealth.Font = "SourceSans"
  501. HHealth.Text = "[10/10]"
  502. HHealth.TextScaled = true
  503. HHealth.TextColor3 = Color3.new(1,1,1)
  504. HName.Parent = HMain
  505. HName.BackgroundTransparency = 1
  506. HName.Size = UDim2.new(1,0,.35,0)
  507. HName.Font = "SourceSansItalic"
  508. HName.Text = "Dominus King"
  509. HName.TextScaled = true
  510. HName.TextColor3 = Color3.new(0/255, 0, 255/255)
  511. HName.TextStrokeColor3 = Color3.new(1,1,1)
  512. HName.TextStrokeTransparency = 0
  513. HName.TextYAlignment = "Top"
  514. rs:connect(function()
  515. HHealth.Text = "HP["..hum.Health.."]"
  516. HBar:TweenSize(UDim2.new((hum.Health/hum.MaxHealth),0,1,0), _, "Linear", .4)
  517. end)
  518.  
  519. local DHandle = Instance.new("Part")
  520. local DMesh = Instance.new("SpecialMesh")
  521. local DWeld = Instance.new("Weld")
  522. DHandle.Parent = char
  523. DHandle.Name = "Handle"
  524. DHandle.CanCollide = false
  525. DHandle.Locked = true
  526. DHandle.Size = Vector3.new(1.93, 1.77, 1.6)
  527. DMesh.Parent = DHandle
  528. DMesh.MeshId = "http://www.roblox.com/asset/?id=21057410"
  529. DMesh.TextureId = "http://www.roblox.com/asset/?id=21057378"
  530. DMesh.Scale = DMesh.Scale * 1.8
  531. DWeld.Parent = DHandle
  532. DWeld.Name = "no"
  533. DWeld.Part0 = hed
  534. DWeld.Part1 = DHandle
  535. DWeld.C0 = CFrame.new(0,0,-0.7) * CFrame.fromEulerAnglesXYZ(math.rad(-20),0,0)
  536. hed.face.Texture = "rbxassetid://0"
  537. hed.Transparency = 1
  538. local eye1 = Instance.new("Part")
  539. eye1.BrickColor = BrickColor.new("Dark blue")
  540. eye1.Material = "Neon"
  541. eye1.Transparency = 1
  542. eye1.Name = "oi"
  543. eye1.Size = Vector3.new(.1,.1,.1)
  544. eye1.CanCollide = false
  545. eye1.Anchored = false
  546. eye1.Locked = true
  547. eye1.CFrame = hed.CFrame
  548. local eye1weld = Instance.new("Weld")
  549. eye1weld.Parent = DHandle
  550. eye1weld.Name = "nooo"
  551. eye1weld.Part0 = DHandle
  552. eye1weld.Part1 = eye1
  553. eye1weld.C0 = CFrame.new(0.6,0.58,-0.8) * CFrame.fromEulerAnglesXYZ(math.rad(0), math.rad(20), math.rad(0))
  554. eye1.Parent = DHandle
  555. local eye2 = Instance.new("Part")
  556. eye2.BrickColor = BrickColor.new("Dark blue")
  557. eye2.Material = "Neon"
  558. eye2.Transparency = 1
  559. eye2.Name = "oi"
  560. eye2.Size = Vector3.new(.1,.1,.1)
  561. eye2.CanCollide = false
  562. eye2.Anchored = false
  563. eye2.Locked = true
  564. eye2.CFrame = hed.CFrame
  565. local eye2weld = Instance.new("Weld")
  566. eye2weld.Parent = DHandle
  567. eye2weld.Name = "nooo"
  568. eye2weld.Part0 = DHandle
  569. eye2weld.Part1 = eye2
  570. eye2weld.C0 = CFrame.new(-0.6,0.58,-0.8) * CFrame.fromEulerAnglesXYZ(math.rad(0), math.rad(-20), math.rad(0))
  571. eye2.Parent = DHandle
  572. local transPoints = {
  573. NumberSequenceKeypoint.new(0,.469,0),
  574. NumberSequenceKeypoint.new(.217,.375,.0187),
  575. NumberSequenceKeypoint.new(.381,.262,0),
  576. NumberSequenceKeypoint.new(.574,.462,.05),
  577. NumberSequenceKeypoint.new(.757,.769,.0315),
  578. NumberSequenceKeypoint.new(1,1,0),
  579. }
  580. local sizePoints = {
  581. NumberSequenceKeypoint.new(0,0,0),
  582. NumberSequenceKeypoint.new(.107,.55,0),
  583. NumberSequenceKeypoint.new(.326,.712,0),
  584. NumberSequenceKeypoint.new(.984,.23,0),
  585. NumberSequenceKeypoint.new(1,0,0),
  586. }
  587. local ESize = NumberSequence.new(sizePoints)
  588. local ETransparency = NumberSequence.new(transPoints)
  589. local Glow = Instance.new("ParticleEmitter")
  590. Glow.Color = ColorSequence.new(eye1.BrickColor.Color)
  591. Glow.LightEmission = .5
  592. Glow.Size = ESize
  593. Glow.Name = "noice"
  594. Glow.Transparency = ETransparency
  595. Glow.EmissionDirection = "Left"
  596. Glow.LockedToPart = true
  597. Glow.VelocityInheritance = 1
  598. Glow.LockedToPart = true
  599. Glow.Rate = 200
  600. Glow.Texture = "http://www.roblox.com/asset/?id=37332909"
  601. Glow.Lifetime = NumberRange.new(0.5)
  602. Glow.RotSpeed = NumberRange.new(100)
  603. Glow.Speed = NumberRange.new(10)
  604. Glow.VelocitySpread = 5
  605. Glow.Parent = eye1
  606. local Glow2 = Glow:Clone()
  607. Glow2.Parent = eye2
  608. Glow2.EmissionDirection = "Right"
  609. ----------------------------------------------------
  610. z = Instance.new("Sound", char)
  611. z.SoundId = "rbxassetid://319101193"
  612. z.Looped = true
  613. z.Pitch = 1
  614. z.Volume = 1.0
  615. wait(.01)
  616. z:Play()
  617. ----------------------------------------------------
  618. local m = Instance.new("Model")
  619. m.Name = "Absolution"
  620. p1 = Instance.new("Part", m)
  621. p1.BrickColor = BrickColor.new("Black metallic")
  622. p1.FormFactor = Enum.FormFactor.Custom
  623. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  624. p1.CFrame = CFrame.new(67.4994888, 12.1560526, 73.0205841, 0.999972522, -3.59117985e-005, -8.00192356e-006, -1.39250187e-005, 0.358383715, -0.933530986, 5.28097153e-005, 0.933500648, 0.358406395)
  625. p1.CanCollide = false
  626. p1.Locked = true
  627. p1.Elasticity = 0
  628. p1.BottomSurface = Enum.SurfaceType.Smooth
  629. p1.TopSurface = Enum.SurfaceType.Smooth
  630. b1 = Instance.new("SpecialMesh", p1)
  631. b1.MeshType = Enum.MeshType.Wedge
  632. b1.Name = "Mesh"
  633. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  634. p2 = Instance.new("Part", m)
  635. p2.BrickColor = BrickColor.new("Dark blue")
  636. p2.Material = "Neon"
  637. p2.FormFactor = Enum.FormFactor.Custom
  638. p2.Size = Vector3.new(1, 2.9000001, 1)
  639. p2.CFrame = CFrame.new(67.4995728, 11.7633543, 74.2129135, -1.30959779e-005, 2.79811252e-006, 0.999972522, 0.961226642, 0.275612593, -7.50799518e-006, -0.275637805, 0.96119839, 1.01176247e-005)
  640. p2.CanCollide = false
  641. p2.Locked = true
  642. p2.Elasticity = 0
  643. p2.BottomSurface = Enum.SurfaceType.Smooth
  644. p2.TopSurface = Enum.SurfaceType.Smooth
  645. b2 = Instance.new("BlockMesh", p2)
  646. b2.Name = "Mesh"
  647. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  648. p3 = Instance.new("Part", m)
  649. p3.BrickColor = BrickColor.new("Black metallic")
  650. p3.FormFactor = Enum.FormFactor.Custom
  651. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  652. p3.CFrame = CFrame.new(67.4994965, 12.6401453, 73.9670334, 0.999972522, -3.52207899e-005, -8.10639358e-006, -1.61500211e-005, 0.309035271, -0.951007903, 5.24176576e-005, 0.950978875, 0.309059501)
  653. p3.CanCollide = false
  654. p3.Locked = true
  655. p3.Elasticity = 0
  656. p3.BottomSurface = Enum.SurfaceType.Smooth
  657. p3.TopSurface = Enum.SurfaceType.Smooth
  658. b3 = Instance.new("SpecialMesh", p3)
  659. b3.MeshType = Enum.MeshType.Wedge
  660. b3.Name = "Mesh"
  661. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  662. p4 = Instance.new("Part", m)
  663. p4.BrickColor = BrickColor.new("Black metallic")
  664. p4.FormFactor = Enum.FormFactor.Custom
  665. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  666. p4.CFrame = CFrame.new(67.4995575, 11.8683414, 76.1565704, 0.999972522, -2.5085672e-005, -1.53700166e-005, -4.86194367e-005, -0.800831437, -0.598821938, 1.9131101e-005, 0.598835468, -0.800796151)
  667. p4.CanCollide = false
  668. p4.Locked = true
  669. p4.Elasticity = 0
  670. p4.BottomSurface = Enum.SurfaceType.Smooth
  671. p4.TopSurface = Enum.SurfaceType.Smooth
  672. b4 = Instance.new("SpecialMesh", p4)
  673. b4.MeshType = Enum.MeshType.Wedge
  674. b4.Name = "Mesh"
  675. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  676. p5 = Instance.new("Part", m)
  677. p5.BrickColor = BrickColor.new("Black metallic")
  678. p5.FormFactor = Enum.FormFactor.Custom
  679. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  680. p5.CFrame = CFrame.new(67.4995193, 13.241991, 74.8357468, 0.999972522, -3.59118021e-005, -8.00191992e-006, -1.39250224e-005, 0.358383656, -0.933530807, 5.2809708e-005, 0.933500469, 0.358406246)
  681. p5.CanCollide = false
  682. p5.Locked = true
  683. p5.Elasticity = 0
  684. p5.BottomSurface = Enum.SurfaceType.Smooth
  685. p5.TopSurface = Enum.SurfaceType.Smooth
  686. b5 = Instance.new("SpecialMesh", p5)
  687. b5.MeshType = Enum.MeshType.Wedge
  688. b5.Name = "Mesh"
  689. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  690. p6 = Instance.new("Part", m)
  691. p6.Name = "Handle"
  692. p6.BrickColor = BrickColor.new("Dark blue")
  693. p6.Material = "Neon"
  694. p6.FormFactor = Enum.FormFactor.Custom
  695. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  696. p6.CFrame = CFrame.new(67.5017471, 11.2780685, 66.1421967, -1.18190947e-005, 6.28741009e-006, 0.999972522, 0.99995929, -1.39772892e-005, -7.50630716e-006, -1.79708004e-005, 0.999939024, 1.01296728e-005)
  697. p6.CanCollide = false
  698. p6.Locked = true
  699. p6.Elasticity = 0
  700. p6.BottomSurface = Enum.SurfaceType.Smooth
  701. p6.TopSurface = Enum.SurfaceType.Smooth
  702. b6 = Instance.new("BlockMesh", p6)
  703. b6.Name = "Mesh"
  704. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  705. p7 = Instance.new("Part", m)
  706. p7.BrickColor = BrickColor.new("Black metallic")
  707. p7.FormFactor = Enum.FormFactor.Custom
  708. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  709. p7.CFrame = CFrame.new(67.5174179, 10.5228004, 76.3114471, 0.999972522, -2.76626724e-005, -6.72184569e-006, -4.7347472e-005, -0.91489929, -0.403581172, 2.14323372e-005, 0.403602213, -0.914867818)
  710. p7.CanCollide = false
  711. p7.Locked = true
  712. p7.Elasticity = 0
  713. p7.BottomSurface = Enum.SurfaceType.Smooth
  714. p7.TopSurface = Enum.SurfaceType.Smooth
  715. b7 = Instance.new("SpecialMesh", p7)
  716. b7.MeshType = Enum.MeshType.Wedge
  717. b7.Name = "Mesh"
  718. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  719. p8 = Instance.new("Part", m)
  720. p8.BrickColor = BrickColor.new("Black metallic")
  721. p8.FormFactor = Enum.FormFactor.Custom
  722. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  723. p8.CFrame = CFrame.new(67.5074387, 8.51285458, 76.8714371, 0.999972522, -2.76626724e-005, -6.72184387e-006, -4.73474684e-005, -0.91489917, -0.403581113, 2.14323354e-005, 0.403602153, -0.914867699)
  724. p8.CanCollide = false
  725. p8.Locked = true
  726. p8.Elasticity = 0
  727. p8.BottomSurface = Enum.SurfaceType.Smooth
  728. p8.TopSurface = Enum.SurfaceType.Smooth
  729. b8 = Instance.new("SpecialMesh", p8)
  730. b8.MeshType = Enum.MeshType.Wedge
  731. b8.Name = "Mesh"
  732. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  733. p9 = Instance.new("Part", m)
  734. p9.BrickColor = BrickColor.new("Dark blue")
  735. p9.Material = "Neon"
  736. p9.FormFactor = Enum.FormFactor.Custom
  737. p9.Size = Vector3.new(1, 1.07999957, 1)
  738. p9.CFrame = CFrame.new(67.5095749, 7.1092, 74.5051422, -2.60536999e-005, -5.21559741e-006, 0.999972522, 0.35323599, -0.935490847, -1.50012565e-005, 0.935460567, 0.353258699, 4.2632455e-005)
  739. p9.CanCollide = false
  740. p9.Locked = true
  741. p9.Elasticity = 0
  742. p9.BottomSurface = Enum.SurfaceType.Smooth
  743. p9.TopSurface = Enum.SurfaceType.Smooth
  744. b9 = Instance.new("BlockMesh", p9)
  745. b9.Name = "Mesh"
  746. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  747. p10 = Instance.new("Part", m)
  748. p10.BrickColor = BrickColor.new("Dark blue")
  749. p10.Material = "Neon"
  750. p10.FormFactor = Enum.FormFactor.Custom
  751. p10.Size = Vector3.new(1, 1.41999948, 1)
  752. p10.CFrame = CFrame.new(67.489624, 8.67401791, 72.7929764, -9.47785156e-006, -9.42233055e-006, 0.999972522, 0.292371064, 0.956263304, -7.54374832e-006, -0.956253231, 0.292334616, 1.01081387e-005)
  753. p10.CanCollide = false
  754. p10.Locked = true
  755. p10.Elasticity = 0
  756. p10.BottomSurface = Enum.SurfaceType.Smooth
  757. p10.TopSurface = Enum.SurfaceType.Smooth
  758. b10 = Instance.new("BlockMesh", p10)
  759. b10.Name = "Mesh"
  760. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  761. p11 = Instance.new("Part", m)
  762. p11.BrickColor = BrickColor.new("Dark blue")
  763. p11.Material = "Neon"
  764. p11.FormFactor = Enum.FormFactor.Custom
  765. p11.Size = Vector3.new(1, 1.50999951, 1)
  766. p11.CFrame = CFrame.new(67.509552, 7.11887455, 70.3475952, -1.87569385e-005, 1.80455972e-005, 0.999972522, -0.36222899, -0.932047009, -9.30004444e-006, 0.932039678, -0.362191886, 4.04359016e-005)
  767. p11.CanCollide = false
  768. p11.Locked = true
  769. p11.Elasticity = 0
  770. p11.BottomSurface = Enum.SurfaceType.Smooth
  771. p11.TopSurface = Enum.SurfaceType.Smooth
  772. b11 = Instance.new("BlockMesh", p11)
  773. b11.Name = "Mesh"
  774. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  775. p12 = Instance.new("Part", m)
  776. p12.Name = "BladeCenter"
  777. p12.BrickColor = BrickColor.new("Really black")
  778. p12.Material = "Pebble"
  779. p12.FormFactor = Enum.FormFactor.Symmetric
  780. p12.Size = Vector3.new(1, 2, 2)
  781. p12.CFrame = CFrame.new(67.4995346, 6.83217764, 72.2514038, -0.999972522, 2.42275873e-005, 0.000103325896, -8.39982677e-005, 4.44650614e-005, -0.999960959, -4.06451727e-005, -0.999940753, -1.25430051e-005)
  782. p12.CanCollide = false
  783. p12.Locked = true
  784. p12.BottomSurface = Enum.SurfaceType.Smooth
  785. p12.TopSurface = Enum.SurfaceType.Smooth
  786. b12 = Instance.new("SpecialMesh", p12)
  787. b12.MeshType = Enum.MeshType.Brick
  788. b12.Name = "Mesh"
  789. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  790. p13 = Instance.new("Part", m)
  791. p13.BrickColor = BrickColor.new("Dark blue")
  792. p13.Material = "Neon"
  793. p13.FormFactor = Enum.FormFactor.Custom
  794. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  795. p13.CFrame = CFrame.new(67.5096359, 9.31026554, 73.9751816, 7.60371313e-006, 1.0943455e-005, 0.999972522, -0.119072244, -0.99284631, -7.55448127e-006, 0.992830038, -0.119038157, 1.01703836e-005)
  796. p13.CanCollide = false
  797. p13.Locked = true
  798. p13.Elasticity = 0
  799. p13.BottomSurface = Enum.SurfaceType.Smooth
  800. p13.TopSurface = Enum.SurfaceType.Smooth
  801. b13 = Instance.new("BlockMesh", p13)
  802. b13.Name = "Mesh"
  803. b13.Scale = Vector3.new(1, 1, 0.400000006)
  804. p14 = Instance.new("Part", m)
  805. p14.BrickColor = BrickColor.new("Dark blue")
  806. p14.Material = "Neon"
  807. p14.FormFactor = Enum.FormFactor.Custom
  808. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  809. p14.CFrame = CFrame.new(67.4896011, 10.1621294, 72.6420059, -1.55498967e-007, -1.33476442e-005, 0.999972522, -0.462319613, 0.886669755, -7.56198779e-006, -0.886637092, -0.462338567, 1.01078904e-005)
  810. p14.CanCollide = false
  811. p14.Locked = true
  812. p14.Elasticity = 0
  813. p14.BottomSurface = Enum.SurfaceType.Smooth
  814. p14.TopSurface = Enum.SurfaceType.Smooth
  815. b14 = Instance.new("BlockMesh", p14)
  816. b14.Name = "Mesh"
  817. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  818. p15 = Instance.new("Part", m)
  819. p15.BrickColor = BrickColor.new("Dark blue")
  820. p15.Material = "Neon"
  821. p15.FormFactor = Enum.FormFactor.Custom
  822. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  823. p15.CFrame = CFrame.new(67.5095901, 9.35303593, 70.6884613, -1.24399676e-005, -4.94209144e-006, 0.999972522, 0.645082474, 0.764063478, -7.52419282e-006, -0.764068604, 0.645045042, 1.0099785e-005)
  824. p15.CanCollide = false
  825. p15.Locked = true
  826. p15.Elasticity = 0
  827. p15.BottomSurface = Enum.SurfaceType.Smooth
  828. p15.TopSurface = Enum.SurfaceType.Smooth
  829. b15 = Instance.new("BlockMesh", p15)
  830. b15.Name = "Mesh"
  831. b15.Scale = Vector3.new(1, 1, 0.400000006)
  832. p16 = Instance.new("Part", m)
  833. p16.BrickColor = BrickColor.new("Dark blue")
  834. p16.Material = "Neon"
  835. p16.FormFactor = Enum.FormFactor.Custom
  836. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  837. p16.CFrame = CFrame.new(67.4996033, 9.63990211, 75.3800278, 2.98175655e-006, 1.30014914e-005, 0.999972522, 0.258795738, -0.965893507, -7.53869244e-006, 0.965865672, 0.258821338, 1.01718706e-005)
  838. p16.CanCollide = false
  839. p16.Locked = true
  840. p16.Elasticity = 0
  841. p16.BottomSurface = Enum.SurfaceType.Smooth
  842. p16.TopSurface = Enum.SurfaceType.Smooth
  843. b16 = Instance.new("BlockMesh", p16)
  844. b16.Name = "Mesh"
  845. b16.Scale = Vector3.new(1, 1, 0.400000006)
  846. p17 = Instance.new("Part", m)
  847. p17.BrickColor = BrickColor.new("Dark blue")
  848. p17.Material = "Neon"
  849. p17.FormFactor = Enum.FormFactor.Custom
  850. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  851. p17.CFrame = CFrame.new(67.499588, 9.28996372, 69.8789978, -9.50601952e-006, -9.41252802e-006, 0.999972522, 0.293352425, 0.955965877, -7.53842551e-006, -0.955955863, 0.293315947, 1.00904235e-005)
  852. p17.CanCollide = false
  853. p17.Locked = true
  854. p17.Elasticity = 0
  855. p17.BottomSurface = Enum.SurfaceType.Smooth
  856. p17.TopSurface = Enum.SurfaceType.Smooth
  857. b17 = Instance.new("BlockMesh", p17)
  858. b17.Name = "Mesh"
  859. b17.Scale = Vector3.new(1, 1, 0.400000006)
  860. p18 = Instance.new("WedgePart", m)
  861. p18.BrickColor = BrickColor.new("Really black")
  862. p18.Name = "BladePart1"
  863. p18.Material = "Pebble"
  864. p18.Name = "Wedge"
  865. p18.FormFactor = Enum.FormFactor.Symmetric
  866. p18.Size = Vector3.new(1, 4, 2)
  867. p18.CFrame = CFrame.new(67.499321, 6.83199787, 69.4816895, 0.999972522, -3.68033288e-005, -4.22928351e-005, 2.29664256e-005, -1.65102574e-005, 0.999963701, -2.03872096e-005, -0.999943435, -4.84290831e-005)
  868. p18.CanCollide = false
  869. p18.Locked = true
  870. p18.BottomSurface = Enum.SurfaceType.Smooth
  871. p18.TopSurface = Enum.SurfaceType.Smooth
  872. b18 = Instance.new("SpecialMesh", p18)
  873. b18.MeshType = Enum.MeshType.Wedge
  874. b18.Name = "Mesh"
  875. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  876. p19 = Instance.new("WedgePart", m)
  877. p19.BrickColor = BrickColor.new("Really black")
  878. p19.Name = "BladePart2"
  879. p19.Material = "Pebble"
  880. p19.Name = "Wedge"
  881. p19.FormFactor = Enum.FormFactor.Symmetric
  882. p19.Size = Vector3.new(1, 4, 2)
  883. p19.CFrame = CFrame.new(67.4994736, 6.83213568, 75.0314102, -0.999972522, 3.68059118e-005, -0.000103325001, -8.40002976e-005, -4.4521752e-005, 0.999963701, 2.03864402e-005, 0.999943435, 1.26029336e-005)
  884. p19.CanCollide = false
  885. p19.Locked = true
  886. p19.BottomSurface = Enum.SurfaceType.Smooth
  887. p19.TopSurface = Enum.SurfaceType.Smooth
  888. b19 = Instance.new("SpecialMesh", p19)
  889. b19.MeshType = Enum.MeshType.Wedge
  890. b19.Name = "Mesh"
  891. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  892. p20 = Instance.new("Part", m)
  893. p20.BrickColor = BrickColor.new("Dark blue")
  894. p20.Material = "Neon"
  895. p20.FormFactor = Enum.FormFactor.Custom
  896. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  897. p20.CFrame = CFrame.new(67.4996414, 7.91898966, 71.4148178, -1.09432585e-005, 7.6432425e-006, 0.999972522, 0.992849231, -0.119072601, -7.55000656e-006, 0.119038492, 0.992832959, 1.01311334e-005)
  898. p20.CanCollide = false
  899. p20.Locked = true
  900. p20.Elasticity = 0
  901. p20.BottomSurface = Enum.SurfaceType.Smooth
  902. p20.TopSurface = Enum.SurfaceType.Smooth
  903. b20 = Instance.new("BlockMesh", p20)
  904. b20.Name = "Mesh"
  905. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  906. p21 = Instance.new("Part", m)
  907. p21.BrickColor = BrickColor.new("Black metallic")
  908. p21.FormFactor = Enum.FormFactor.Custom
  909. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  910. p21.CFrame = CFrame.new(67.509613, 9.57073689, 76.6228256, 0.999972522, -2.50856156e-005, -1.53699839e-005, -4.86196222e-005, -0.800835371, -0.598824739, 1.91311228e-005, 0.59883821, -0.800800025)
  911. p21.CanCollide = false
  912. p21.Locked = true
  913. p21.Elasticity = 0
  914. p21.BottomSurface = Enum.SurfaceType.Smooth
  915. p21.TopSurface = Enum.SurfaceType.Smooth
  916. b21 = Instance.new("SpecialMesh", p21)
  917. b21.MeshType = Enum.MeshType.Wedge
  918. b21.Name = "Mesh"
  919. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  920. w1 = Instance.new("Weld", p1)
  921. w1.Name = "Part_Weld"
  922. w1.Part0 = p1
  923. w1.C0 = CFrame.new(-67.5030899, -72.5280457, -14.8209743, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  924. w1.Part1 = p2
  925. w1.C1 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  926. w2 = Instance.new("Weld", p2)
  927. w2.Name = "Part_Weld"
  928. w2.Part0 = p2
  929. w2.C0 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  930. w2.Part1 = p3
  931. w2.C1 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  932. w3 = Instance.new("Weld", p3)
  933. w3.Name = "Part_Weld"
  934. w3.Part0 = p3
  935. w3.C0 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  936. w3.Part1 = p4
  937. w3.C1 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  938. w4 = Instance.new("Weld", p4)
  939. w4.Name = "Part_Weld"
  940. w4.Part0 = p4
  941. w4.C0 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  942. w4.Part1 = p5
  943. w4.C1 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  944. w5 = Instance.new("Weld", p5)
  945. w5.Name = "Part_Weld"
  946. w5.Part0 = p5
  947. w5.C0 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  948. w5.Part1 = p6
  949. w5.C1 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  950. w6 = Instance.new("Weld", p6)
  951. w6.Name = "Part_Weld"
  952. w6.Part0 = p6
  953. w6.C0 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  954. w6.Part1 = p7
  955. w6.C1 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  956. w7 = Instance.new("Weld", p7)
  957. w7.Name = "Part_Weld"
  958. w7.Part0 = p7
  959. w7.C0 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  960. w7.Part1 = p8
  961. w7.C1 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  962. w8 = Instance.new("Weld", p8)
  963. w8.Name = "Part_Weld"
  964. w8.Part0 = p8
  965. w8.C0 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  966. w8.Part1 = p9
  967. w8.C1 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  968. w9 = Instance.new("Weld", p9)
  969. w9.Name = "Part_Weld"
  970. w9.Part0 = p9
  971. w9.C0 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  972. w9.Part1 = p10
  973. w9.C1 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  974. w10 = Instance.new("Weld", p10)
  975. w10.Name = "Part_Weld"
  976. w10.Part0 = p10
  977. w10.C0 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  978. w10.Part1 = p11
  979. w10.C1 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  980. w11 = Instance.new("Weld", p11)
  981. w11.Name = "Part_Weld"
  982. w11.Part0 = p11
  983. w11.C0 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  984. w11.Part1 = p12
  985. w11.C1 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  986. w12 = Instance.new("Weld", p12)
  987. w12.Name = "Part_Weld"
  988. w12.Part0 = p12
  989. w12.C0 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  990. w12.Part1 = p13
  991. w12.C1 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  992. w13 = Instance.new("Weld", p13)
  993. w13.Name = "Part_Weld"
  994. w13.Part0 = p13
  995. w13.C0 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  996. w13.Part1 = p14
  997. w13.C1 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  998. w14 = Instance.new("Weld", p14)
  999. w14.Name = "Part_Weld"
  1000. w14.Part0 = p14
  1001. w14.C0 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  1002. w14.Part1 = p15
  1003. w14.C1 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  1004. w15 = Instance.new("Weld", p15)
  1005. w15.Name = "Part_Weld"
  1006. w15.Part0 = p15
  1007. w15.C0 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  1008. w15.Part1 = p16
  1009. w15.C1 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  1010. w16 = Instance.new("Weld", p16)
  1011. w16.Name = "Part_Weld"
  1012. w16.Part0 = p16
  1013. w16.C0 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  1014. w16.Part1 = p17
  1015. w16.C1 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  1016. w17 = Instance.new("Weld", p17)
  1017. w17.Name = "Wedge_Weld"
  1018. w17.Part0 = p17
  1019. w17.C0 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  1020. w17.Part1 = p18
  1021. w17.C1 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  1022. w18 = Instance.new("Weld", p18)
  1023. w18.Name = "Wedge_Weld"
  1024. w18.Part0 = p18
  1025. w18.C0 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  1026. w18.Part1 = p19
  1027. w18.C1 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  1028. w19 = Instance.new("Weld", p19)
  1029. w19.Name = "Part_Weld"
  1030. w19.Part0 = p19
  1031. w19.C0 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  1032. w19.Part1 = p20
  1033. w19.C1 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  1034. w20 = Instance.new("Weld", p20)
  1035. w20.Name = "Part_Weld"
  1036. w20.Part0 = p20
  1037. w20.C0 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  1038. w20.Part1 = p21
  1039. w20.C1 = CFrame.new(-67.5104218, -38.2193756, 67.100563, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  1040. m.Parent = char
  1041. m:MakeJoints()
  1042. ----------------------------------------------------
  1043. local cor = Instance.new("Part", char.Absolution)
  1044. cor.Name = "Thingy"
  1045. cor.Locked = true
  1046. cor.BottomSurface = 0
  1047. cor.CanCollide = false
  1048. cor.Size = Vector3.new(1, 13, 1)
  1049. cor.Transparency = 1
  1050. cor.TopSurface = 0
  1051. corw = Instance.new("Weld", cor)
  1052. corw.Part0 = rarm
  1053. corw.Part1 = cor
  1054. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1055. corw.C1 = CFrame.new(0, 0, 0)
  1056. weld1 = Instance.new("Weld", char.Absolution)
  1057. weld1.Part0 = cor
  1058. weld1.Part1 = p6
  1059. weld1.C0 = CFrame.new(0, 0, 0)
  1060. ----------------------------------------------------
  1061. hitb = Instance.new("Part", char.Absolution)
  1062. hitb.Name = "Thingy2"
  1063. hitb.Locked = true
  1064. hitb.BottomSurface = 0
  1065. hitb.CanCollide = false
  1066. hitb.Size = Vector3.new(0, 8, 6)
  1067. hitb.Transparency = 1
  1068. hitb.TopSurface = 0
  1069. weld2 = Instance.new("Weld", char.Absolution)
  1070. weld2.Part0 = hitb
  1071. weld2.Part1 = p12
  1072. weld2.C0 = CFrame.new(0, .6, 1)
  1073. ----------------------------------------------------
  1074. local m = Instance.new("Model")
  1075. m.Name = "Claw"
  1076. m.Parent = char
  1077.  
  1078. ----------------------------------------------------
  1079.  
  1080. local cor2 = Instance.new("Part", char.Claw)
  1081. cor2.Name = "Thingy"
  1082. cor2.Locked = true
  1083. cor2.BottomSurface = 0
  1084. cor2.CanCollide = false
  1085. cor2.Size = Vector3.new(2, 2, 2)
  1086. cor2.Transparency = 1
  1087. cor2.TopSurface = 0
  1088. corw2 = Instance.new("Weld", cor2)
  1089. corw2.Part0 = larm
  1090. corw2.Part1 = cor2
  1091. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1092. corw2.C1 = CFrame.new(0, 0, 0)
  1093. weld2 = Instance.new("Weld", char.Claw)
  1094. weld2.Part0 = cor2
  1095. weld2.Part1 = larm
  1096. weld2.C0 = CFrame.new(0, 0, 0)
  1097. ----------------------------------------------------
  1098. function weld5(part0, part1, c0, c1)
  1099. weeld=Instance.new("Weld", part0)
  1100. weeld.Part0=part0
  1101. weeld.Part1=part1
  1102. weeld.C0=c0
  1103. weeld.C1=c1
  1104. return weeld
  1105. end
  1106. ----------------------------------------------------
  1107. function newRay(start,face,range,wat)
  1108. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  1109. hit,pos=workspace:FindPartOnRayWithIgnoreList(rey,wat)
  1110. return rey,hit,pos
  1111. end
  1112. ----------------------------------------------------
  1113. mod5 = Instance.new("Model",char)
  1114.  
  1115.  
  1116. local TextEvent = Instance.new("RemoteEvent")
  1117. TextEvent.Parent = char
  1118. TextEvent.Name = "TextEvent"
  1119.  
  1120. local TextTable = {}
  1121.  
  1122. function AdvanceText()
  1123. for i, v in pairs(TextTable) do
  1124. if v~= nil then
  1125. if v.StudsOffset.Y >=5 then
  1126. v.Time.Counter.Value = v.Time.Counter.Value+0.1
  1127. if v.Time.Counter.Value >= v.Time.Value then
  1128. v.WHYYYYYYYY.TextTransparency = v.WHYYYYYYYY.TextTransparency+0.15
  1129. v.WHYYYYYYYY.TextStrokeTransparency = v.WHYYYYYYYY.TextStrokeTransparency+0.15
  1130. if v.WHYYYYYYYY.TextTransparency >= 1 then
  1131. debServ:AddItem(v.Parent,1)
  1132. table.remove(TextTable, i)
  1133. end
  1134. end
  1135. else
  1136. v.StudsOffset = Vector3.new(0,v.StudsOffset.Y+0.15, 0)
  1137. end
  1138. end
  1139. end
  1140. end
  1141.  
  1142. rs:connect(function()
  1143. AdvanceText()
  1144. end)
  1145.  
  1146. function MakeText(text, font, duration, tcr, tcg, tcb, scr, scg, scb, cFrame)
  1147. local tpart = Instance.new("Part")
  1148. tpart.Parent = char
  1149. tpart.Transparency = 1
  1150. tpart.Name = "hoi hoi"
  1151. tpart.Anchored = true
  1152. tpart.CanCollide = false
  1153. tpart.Locked = true
  1154. tpart.Size = Vector3.new(.2,.2,.2)
  1155. tpart.CFrame = cFrame*CFrame.new(math.random(-3,3),0,math.random(-3,3))
  1156. local bill = Instance.new("BillboardGui")
  1157. bill.Parent = tpart
  1158. bill.AlwaysOnTop = true
  1159. bill.Name = "HUHHHHHNAAAA"
  1160. bill.Size = UDim2.new(4, 0, 4, 0)
  1161. bill.StudsOffset = Vector3.new(0, 1, 0)
  1162. local tem = Instance.new("NumberValue", bill)
  1163. tem.Value = duration
  1164. tem.Name = "Time"
  1165. local counter = Instance.new("NumberValue", tem)
  1166. counter.Value = 0
  1167. counter.Name = "Counter"
  1168. local textl = Instance.new("TextLabel")
  1169. textl.Parent = bill
  1170. textl.Name = "WHYYYYYYYY"
  1171. textl.BackgroundTransparency = 1
  1172. textl.Size = UDim2.new(1, 0, 1, 0)
  1173. textl.Font = font
  1174. textl.Text = text
  1175. textl.TextColor3 = Color3.new(0/255, 0/255, 255/255)
  1176. textl.TextScaled = true
  1177. textl.TextStrokeColor3 = Color3.new(0/255, 0/255, 225/255)
  1178. textl.TextStrokeTransparency = 0
  1179. table.insert(TextTable, bill)
  1180. end
  1181.  
  1182. function FindNearestTorso(Position,Distance,SinglePlayer)
  1183. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1184. local List = {}
  1185. for i,v in pairs(workspace:GetChildren())do
  1186. if v:IsA("Model")then
  1187. if v:findFirstChild("Torso")then
  1188. if v ~= char then
  1189. if(v.Torso.Position -Position).magnitude <= Distance then
  1190. table.insert(List,v)
  1191. end
  1192. end
  1193. end
  1194. end
  1195. end
  1196. return List
  1197. end
  1198.  
  1199. function Landing()
  1200. part=Instance.new('Part',mod5)
  1201. part.Anchored=true
  1202. part.CanCollide=false
  1203. part.FormFactor='Custom'
  1204. part.Size=Vector3.new(.2,.2,.2)
  1205. part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  1206. part.Transparency=.7
  1207. part.BrickColor=BrickColor.new('Dark blue')
  1208. mesh=Instance.new('SpecialMesh',part)
  1209. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1210. mesh.Scale=Vector3.new(10,5,10)
  1211.  
  1212. for i,v in pairs(FindNearestTorso(torso.CFrame.p,40))do
  1213. if v:FindFirstChild('Humanoid') then
  1214. v.Humanoid.PlatformStand = true
  1215. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 300
  1216. local damfam = math.random(100, 200)
  1217. v.Humanoid.Health = v.Humanoid.Health-damfam
  1218. local CF = v.HumanoidRootPart.CFrame*CFrame.new(0,2,0)
  1219. MakeText("-"..damfam.."", "SourceSansLight", 2, 40, 0, 60, 139, 0, 209, CF)
  1220. end
  1221. end
  1222.  
  1223. coroutine.resume(coroutine.create(function()
  1224. for i=0,3.8,0.05 do
  1225. wait()
  1226. part.CFrame=part.CFrame
  1227. part.Transparency=i
  1228. mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  1229. end
  1230. part.Parent = nil
  1231. end))
  1232. end
  1233. ----------------------------------------------------
  1234. mod4 = Instance.new("Model",char)
  1235.  
  1236. ptez = {0.7, 0.8, 0.9, 1}
  1237.  
  1238. function FindNearestTorso(Position,Distance,SinglePlayer)
  1239. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1240. local List = {}
  1241. for i,v in pairs(workspace:GetChildren())do
  1242. if v:IsA("Model")then
  1243. if v:findFirstChild("Torso")then
  1244. if v ~= char then
  1245. if(v.Torso.Position -Position).magnitude <= Distance then
  1246. table.insert(List,v)
  1247. end
  1248. end
  1249. end
  1250. end
  1251. end
  1252. return List
  1253. end
  1254.  
  1255. function GroundPound()
  1256. chatServ:Chat(hed, "Die..", 2)
  1257. part=Instance.new('Part',mod4)
  1258. part.Anchored=true
  1259. part.CanCollide=false
  1260. part.FormFactor='Custom'
  1261. part.Size=Vector3.new(.2,.2,.2)
  1262. part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  1263. part.Transparency=.7
  1264. part.BrickColor=BrickColor.new('Dark blue')
  1265. mesh=Instance.new('SpecialMesh',part)
  1266. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1267. mesh.Scale=Vector3.new(3,3,3)
  1268. part2=Instance.new('Part',mod4)
  1269. part2.Anchored=true
  1270. part2.CanCollide=false
  1271. part2.FormFactor='Custom'
  1272. part2.Size=Vector3.new(.2,.2,.2)
  1273. part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  1274. part2.Transparency=.7
  1275. part2.BrickColor=BrickColor.new('Really black')
  1276. mesh2=Instance.new('SpecialMesh',part2)
  1277. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  1278. mesh2.Scale=Vector3.new(3,1.5,3)
  1279. x = Instance.new("Sound",char)
  1280. x.SoundId = "http://www.roblox.com/asset/?id=165969964"
  1281. x.Pitch = ptez[math.random(1,#ptez)]
  1282. x.Volume = 1
  1283. wait(.1)
  1284. x:Play()
  1285. for i,v in pairs(FindNearestTorso(torso.CFrame.p,30))do
  1286. if v:FindFirstChild('Humanoid') then
  1287. local damfam = math.random(666, 699)
  1288. v.Humanoid.Health = v.Humanoid.Health-damfam
  1289. local CF = v.HumanoidRootPart.CFrame*CFrame.new(0,2,0)
  1290. MakeText("-"..damfam.."", "SourceSansLight", 2, 40, 0, 60, 139, 0, 209, CF)
  1291. end
  1292. end
  1293. coroutine.resume(coroutine.create(function()
  1294. for i=0,0.62,0.13 do
  1295. wait()
  1296. part.CFrame=part.CFrame
  1297. part.Transparency=i
  1298. mesh.Scale=mesh.Scale+Vector3.new(3.8,3.8,3.8)
  1299. part2.CFrame=part2.CFrame
  1300. part2.Transparency=i
  1301. mesh2.Scale=mesh2.Scale+Vector3.new(3.8,3.6,3.8)
  1302. end
  1303. part.Parent=nil
  1304. part2.Parent=nil
  1305. x:Destroy()
  1306. end))
  1307. end
  1308. ----------------------------------------------------
  1309. mod=Instance.new('Model',char)
  1310.  
  1311. function charge()
  1312. hed.Velocity=char.HumanoidRootPart.CFrame.lookVector*500
  1313. part=Instance.new('Part',mod)
  1314. part.Anchored=true
  1315. part.CanCollide=false
  1316. part.FormFactor='Custom'
  1317. part.Size=Vector3.new(.2,.2,.2)
  1318. part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  1319. part.Transparency=.7
  1320. part.BrickColor=BrickColor.new('Black')
  1321. mesh=Instance.new('SpecialMesh',part)
  1322. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1323. mesh.Scale=Vector3.new(10,5,10)
  1324. part2=part:clone()
  1325. part2.Parent=mod
  1326. part2.BrickColor=BrickColor.new('Dark blue')
  1327. mesh2=mesh:clone()
  1328. mesh2.Parent=part2
  1329. mesh2.Scale=Vector3.new(20,10,20)
  1330. part3=part2:clone()
  1331. part3.Parent = mod
  1332. part3.BrickColor=BrickColor.new('White')
  1333. mesh3=mesh2:clone()
  1334. mesh2.Parent=part3
  1335. mesh3.Scale=Vector3.new(30,15,30)
  1336. coroutine.resume(coroutine.create(function()
  1337. for i=0,1,0.1 do
  1338. wait()
  1339. part.CFrame=part.CFrame
  1340. part.Transparency=i
  1341. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  1342. part2.CFrame=part2.CFrame
  1343. part2.Transparency=i
  1344. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  1345. part3.CFrame=part3.CFrame
  1346. part3.Transparency=i
  1347. mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  1348. end
  1349. part.Parent=nil
  1350. part2.Parent=nil
  1351. part3.Parent = nil
  1352. end))
  1353. end
  1354. ----------------------------------------------------
  1355. function FindNearestTorso(Position,Distance,SinglePlayer)
  1356. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1357. local List = {}
  1358. for i,v in pairs(workspace:GetChildren())do
  1359. if v:IsA("Model")then
  1360. if v:findFirstChild("Torso")then
  1361. if v ~= char then
  1362. if(v.Torso.Position -Position).magnitude <= Distance then
  1363. table.insert(List,v)
  1364. end
  1365. end
  1366. end
  1367. end
  1368. end
  1369. return List
  1370. end
  1371.  
  1372. mod3 = Instance.new("Model",rleg)
  1373.  
  1374. function Stomp()
  1375. part=Instance.new('Part',mod3)
  1376. part.Anchored=true
  1377. part.CanCollide=false
  1378. part.FormFactor='Custom'
  1379. part.Size=Vector3.new(.2,.2,.2)
  1380. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  1381. part.Transparency=.7
  1382. part.BrickColor=BrickColor.new('Dark blue')
  1383. mesh=Instance.new('SpecialMesh',part)
  1384. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1385. mesh.Scale=Vector3.new(50,50,50)
  1386. part2=part:clone()
  1387. part2.Parent=mod3
  1388. part2.BrickColor=BrickColor.new('Dark blue')
  1389. mesh2=mesh:clone()
  1390. mesh2.Parent=part2
  1391. mesh2.Scale=Vector3.new(30,30,30)
  1392. part3=part:clone()
  1393. part3.BrickColor = BrickColor.new("Really black")
  1394. part3.Parent=mod3
  1395. part3.TopSurface=0
  1396. part3.BottomSurface=0
  1397. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  1398. mesh3=Instance.new('SpecialMesh',part3)
  1399. mesh3.MeshType = 3
  1400. mesh3.Scale=Vector3.new(20,20,20)
  1401. for i,v in pairs(FindNearestTorso(torso.CFrame.p,100))do
  1402. if v:FindFirstChild('Humanoid') then
  1403. v.Humanoid.PlatformStand = true
  1404. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 1000
  1405. local damfam = 1000
  1406. v.Humanoid.Health = v.Humanoid.Health-damfam
  1407. local CF = v.HumanoidRootPart.CFrame*CFrame.new(0,2,0)
  1408. MakeText("-"..damfam.."", "SourceSansLight", 2, 40, 0, 60, 139, 0, 209, CF)
  1409. end
  1410. end
  1411. coroutine.resume(coroutine.create(function()
  1412. for i=0,3.8,0.05 do
  1413. wait()
  1414. part.CFrame=part.CFrame
  1415. part.Transparency=i
  1416. mesh.Scale=mesh.Scale+Vector3.new(5,5,5)
  1417. part2.CFrame=part2.CFrame
  1418. part2.Transparency=i
  1419. mesh2.Scale=mesh2.Scale+Vector3.new(2,2,2)
  1420. part3.CFrame=part3.CFrame
  1421. part3.Transparency=i
  1422. mesh3.Scale=mesh3.Scale+Vector3.new(3,3,3)
  1423. end
  1424. end))
  1425. end
  1426. ----------------------------------------------------
  1427.  
  1428. local acos = math.acos
  1429. local sqrt = math.sqrt
  1430. local Vec3 = Vector3.new
  1431. local fromAxisAngle = CFrame.fromAxisAngle
  1432.  
  1433. local function toAxisAngle(CFr)
  1434. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  1435. local Angle = math.acos((R00+R11+R22-1)/2)
  1436. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1437. A = A == 0 and 0.00001 or A
  1438. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1439. B = B == 0 and 0.00001 or B
  1440. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1441. C = C == 0 and 0.00001 or C
  1442. local x = (R21-R12)/sqrt(A)
  1443. local y = (R02-R20)/sqrt(B)
  1444. local z = (R10-R01)/sqrt(C)
  1445. return Vec3(x,y,z),Angle
  1446. end
  1447.  
  1448. function ApplyTrig(Num,Func)
  1449. local Min,Max = Func(0),Func(1)
  1450. local i = Func(Num)
  1451. return (i-Min)/(Max-Min)
  1452. --[[if Func == "sin" then
  1453. return (math.sin((1-Num)*math.pi)+1)/2
  1454. elseif Func == "cos" then
  1455. return (math.cos((1-Num)*math.pi)+1)/2
  1456. end]]
  1457. end
  1458.  
  1459. function LerpCFrame(CFrame1,CFrame2,Num)
  1460. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  1461. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  1462. end
  1463.  
  1464. function Crater(Torso,Radius)
  1465. chatServ:Chat(hed, "Just die!", 2)
  1466. Spawn(function()
  1467. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  1468. local Ignore = {}
  1469. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1470. if v.Character ~= nil then
  1471. Ignore[#Ignore+1] = v.Character
  1472. end
  1473. end
  1474. local Hit,Pos,SurfaceNorm = workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  1475. if Hit == nil then return end
  1476. local Parts = {}
  1477. for i = 1,360,10 do
  1478. local P = Instance.new("Part",Torso.Parent)
  1479. P.Anchored = true
  1480. P.FormFactor = "Custom"
  1481. P.BrickColor = Hit.BrickColor
  1482. P.Material = Hit.Material
  1483. P.TopSurface = "Smooth"
  1484. P.BottomSurface = "Smooth"
  1485. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  1486. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,7,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
  1487. Parts[#Parts+1] = {P,P.CFrame,((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,1,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius)*CFrame.Angles(math.rad(math.random(-50,-20)),math.rad(math.random(-15,15)),math.rad(math.random(-15,15))),P.Size}
  1488. if math.random(0,5) == 0 then -- rubble
  1489. local P = Instance.new("Part",Torso.Parent)
  1490. P.Anchored = true
  1491. P.FormFactor = "Custom"
  1492. P.BrickColor = Hit.BrickColor
  1493. P.Material = Hit.Material
  1494. P.TopSurface = "Smooth"
  1495. P.BottomSurface = "Smooth"
  1496. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  1497. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,2.5,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
  1498. Parts[#Parts+1] = {P,P.CFrame,(CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius-8)*CFrame.Angles(math.rad(math.random(-90,90)),math.rad(math.random(-90,90)),math.rad(math.random(-90,90))),P.Size}
  1499. end
  1500. end
  1501. for i = 0,1,0.05 do
  1502. for i2,v in pairs(Parts) do
  1503. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  1504. end
  1505. wait(0.02)
  1506. end
  1507. for i,v in pairs(Parts) do
  1508. if v[1].Size.X > 2.1 then
  1509. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  1510. end
  1511. v[1].Anchored = false
  1512. end
  1513. for i = 0,1,0.05 do
  1514. for i2,v in pairs(Parts) do
  1515. v[1].Transparency = i
  1516. if i == 1 then
  1517. v[1]:Destroy()
  1518. elseif i >= 0.25 then
  1519. v[1].CanCollide = false
  1520. end
  1521. end
  1522. wait(0.02)
  1523. end
  1524. Parts = nil
  1525. end)
  1526. end
  1527.  
  1528. ----------------------------------------------------
  1529. mouse.KeyDown:connect(function(key)
  1530. if key == "r" then
  1531. if Debounces.CanAttack == true then
  1532. chatServ:Chat(hed, "Take..", 2)
  1533. Debounces.CanAttack = false
  1534. Debounces.on = true
  1535. Debounces.NoIdl = true
  1536. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  1537. hit = ht.Parent
  1538. if ht and hit:IsA("Model") then
  1539. if hit:FindFirstChild("Humanoid") then
  1540. if hit.Name ~= p.Name then
  1541. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1542. Debounces.Slashed = true]]--
  1543. local damfam = 500
  1544. hit.Humanoid.Health = hit.Humanoid.Health-damfam
  1545. local CF = hit.HumanoidRootPart.CFrame*CFrame.new(0,2,0)
  1546. MakeText("-"..damfam.."", "SourceSansLight", 2, 40, 0, 60, 139, 0, 209, CF)
  1547. wait(1)
  1548. --Debounces.Slashed = false
  1549. --end
  1550. end
  1551. end
  1552. elseif ht and hit:IsA("Hat") then
  1553. if hit.Parent.Name ~= p.Name then
  1554. if hit.Parent:FindFirstChild("Humanoid") then
  1555. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1556. Debounces.Slashed = true]]--
  1557. local damfam = 500
  1558. hit.Parent.Humanoid.Health = hit.Parent.Humanoid.Health-damfam
  1559. local CF = hit.HumanoidRootPart.CFrame*CFrame.new(0,2,0)
  1560. MakeText("-"..damfam.."", "SourceSansLight", 2, 40, 0, 60, 139, 0, 209, CF)
  1561. wait(1)
  1562. --Debounces.Slashed = false
  1563. end
  1564. end
  1565. end
  1566. end)
  1567. q = Instance.new("Sound",hed)
  1568. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  1569. q.Pitch = 0.85
  1570. q.Looped = false
  1571. q1 = Instance.new("Sound",hed)
  1572. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  1573. q1.Pitch = 0.85
  1574. q1.Looped = false
  1575. q:Play()
  1576. q1:Play()
  1577. for i = 1,10 do
  1578. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  1579. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  1580. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  1581. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  1582. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  1583. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  1584. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.2, -3) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(0)), 0.5)
  1585. if Debounces.on == false then break end
  1586. wait()
  1587. end
  1588. chatServ:Chat(hed, "This!", 2)
  1589. n = Instance.new("Sound",hed)
  1590. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  1591. n.Pitch = 0.94
  1592. n.Looped = false
  1593. n1 = Instance.new("Sound",hed)
  1594. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  1595. n1.Pitch = 0.94
  1596. n1.Looped = false
  1597. n:Play()
  1598. n1:Play()
  1599. b = Instance.new("Sound",hed)
  1600. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  1601. b.Pitch = 0.94
  1602. b.Looped = false
  1603. b1 = Instance.new("Sound",hed)
  1604. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  1605. b1.Pitch = 0.94
  1606. b1.Looped = false
  1607. b:Play()
  1608. b1:Play()
  1609. for i = 1,6 do
  1610. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.5)
  1611. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.5)
  1612. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.5)
  1613. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.5)
  1614. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.5)
  1615. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.5)
  1616. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 0.5)
  1617. if Debounces.on == false then break end
  1618. wait()
  1619. end
  1620. wait(.01)
  1621. to:disconnect()
  1622. q:Destroy()
  1623. q1:Destroy()
  1624. n:Destroy()
  1625. n1:Destroy()
  1626. if Debounces.CanAttack == false then
  1627. Debounces.CanAttack = true
  1628. Debounces.on = false
  1629. Debounces.NoIdl = false
  1630. end
  1631. end
  1632. end
  1633. end)
  1634. ----------------------------------------------------
  1635. mouse.Button1Down:connect(function()
  1636. if Debounces.CanAttack == true then
  1637. Debounces.CanAttack = false
  1638. Debounces.on = true
  1639. Debounces.NoIdl = true
  1640. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  1641. hit = ht.Parent
  1642. if ht and hit:IsA("Model") then
  1643. if hit:FindFirstChild("Humanoid") then
  1644. if hit.Name ~= p.Name then
  1645. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1646. Debounces.Slashed = true]]--
  1647. local damfam = 999999
  1648. hit.Humanoid.Health = hit.Humanoid.Health-damfam
  1649. local CF = hit.HumanoidRootPart.CFrame*CFrame.new(0,2,0)
  1650. MakeText("-"..damfam.."", "SourceSansLight", 2, 40, 0, 60, 139, 0, 209, CF)
  1651. wait(1)
  1652. --Debounces.Slashed = false
  1653. --end
  1654. end
  1655. end
  1656. elseif ht and hit:IsA("Hat") then
  1657. if hit.Parent.Name ~= p.Name then
  1658. if hit.Parent:FindFirstChild("Humanoid") then
  1659. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1660. Debounces.Slashed = true]]--
  1661. local damfam = 300
  1662. hit.Parent.Humanoid.Health = hit.Parent.Humanoid.Health-damfam
  1663. local CF = hit.HumanoidRootPart.CFrame*CFrame.new(0,2,0)
  1664. MakeText("-"..damfam.."", "SourceSansLight", 2, 40, 0, 60, 139, 0, 209, CF)
  1665. wait(1)
  1666. --Debounces.Slashed = false
  1667. end
  1668. end
  1669. end
  1670. end)
  1671. for i = 1, 10 do
  1672. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(21), math.rad(75), math.rad(50)), 0.2)
  1673. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(-18)), 0.2)
  1674. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  1675. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  1676. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  1677. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  1678. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1679. if Debounces.on == false then break end
  1680. wait()
  1681. end
  1682. z = Instance.new("Sound",hed)
  1683. z.SoundId = "rbxassetid://160069154"
  1684. z.Looped = false
  1685. z.Pitch = .9
  1686. z1 = Instance.new("Sound",hed)
  1687. z1.SoundId = "rbxassetid://160069154"
  1688. z1.Looped = false
  1689. z1.Pitch = .9
  1690. wait(0.01)
  1691. z:Play()
  1692. z1:Play()
  1693. for i = 1, 7 do
  1694. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), 0.2)
  1695. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.9,-1) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(20)), 0.5)
  1696. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  1697. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.5)
  1698. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  1699. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  1700. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1701. if Debounces.on == false then break end
  1702. wait()
  1703. end
  1704. for i = 1, 7 do
  1705. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(140), math.rad(0), math.rad(50)), 0.4)
  1706. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-18)), 0.4)
  1707. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  1708. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  1709. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  1710. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  1711. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1712. if Debounces.on == false then break end
  1713. wait()
  1714. end
  1715. z = Instance.new("Sound",hed)
  1716. z.SoundId = "rbxassetid://168586621"
  1717. z.Looped = false
  1718. z.Pitch = 1
  1719. z1 = Instance.new("Sound",hed)
  1720. z1.SoundId = "rbxassetid://168586621"
  1721. z1.Looped = false
  1722. z1.Pitch = 1
  1723. wait(0.01)
  1724. z:Play()
  1725. z1:Play()
  1726. for i = 1, 7 do
  1727. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(40), math.rad(-20), math.rad(10)), 0.5)
  1728. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-18)), 0.4)
  1729. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  1730. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  1731. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  1732. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  1733. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.8, -1.4) * CFrame.Angles(math.rad(-110), math.rad(-90), math.rad(20)), 1)
  1734. if Debounces.on == false then break end
  1735. wait()
  1736. end
  1737. to:disconnect()
  1738. if Debounces.CanAttack == false then
  1739. Debounces.CanAttack = true
  1740. Debounces.on = false
  1741. Debounces.NoIdl = false
  1742. end
  1743. end
  1744. end)
  1745. ----------------------------------------------------
  1746. Sit = false
  1747.  
  1748. local DomFold = Instance.new("Folder")
  1749. DomFold.Parent = char
  1750.  
  1751. mouse.KeyDown:connect(function(key)
  1752. if key == "v" then
  1753. if Sit == false then
  1754. Sit = true
  1755. hum.WalkSpeed = 0.001
  1756. chatServ:Chat(hed, "Sigh..", 2)
  1757. stanceToggle = "Sitting"
  1758. repeat hum.Health = hum.Health+1337 wait() until Sit == false
  1759. elseif Sit == true then
  1760. Sit = false
  1761. hum.WalkSpeed = 80
  1762. stanceToggle = "Normal"
  1763. local say = math.random(1,10)
  1764. if say == 1 then
  1765. chatServ:Chat(hed, "Lets get started..", 2)
  1766. elseif say == 2 then
  1767. chatServ:Chat(hed, "Wakey, wakey!", 2)
  1768. elseif say == 3 then
  1769. chatServ:Chat(hed, "Time for a massacre!", 2)
  1770. elseif say == 4 then
  1771. chatServ:Chat(hed, "I feel... refreshed.", 2)
  1772. elseif say == 5 then
  1773. chatServ:Chat(hed, "Nap time is over!", 2)
  1774. elseif say == 6 then
  1775. chatServ:Chat(hed, "Prepare yourself..", 2)
  1776. elseif say == 7 then
  1777. chatServ:Chat(hed, "It's not over..", 2)
  1778. elseif say == 8 then
  1779. chatServ:Chat(hed, "Hmph.", 2)
  1780. elseif say == 9 then
  1781. chatServ:Chat(hed, "Ready to meet your maker?", 2)
  1782. elseif say == 10 then
  1783. chatServ:Chat(hed, "Huh..", 2)
  1784. end
  1785. end
  1786. end
  1787. end)
  1788. ----------------------------------------------------
  1789. mouse.KeyDown:connect(function(key)
  1790. if key == "t" then
  1791. if Debounces.CanAttack == true then
  1792. chatServ:Chat(hed, "How about...", 2)
  1793. Debounces.CanAttack = false
  1794. Debounces.on = true
  1795. Debounces.NoIdl = true
  1796. for i = 1, 15 do
  1797. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  1798. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  1799. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  1800. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  1801. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.4)
  1802. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.4)
  1803. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  1804. if Debounces.on == false then break end
  1805. wait()
  1806. end
  1807. chatServ:Chat(hed, "THIS!", 2)
  1808. Spawn(function()
  1809. local Parts = {}
  1810. for Y = -5,5 do
  1811. local P = Instance.new("Part",char)
  1812. P.Anchored = true
  1813. P.FormFactor = "Custom"
  1814. P.CanCollide = false
  1815. P.Size = Vector3.new(1,2,1)
  1816. P.TopSurface = "SmoothNoOutlines"
  1817. P.BottomSurface = "SmoothNoOutlines"
  1818. P.BrickColor = BrickColor.new("Dark blue")
  1819. P.Material = "Neon"
  1820. P.Name = tostring(Y)
  1821. local i = (Y+5)/(10)
  1822. i = 1-math.cos(math.pi*i-(math.pi/2))
  1823. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  1824. P.Touched:connect(function(ht)
  1825. local hit = ht.Parent
  1826. if hit:FindFirstChild("Humanoid") then
  1827. local damfam = 400
  1828. hit.Humanoid.Health = hit.Humanoid.Health-damfam
  1829. local CF = hit.HumanoidRootPart.CFrame*CFrame.new(0,2,0)
  1830. MakeText("-"..damfam.."", "SourceSansLight", 2, 40, 0, 60, 139, 0, 209, CF)
  1831. end
  1832. end)
  1833. s = Instance.new("Sound",P)
  1834. s.SoundId = "rbxassetid://228343271"
  1835. s.Volume = .7
  1836. s.Pitch = 0.9
  1837. s:Play()
  1838. P.Touched:connect(function(ht)
  1839. hit = ht.Parent
  1840. if ht and hit:IsA("Model") then
  1841. if hit:FindFirstChild("Humanoid") then
  1842. if hit.Name ~= p.Name then
  1843. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1844. Debounces.Slashed = true]]--
  1845. local damfam = 400
  1846. hit.Humanoid.Health = hit.Humanoid.Health-damfam
  1847. local CF = hit.HumanoidRootPart.CFrame*CFrame.new(0,2,0)
  1848. MakeText("-"..damfam.."", "SourceSansLight", 2, 40, 0, 60, 139, 0, 209, CF)
  1849. hit:FindFirstChild("Humanoid").PlatformStand = true
  1850. wait(1)
  1851. --Debounces.Slashed = false
  1852. --end
  1853. end
  1854. end
  1855. elseif ht and hit:IsA("Hat") then
  1856. if hit.Parent.Name ~= p.Name then
  1857. if hit.Parent:FindFirstChild("Humanoid") then
  1858. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1859. Debounces.Slashed = true]]--
  1860. local damfam = 400
  1861. v.Humanoid.Health = v.Humanoid.Health-damfam
  1862. local CF = v.HumanoidRootPart.CFrame*CFrame.new(0,2,0)
  1863. MakeText("-"..damfam.."", "SourceSansLight", 2, 40, 0, 60, 139, 0, 209, CF)
  1864. hit:FindFirstChild("Humanoid").PlatformStand = true
  1865. wait(1)
  1866. --Debounces.Slashed = false
  1867. --end
  1868. end
  1869. end
  1870. end
  1871. end)
  1872. Parts[#Parts+1] = P
  1873. end
  1874. local BREAKIT = false
  1875. local CParts = {}
  1876. local Rocks = {}
  1877. local LastPos = nil
  1878. for i = 1,70 do
  1879. for i2,v in pairs(Parts) do
  1880. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  1881. local cf = v.CFrame
  1882. v.Size = v.Size+Vector3.new(0.4,0.35,0)
  1883. v.CFrame = cf
  1884. v.Transparency = v.Transparency+0.02
  1885. if v.Transparency >= 0.975 then BREAKIT = true end
  1886. if v.Name == "0" then
  1887. local Ignore = {}
  1888. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1889. if v.Character ~= nil then
  1890. Ignore[#Ignore+1] = v.Character
  1891. end
  1892. end
  1893. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  1894. local Hit,Pos,SurfaceNorm = workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  1895. if Hit ~= nil then
  1896. if #Rocks == 0 then
  1897. for i = 1,5 do
  1898. local P = Instance.new("Part",char)
  1899. Rocks[#Rocks+1] = P
  1900. P.Anchored = true
  1901. P.FormFactor = "Custom"
  1902. P.BrickColor = Hit.BrickColor
  1903. P.Material = Hit.Material
  1904. P.TopSurface = "Smooth"
  1905. P.BottomSurface = "Smooth"
  1906. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  1907. end
  1908. end
  1909. for i,P in pairs(Rocks) do
  1910. P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  1911. end
  1912. local P = Instance.new("Part",char)
  1913. CParts[#CParts+1] = {P,tick()}
  1914. P.Anchored = true
  1915. P.FormFactor = "Custom"
  1916. P.BrickColor = Hit.BrickColor
  1917. P.Material = Hit.Material
  1918. P.TopSurface = "Smooth"
  1919. P.BottomSurface = "Smooth"
  1920. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  1921. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  1922. Pos = Pos.p
  1923. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  1924. local P = P:Clone()
  1925. CParts[#CParts+1] = {P,tick()}
  1926. P.Parent = char
  1927. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  1928. Pos = Pos.p
  1929. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20)))
  1930. if LastPos ~= nil then
  1931. local P = P:Clone()
  1932. CParts[#CParts+1] = {P,tick()}
  1933. P.Parent = char
  1934. P.BrickColor = BrickColor.new("Dark blue")
  1935. P.Material = "Neon"
  1936. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  1937. Pos = Pos.p
  1938. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  1939. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  1940. --P.Velocity = Vector3.new(0,-1000,0)
  1941. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  1942. end
  1943. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  1944. end
  1945. end
  1946. end
  1947. if BREAKIT then break end
  1948. wait(0.002)
  1949. end
  1950. for i,v in pairs(Rocks) do
  1951. CParts[#CParts+1] = {v,tick()}
  1952. end
  1953. for i,v in pairs(Parts) do
  1954. v:Destroy()
  1955. end
  1956. Parts = nil
  1957. while true do
  1958. local t = tick()
  1959. local p = nil
  1960. for i,v in pairs(CParts) do
  1961. if t-v[2] > 4 then
  1962. v[1].Transparency = v[1].Transparency+0.05
  1963. if v[1].Transparency >= 1 then
  1964. v[1]:Destroy()
  1965. CParts[i] = nil
  1966. end
  1967. end
  1968. p = v
  1969. end
  1970. if p == nil then break end
  1971. wait(0.002)
  1972. end
  1973. for i,v in pairs(CParts) do
  1974. v:Destroy()
  1975. end
  1976. CParts = {}
  1977. end)
  1978. for i = 1, 20 do
  1979. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.4)
  1980. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.4)
  1981. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)),0.4)
  1982. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  1983. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  1984. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  1985. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  1986. if Debounces.on == false then break end
  1987. wait()
  1988. end
  1989. if Debounces.CanAttack == false then
  1990. Debounces.CanAttack = true
  1991. Debounces.on = false
  1992. Debounces.NoIdl = false
  1993. end
  1994. end
  1995. end
  1996. end)
  1997. ----------------------------------------------------
  1998. mouse.KeyDown:connect(function(key)
  1999. if key == "e" then
  2000. if Debounces.CanAttack == true then
  2001. Debounces.CanAttack = false
  2002. Debounces.on = true
  2003. Debounces.NoIdl = true
  2004. for i = 1, 10 do
  2005. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.7, 0) * CFrame.Angles(math.rad(90),math.rad(50),math.rad(90)), 0.4)
  2006. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  2007. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  2008. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  2009. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  2010. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  2011. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2012. if Debounces.on == false then break end
  2013. wait()
  2014. end
  2015. local HandCF = CFrame.new(char.Absolution.Handle.Position - Vector3.new(0,8.8,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2016. local rng = Instance.new("Part", char.Absolution.Handle)
  2017. rng.Anchored = true
  2018. rng.BrickColor = BrickColor.new("Dark blue")
  2019. rng.CanCollide = true
  2020. rng.FormFactor = 3
  2021. rng.Name = "Ring"
  2022. rng.Size = Vector3.new(20, 10, 20)
  2023. rng.CanCollide = false
  2024. rng.Transparency = 0.35
  2025. rng.TopSurface = 0
  2026. rng.BottomSurface = 0
  2027. rng.CFrame = HandCF
  2028. local rngm = Instance.new("SpecialMesh", rng)
  2029. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2030. rngm.Scale = Vector3.new(1, 1, 2)
  2031. x = Instance.new("Sound", hed)
  2032. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  2033. x.Looped = false
  2034. x.Pitch = .7
  2035. x.Volume = 1
  2036. x1 = Instance.new("Sound", hed)
  2037. x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  2038. x1.Looped = false
  2039. x1.Pitch = .7
  2040. x1.Volume = 1
  2041. x:Play()
  2042. x1:Play()
  2043. rngto = rng.Touched:connect(function(ht)
  2044. hit = ht.Parent
  2045. if ht and hit:IsA("Model") then
  2046. if hit:FindFirstChild("Humanoid") then
  2047. if hit.Name ~= p.Name then
  2048. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2049. Debounces.Slashed = true]]--
  2050. local damfam = 999999
  2051. hit.Humanoid.Health = hit.Humanoid.Health-damfam
  2052. local CF = hit.HumanoidRootPart.CFrame*CFrame.new(0,2,0)
  2053. MakeText("-"..damfam.."", "SourceSansLight", 2, 40, 0, 60, 139, 0, 209, CF)
  2054. hit:FindFirstChild("Humanoid").PlatformStand = true
  2055. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -420
  2056. --Debounces.Slashed = false
  2057. --end
  2058. end
  2059. end
  2060. elseif ht and hit:IsA("Hat") then
  2061. if hit.Parent.Name ~= p.Name then
  2062. if hit.Parent:FindFirstChild("Humanoid") then
  2063. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  2064. Debounces.Slashed = true]]--
  2065. local damfam = 300
  2066. hit.Humanoid.Health = hit.Humanoid.Health-damfam
  2067. local CF = hit.HumanoidRootPart.CFrame*CFrame.new(0,2,0)
  2068. MakeText("-"..damfam.."", "SourceSansLight", 2, 40, 0, 60, 139, 0, 209, CF)
  2069. hit:FindFirstChild("Humanoid").PlatformStand = true
  2070. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  2071. --Debounces.Slashed = false
  2072. end
  2073. end
  2074. end
  2075. end)
  2076. coroutine.wrap(function()
  2077. for i = 1, 60, 2 do
  2078. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2079. rng.Size = rngm.Scale
  2080. rng.CFrame = HandCF
  2081. rng.Transparency = i/60
  2082. wait()
  2083. end
  2084. wait()
  2085. rng:Destroy()
  2086. end)()
  2087. for i = 1, 18 do
  2088. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, 0) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.4)
  2089. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  2090. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  2091. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  2092. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  2093. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  2094. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, 0.2) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2095. if Debounces.on == false then break end
  2096. wait()
  2097. end
  2098. x:Destroy()
  2099. x1:Destroy()
  2100. if Debounces.CanAttack == false then
  2101. Debounces.CanAttack = true
  2102. Debounces.on = false
  2103. Debounces.NoIdl = false
  2104. end
  2105. end
  2106. end
  2107. end)
  2108. ----------------------------------------------------
  2109. mouse.KeyDown:connect(function(key)
  2110. if key == "y" then
  2111. if Debounces.CanAttack == true then
  2112. Debounces.CanAttack = false
  2113. Debounces.on = true
  2114. Debounces.NoIdl = true
  2115. for i = 1, 8 do
  2116. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.2)
  2117. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.2)
  2118. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  2119. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  2120. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  2121. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  2122. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2123. if Debounces.on == false then break end
  2124. wait()
  2125. end
  2126. x = Instance.new("Sound",char)
  2127. x.SoundId = "rbxassetid://228343271"
  2128. x.Pitch = 1
  2129. x.Volume = .8
  2130. wait(.1)
  2131. x:Play()
  2132. Debounces.on = false
  2133. Debounces.Here = false
  2134. shot = shot + 1
  2135. local rng = Instance.new("Part", char)
  2136. rng.Anchored = true
  2137. rng.BrickColor = BrickColor.new("Dark blue")
  2138. rng.CanCollide = false
  2139. rng.FormFactor = 3
  2140. rng.Name = "Ring"
  2141. rng.Size = Vector3.new(1, 1, 1)
  2142. rng.Transparency = 0.35
  2143. rng.TopSurface = 0
  2144. rng.BottomSurface = 0
  2145. rng2 = rng:clone()
  2146. rng3 = rng2:clone()
  2147. rng4 = rng2:clone()
  2148. local rngm = Instance.new("SpecialMesh", rng)
  2149. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2150. rngm.Scale = Vector3.new(10, 10, 1)
  2151. rngm2 = rngm:clone()
  2152. rngm2.Scale = Vector3.new(5, 5, 1)
  2153. rngm3=rngm2:clone()
  2154. rngm3.Parent = rng3
  2155. rngm3.Scale = Vector3.new(8, 8, 1)
  2156. rngm4 = rngm2:clone()
  2157. rngm4.Parent = rng4
  2158. rngm4.Scale = Vector3.new(6, 6, 1)
  2159. local bem = Instance.new("Part", char)
  2160. bem.Anchored = true
  2161. bem.BrickColor = BrickColor.new("Dark blue")
  2162. bem.CanCollide = false
  2163. bem.FormFactor = 3
  2164. bem.Name = "Beam" .. shot
  2165. bem.Size = Vector3.new(1, 1, 1)
  2166. bem.Transparency = 0.35
  2167. bem.TopSurface = 0
  2168. bem.BottomSurface = 0
  2169. local bemm = Instance.new("SpecialMesh", bem)
  2170. bemm.MeshType = 4
  2171. bemm.Scale = Vector3.new(1, 4, 4)
  2172. local out = Instance.new("Part", char)
  2173. out.Anchored = true
  2174. out.BrickColor = BrickColor.new("Dark blue")
  2175. out.CanCollide = false
  2176. out.FormFactor = 3
  2177. out.Name = "Out"
  2178. out.Size = Vector3.new(4, 4, 4)
  2179. out.Transparency = 0.35
  2180. out.TopSurface = 0
  2181. out.BottomSurface = 0
  2182. local outm = Instance.new("SpecialMesh", out)
  2183. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  2184. outm.Scale = Vector3.new(4, 4, 4)
  2185. local bnd = Instance.new("Part", char)
  2186. bnd.Anchored = true
  2187. bnd.BrickColor = BrickColor.new("Dark blue")
  2188. bnd.CanCollide = false
  2189. bnd.FormFactor = 3
  2190. bnd.Name = "Bend"
  2191. bnd.Size = Vector3.new(1, 1, 1)
  2192. bnd.Transparency = 1
  2193. bnd.TopSurface = 0
  2194. bnd.BottomSurface = 0
  2195. local bndm = Instance.new("SpecialMesh", bnd)
  2196. bndm.MeshType = 3
  2197. bndm.Scale = Vector3.new(8, 8, 8)
  2198. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  2199. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  2200. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  2201. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  2202. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  2203. rng4.CFrame = rng3.CFrame * CFrame.new(0, -.5, 0)
  2204. Debounces.Shewt = true
  2205. coroutine.wrap(function()
  2206. for i = 1, 20, 0.2 do
  2207. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2208. rngm3.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2209. rngm4.Scale = Vector3.new(6 + i*2, 6 + i*2, 1)
  2210. rng.Transparency = i/20
  2211. rng3.Transparency = 1/16
  2212. rng4.Transparency = i/12
  2213. wait()
  2214. end
  2215. wait()
  2216. rng:Destroy()
  2217. end)()
  2218. if Debounces.Shewt == true then
  2219. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  2220. hit = ht.Parent
  2221. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  2222. if HasntTouched(hit.Name) == true and deb == false then
  2223. deb = true
  2224. coroutine.wrap(function()
  2225. hit:FindFirstChild("Humanoid").PlatformStand = true
  2226. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2227. local damfam = 666
  2228. hit.Humanoid.Health = hit.Humanoid.Health-damfam
  2229. local CF = hit.HumanoidRootPart.CFrame*CFrame.new(0,2,0)
  2230. MakeText("-"..damfam.."", "SourceSansLight", 2, 40, 0, 60, 139, 0, 209, CF)
  2231. end)()
  2232. table.insert(Touche, hit.Name)
  2233. deb = false
  2234. end
  2235. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  2236. if HasntTouched(hit.Parent.Name) == true and deb == false then
  2237. deb = true
  2238. coroutine.wrap(function()
  2239. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  2240. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2241. wait(1)
  2242. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  2243. end)()
  2244. table.insert(Touche, hit.Parent.Name)
  2245. deb = false
  2246. for i, v in pairs(Touche) do
  2247. print(v)
  2248. end
  2249. end
  2250. end
  2251. end)
  2252. end
  2253. for i = 0, 260, 8 do
  2254. bem.Size = Vector3.new(i, 2, 2)
  2255. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  2256. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  2257. bnd.Size = Vector3.new(1,1,1)
  2258. bndm.Scale = Vector3.new(8,8,8)
  2259. if i % 10 == 0 then
  2260. local newRng = rng2:Clone()
  2261. newRng.Parent = char
  2262. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  2263. local newRngm = rngm2:clone()
  2264. newRngm.Parent=newRng
  2265. coroutine.wrap(function()
  2266. for i = 1, 10, 0.2 do
  2267. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2268. newRng.Transparency = i/10
  2269. wait()
  2270. end
  2271. wait()
  2272. newRng:Destroy()
  2273. end)()
  2274. end
  2275. wait()
  2276. end
  2277. wait()
  2278. Debounces.Shewt = false
  2279. bem:Destroy()
  2280. out:Destroy()
  2281. bnd:Destroy()
  2282. Debounces.Ready = false
  2283. for i, v in pairs(Touche) do
  2284. table.remove(Touche, i)
  2285. end
  2286. wait()
  2287. table.insert(Touche, char.Name)
  2288. Debounces.NoIdl = false
  2289. if Debounces.CanAttack == false then
  2290. Debounces.CanAttack = true
  2291. end
  2292. end
  2293. end
  2294. end)
  2295. ----------------------------------------------------
  2296. sidz = {"231917888", "231917845", "231917806"}
  2297. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  2298. mouse.KeyDown:connect(function(key)
  2299. if key == "f" then
  2300. if Debounces.CanAttack == true then
  2301. Debounces.CanAttack = false
  2302. Debounces.on = true
  2303. Debounces.NoIdl = true
  2304. for i = 1, 5 do
  2305. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.4)
  2306. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.4)
  2307. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2308. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2309. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2310. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2311. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2312. if Debounces.on == false then break end
  2313. wait()
  2314. end
  2315. z = Instance.new("Sound",char)
  2316. z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  2317. z.Pitch = ptz[math.random(1,#ptz)]
  2318. z.Volume = 1
  2319. z1 = Instance.new("Sound",char)
  2320. z1.SoundId = z.SoundId
  2321. z1.Pitch = z.Pitch
  2322. z1.Volume = 1
  2323. wait(1)
  2324. z:Play()
  2325. z1:Play()
  2326. chatServ:Chat(hed, "Die!", 2)
  2327. Stomp()
  2328. for i = 1, 10 do
  2329. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.6)
  2330. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.6)
  2331. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  2332. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.6)
  2333. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  2334. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, -1.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  2335. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2336. if Debounces.on == false then break end
  2337. wait()
  2338. end
  2339. if Debounces.CanAttack == false then
  2340. Debounces.CanAttack = true
  2341. Debounces.on = false
  2342. Debounces.NoIdl = false
  2343. end
  2344. end
  2345. end
  2346. end)
  2347. ----------------------------------------------------
  2348. mouse.KeyDown:connect(function(key)
  2349. if key == "g" then
  2350. if Debounces.CanAttack == true then
  2351. Debounces.CanAttack = false
  2352. Debounces.on = true
  2353. Debounces.NoIdl = true
  2354. chrg = lleg.Touched:connect(function(ht)
  2355. hit = ht.Parent
  2356. if ht and hit:IsA("Model") then
  2357. if hit:FindFirstChild("Humanoid") then
  2358. if hit.Name ~= p.Name then
  2359. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2360. Debounces.Slashed = true]]--
  2361. local damfam = 666
  2362. hit.Humanoid.Health = hit.Humanoid.Health-damfam
  2363. local CF = hit.HumanoidRootPart.CFrame*CFrame.new(0,2,0)
  2364. MakeText("-"..damfam.."", "SourceSansLight", 2, 40, 0, 60, 139, 0, 209, CF)
  2365. hit:FindFirstChild("Humanoid").PlatformStand = true
  2366. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -200
  2367. --Debounces.Slashed = false
  2368. --end
  2369. end
  2370. end
  2371. elseif ht and hit:IsA("Hat") then
  2372. if hit.Parent.Name ~= p.Name then
  2373. if hit.Parent:FindFirstChild("Humanoid") then
  2374. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  2375. Debounces.Slashed = true]]--
  2376. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  2377. hit:FindFirstChild("Humanoid").PlatformStand = true
  2378. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -200
  2379. --Debounces.Slashed = false
  2380. end
  2381. end
  2382. end
  2383. end)
  2384. for i = 1, 14 do
  2385. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.5)
  2386. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.5)
  2387. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.5)
  2388. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.5)
  2389. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.8, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  2390. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  2391. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  2392. if Debounces.on == false then break end
  2393. wait()
  2394. end
  2395. charge()
  2396. chatServ:Chat(hed, "Hurrah!", 2)
  2397. z = Instance.new("Sound",char)
  2398. z.SoundId = "rbxassetid://200632875"
  2399. z.Volume = 1
  2400. z.Pitch = .8
  2401. z1 = Instance.new("Sound",char)
  2402. z1.SoundId = "rbxassetid://200632875"
  2403. z1.Volume = 1
  2404. z1.Pitch = .9
  2405. z:Play()
  2406. z1:Play()
  2407. wait(1)
  2408. z:Destroy()
  2409. z1:Destroy()
  2410. chrg:disconnect()
  2411. if Debounces.CanAttack == false then
  2412. Debounces.CanAttack = true
  2413. Debounces.on = false
  2414. Debounces.NoIdl = false
  2415. end
  2416. end
  2417. end
  2418. end)
  2419. ----------------------------------------------------
  2420. mouse.KeyDown:connect(function(key)
  2421. if key == "h" then
  2422. if Debounces.CanJoke == true then
  2423. Debounces.CanJoke = false
  2424. z = Instance.new("Sound", workspace)
  2425. z.SoundId = "rbxassetid://135017755"
  2426. z.Pitch = 1
  2427. z.Volume = 5
  2428. wait()
  2429. z:Play()
  2430. chatServ:Chat(hed, "How does it feel", 2)
  2431. wait(1.4)
  2432. chatServ:Chat(hed, "Knowing you have failed", 2)
  2433. wait(2)
  2434. chatServ:Chat(hed, "Those who depended on you?", 2)
  2435. wait(2)
  2436. z:Destroy()
  2437. if Debounces.CanJoke == false then
  2438. Debounces.CanJoke = true
  2439. end
  2440. end
  2441. end
  2442. end)
  2443. ----------------------------------------------------
  2444. mouse.KeyDown:connect(function(key)
  2445. if key == "j" then
  2446. if Debounces.CanJoke == true then
  2447. Debounces.CanJoke = false
  2448. z = Instance.new("Sound",char)
  2449. z.SoundId = "rbxassetid://135017578"
  2450. chatServ:Chat(hed, "Can you feel your death approaching?", 2)
  2451. z.Pitch = .76
  2452. z.Volume = 5
  2453. wait()
  2454. z:Play()
  2455. wait(4)
  2456. z:Destroy()
  2457. if Debounces.CanJoke == false then
  2458. Debounces.CanJoke = true
  2459. end
  2460. end
  2461. end
  2462. end)
  2463. ----------------------------------------------------
  2464. mouse.KeyDown:connect(function(key)
  2465. if key == "k" then
  2466. if Debounces.CanJoke == true then
  2467. Debounces.CanJoke = false
  2468. z = Instance.new("Sound", workspace)
  2469. z.SoundId = "rbxassetid://135014184"
  2470. z.Pitch = 1
  2471. z.Volume = 5
  2472. wait()
  2473. z:Play()
  2474. chatServ:Chat(hed, "All that you have known", 2)
  2475. wait(2.5)
  2476. chatServ:Chat(hed, "All that you have ever loved", 2)
  2477. wait(2.5)
  2478. chatServ:Chat(hed, "Shall die along with you!", 2)
  2479. wait(2.5)
  2480. z.Volume = 0
  2481. z:Destroy()
  2482. if Debounces.CanJoke == false then
  2483. Debounces.CanJoke = true
  2484. end
  2485. end
  2486. end
  2487. end)
  2488. ----------------------------------------------------
  2489. mouse.KeyDown:connect(function(key)
  2490. if key == "x" then
  2491. if Debounces.CanAttack == true then
  2492. Debounces.CanAttack = false
  2493. Debounces.NoIdl = true
  2494. Debounces.on = true
  2495. Debounces.ks = true
  2496. for i = 1, 5 do
  2497. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.6)
  2498. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.7,.9,-.5)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(20)), 0.6)
  2499. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  2500. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.6)
  2501. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.6)
  2502. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.7, .6) * CFrame.Angles(math.rad(-70), math.rad(0), math.rad(0)), 0.6)
  2503. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2504. if Debounces.on == false then break end
  2505. wait()
  2506. end
  2507. z = Instance.new("Sound",hed)
  2508. z.SoundId = "rbxassetid://169445092"
  2509. z.Volume = 1
  2510. wait(0.1)
  2511. z:Play()
  2512. kik = rleg.Touched:connect(function(ht)
  2513. hit = ht.Parent
  2514. if ht and hit:IsA("Model") then
  2515. if hit:FindFirstChild("Humanoid") then
  2516. if hit.Name ~= p.Name then
  2517. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2518. Debounces.Slashed = true]]--
  2519. if Debounces.ks==true then
  2520. z = Instance.new("Sound",hed)
  2521. z.SoundId = "rbxassetid://169380525"
  2522. z.Volume = 1
  2523. z:Play()
  2524. Debounces.ks=false
  2525. end
  2526. local damfam = 1
  2527. hit.Humanoid.Health = hit.Humanoid.Health-damfam
  2528. local CF = hit.HumanoidRootPart.CFrame*CFrame.new(0,2,0)
  2529. MakeText("-"..damfam.."", "SourceSansLight", 2, 40, 0, 60, 139, 0, 209, CF)
  2530. hit:FindFirstChild("Humanoid").PlatformStand = true
  2531. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -7000
  2532. --Debounces.Slashed = false
  2533. --end
  2534. end
  2535. end
  2536. elseif ht and hit:IsA("Hat") then
  2537. if hit.Parent.Name ~= p.Name then
  2538. if hit.Parent:FindFirstChild("Humanoid") then
  2539. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2540. Debounces.Slashed = true]]--
  2541. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  2542. hit:FindFirstChild("Humanoid").PlatformStand = true
  2543. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -00
  2544. --Debounces.Slashed = false
  2545. --end
  2546. end
  2547. end
  2548. end
  2549. end)
  2550. chatServ:Chat(hed, "Outta my way!", 2)
  2551. for i = 1, 8 do
  2552. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2553. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.7)
  2554. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.7)
  2555. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.7)
  2556. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  2557. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.6, -1.4) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.7)
  2558. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2559. if Debounces.on == false then break end
  2560. wait()
  2561. end
  2562. kik:disconnect()
  2563. if Debounces.CanAttack == false then
  2564. Debounces.CanAttack = true
  2565. Debounces.on = false
  2566. Debounces.NoIdl = false
  2567. end
  2568. end
  2569. end
  2570. end)
  2571. ----------------------------------------------------
  2572. local slow = false
  2573. mouse.KeyDown:connect(function(key)
  2574. if key == "n" then
  2575. if not slow then
  2576. slow = true
  2577. hum.WalkSpeed = 8
  2578. else
  2579. slow = false
  2580. hum.WalkSpeed = 80
  2581. end
  2582. end
  2583. end)
  2584.  
  2585. mouse.KeyDown:connect(function(key)
  2586. if key == "c" then
  2587. if Debounces.CanAttack == true then
  2588. Debounces.CanAttack = false
  2589. Debounces.NoIdl = true
  2590. Debounces.on = true
  2591. SIDZ = {"231917744", "231917742"}
  2592. PTZ = {0.7, 0.8, 0.9, 1}
  2593. for i = 1, 20 do
  2594. wait()
  2595. for i,v in pairs(char.Absolution:children()) do
  2596. if v:IsA("Part") or v:IsA("WedgePart") then
  2597. v.Transparency = v.Transparency + 0.05
  2598. end
  2599. end
  2600. end
  2601. function FindNearestTorso(Position,Distance,SinglePlayer)
  2602. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  2603. local List = {}
  2604. for i,v in pairs(workspace:GetChildren())do
  2605. if v:IsA("Model")then
  2606. if v:findFirstChild("Torso")then
  2607. if v ~= char then
  2608. if(v.Torso.Position -Position).magnitude <= Distance then
  2609. table.insert(List,v)
  2610. end
  2611. end
  2612. end
  2613. end
  2614. end
  2615. return List
  2616. end
  2617. GroundPound()
  2618. for i = 1, 5 do
  2619. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2620. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2621. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2622. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2623. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2624. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2625. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2626. if Debounces.on == false then break end
  2627. wait()
  2628. end
  2629. GroundPound()
  2630. for i = 1, 5 do
  2631. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2632. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2633. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2634. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2635. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2636. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2637. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2638. if Debounces.on == false then break end
  2639. wait()
  2640. end
  2641. GroundPound()
  2642. for i = 1, 5 do
  2643. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2644. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2645. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2646. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2647. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2648. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2649. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2650. if Debounces.on == false then break end
  2651. wait()
  2652. end
  2653. GroundPound()
  2654. for i = 1, 5 do
  2655. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2656. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2657. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2658. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2659. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2660. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2661. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2662. if Debounces.on == false then break end
  2663. wait()
  2664. end
  2665. GroundPound()
  2666. for i = 1, 5 do
  2667. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2668. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2669. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2670. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2671. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2672. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2673. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2674. if Debounces.on == false then break end
  2675. wait()
  2676. end
  2677. GroundPound()
  2678. for i = 1, 5 do
  2679. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2680. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2681. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2682. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2683. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2684. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2685. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2686. if Debounces.on == false then break end
  2687. wait()
  2688. end
  2689. for i = 1, 8 do
  2690. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-10)), 0.4)
  2691. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(10)), 0.4)
  2692. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2693. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2694. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2695. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2696. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2697. if Debounces.on == false then break end
  2698. wait()
  2699. end
  2700. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  2701. if v:FindFirstChild('Humanoid') then
  2702. local damfam = math.random(9000,99999)
  2703. v.Humanoid.Health = v.Humanoid.Health-damfam
  2704. local CF = v.HumanoidRootPart.CFrame*CFrame.new(0,2,0)
  2705. MakeText("-"..damfam.."", "SourceSansLight", 2, 40, 0, 60, 139, 0, 209, CF)
  2706. v.Humanoid.PlatformStand = true
  2707. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2708. end
  2709. end
  2710. x = Instance.new("Sound",char)
  2711. x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  2712. x.Pitch = PTZ[math.random(1,#PTZ)]
  2713. x.Volume = 1
  2714. wait(0.1)
  2715. x:Play()
  2716. Crater(hed,20)
  2717. for i = 1, 6 do
  2718. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(-10)), 0.6)
  2719. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(10)), 0.6)
  2720. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  2721. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  2722. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  2723. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  2724. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2725. if Debounces.on == false then break end
  2726. wait()
  2727. end
  2728. if Debounces.CanAttack == false then
  2729. Debounces.CanAttack = true
  2730. Debounces.on = false
  2731. Debounces.NoIdl = false
  2732. for i = 1, 20 do
  2733. wait()
  2734. for i,v in pairs(char.Absolution:children()) do
  2735. if v:IsA("Part") or v:IsA("WedgePart") then
  2736. v.Transparency = v.Transparency - 0.05
  2737. end
  2738. end
  2739. end
  2740. end
  2741. end
  2742. end
  2743. end)
  2744. ----------------------------------------------------176349813
  2745. mouse.KeyDown:connect(function(key)
  2746. if key == "b" then
  2747. hum.WalkSpeed = 0.01
  2748. if Debounces.CanAttack == true then
  2749. Debounces.CanAttack = false
  2750. Debounces.NoIdl = true
  2751. Debounces.on = true
  2752. for i = 1,5 do
  2753. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(-30)), 0.1)
  2754. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(30)), 0.1)
  2755. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.1)
  2756. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.1)
  2757. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(-5)), 0.1)
  2758. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(5)), 0.1)
  2759. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2760. if Debounces.on == false then break end
  2761. wait()
  2762. end
  2763. wait(1)
  2764. v = Instance.new("Sound")
  2765. v.SoundId = "rbxassetid://528145698"
  2766. v.Parent = char
  2767. v.Looped = false
  2768. v.Pitch = 1.04
  2769. v.Volume = 7
  2770. wait(0.1)
  2771. v:Play()
  2772.  
  2773. if Daytime == true then
  2774. Daytime = false
  2775. l.TimeOfDay = 24
  2776. else
  2777. Daytime = true
  2778. l.TimeOfDay = 12
  2779. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  2780. end
  2781.  
  2782. local Shockwave = function()
  2783. local rng1 = Instance.new("Part", char)
  2784. rng1.Anchored = true
  2785. rng1.BrickColor = BrickColor.new("Dark blue")
  2786. rng1.Material = "Neon"
  2787. rng1.CanCollide = false
  2788. rng1.FormFactor = 3
  2789. rng1.Name = "Ring"
  2790. rng1.Size = Vector3.new(1, 1, 1)
  2791. rng1.Transparency = 0.35
  2792. rng1.TopSurface = 0
  2793. rng1.BottomSurface = 0
  2794. local rngm1 = Instance.new("SpecialMesh", rng)
  2795. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2796. rngm1.Scale = Vector3.new(10, 10, 1)
  2797. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  2798. local Wave = Instance.new("Part", game.Workspace--[[?]])
  2799. Wave.Name = "Shockwave"
  2800. Wave.BrickColor = BrickColor.new("Dark blue")
  2801. Wave.Material = "Neon"
  2802. Wave.Size = Vector3.new(1, 1, 1)
  2803. Wave.Shape = "Ball"
  2804. Wave.CanCollide = false
  2805. Wave.Anchored = true
  2806. Wave.TopSurface = 0
  2807. Wave.BottomSurface = 0
  2808. Wave.Touched:connect(function(hit)
  2809. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  2810. local Occlude = true
  2811. local NotOccludes = {
  2812. char.Name;
  2813. "Wings";
  2814. "Scythe";
  2815. "Thingy";
  2816. "Thingy2"; -- put all of the names in a table pls
  2817. }
  2818. for i,v in pairs(NotOccludes) do
  2819. if hit.Parent.Name == v then
  2820. Occlude = false
  2821. end
  2822. end
  2823. --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
  2824. if Occlude then
  2825. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 10000
  2826. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -12000
  2827. end
  2828. end
  2829. end)
  2830.  
  2831. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  2832.  
  2833. coroutine.wrap(function()
  2834. for i = 1, 5, 0.2 do
  2835. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2836. rng1.Transparency = i/20
  2837. wait()
  2838. end
  2839. wait()
  2840. rng1:Destroy()
  2841. end)()
  2842.  
  2843. Delay(0, function()
  2844.  
  2845. if Daytime == false then
  2846. for i = 1, 50, 5 do
  2847. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  2848. Wave.CFrame = char.Torso.CFrame
  2849. local t = i / 50
  2850. Wave.Transparency = t
  2851. wait()
  2852. end
  2853. else
  2854. for i = 1, 50, 5 do
  2855. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  2856. Wave.CFrame = char.Torso.CFrame
  2857. local t = i / 50
  2858. Wave.Transparency = t
  2859. wait()
  2860. end
  2861. end
  2862. Wave:Destroy()
  2863. end)
  2864. Delay(0, function()
  2865. while wait() do
  2866. if Wave ~= nil then
  2867. Wave.CFrame = char.Torso.CFrame
  2868. else
  2869. break
  2870. end
  2871. end
  2872. end)
  2873. end
  2874. Shockwave()
  2875. for i = 1, 5 do
  2876. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2877. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2878. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2879. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2880. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2881. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2882. if Debounces.on == false then break end
  2883. wait()
  2884. end
  2885. for i = 1, 5 do
  2886. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2887. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2888. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2889. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2890. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2891. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2892. if Debounces.on == false then break end
  2893. wait()
  2894. end
  2895. for i = 1, 5 do
  2896. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2897. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2898. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2899. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2900. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2901. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2902. if Debounces.on == false then break end
  2903. wait()
  2904. end
  2905. for i = 1, 5 do
  2906. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2907. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2908. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2909. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2910. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2911. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2912. if Debounces.on == false then break end
  2913. wait()
  2914. end
  2915. for i = 1, 5 do
  2916. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2917. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2918. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2919. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2920. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2921. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2922. if Debounces.on == false then break end
  2923. wait()
  2924. end
  2925. for i = 1, 5 do
  2926. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2927. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2928. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2929. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2930. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2931. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2932. if Debounces.on == false then break end
  2933. wait()
  2934. end
  2935. wait(.5)
  2936. Debounces.NoIdl = false
  2937. hum.WalkSpeed = 80
  2938. Debounces.on = false
  2939. wait()
  2940. if Debounces.CanAttack == false then
  2941. Debounces.CanAttack = true
  2942. v:Destroy()
  2943. end
  2944. end
  2945. end
  2946. end)
  2947. ----------------------------------------------------
  2948. mouse.KeyDown:connect(function(key)
  2949. if key == "m" then
  2950. hum.WalkSpeed = 0
  2951. if Debounces.CanAttack == true then
  2952. chatServ:Chat(hed, "Ha!", 2)
  2953. Debounces.CanAttack = false
  2954. Debounces.on = true
  2955. Debounces.NoIdl = true
  2956. --[[x = Instance.new("Sound",char)
  2957. x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  2958. x.Looped = false
  2959. x.Pitch = 1.1
  2960. x.Volume = 1
  2961. x:Play()
  2962. x2 = Instance.new("Sound",char)
  2963. x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  2964. x2.Looped = false
  2965. x2.Pitch = .7
  2966. x2.Volume = 1
  2967. wait(.1)
  2968. x:Play()
  2969. x2:Play()
  2970. for i = 1, 20 do
  2971. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,0.6,-.2) *CFrame.Angles (math.rad (45),math.rad(0),math.rad(32)), 0.2)
  2972. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1,0)*CFrame.Angles(math.rad (0),math.rad(0),math.rad(-20)), 0.2)
  2973. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad (- 8),math.rad(-40), math.rad(-8)),0.2)
  2974. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3.2, 0) * CFrame.Angles (math.rad (-50), math.rad(40), math.rad(0)), 0.2)
  2975. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, .4, -1.6) * CFrame.Angles (math.rad (30), 0, math.rad(20)), 0.2)
  2976. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.6, -2, 0) * CFrame.Angles (math.rad(- 10), math.rad(-40), math.rad(0)), 0.2)
  2977. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.4)
  2978. if Debounces.on == false then break end
  2979. wait()
  2980. x:Destroy()
  2981. x2:Destroy()
  2982. end
  2983. wait(1)]]--
  2984. local rng = Instance.new("Part", char)
  2985. rng.Anchored = true
  2986. rng.BrickColor = BrickColor.new("Dark blue")
  2987. rng.CanCollide = false
  2988. rng.FormFactor = 3
  2989. rng.Name = "Ring"
  2990. rng.Size = Vector3.new(1, 1, 1)
  2991. rng.Transparency = 0.35
  2992. rng.TopSurface = 0
  2993. rng.BottomSurface = 0
  2994. rng.Position = torso.Position - Vector3.new(0,2,0)
  2995. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2996. local rngm = Instance.new("SpecialMesh", rng)
  2997. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2998. rngm.Scale = Vector3.new(1, 1, 2)
  2999. x = Instance.new("Sound",char)
  3000. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3001. x.Looped = false
  3002. x.Pitch = .7
  3003. x.Volume = 1
  3004. x:Play()
  3005. coroutine.wrap(function()
  3006. for i = 1, 60, 2 do
  3007. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  3008. rng.Transparency = i/60
  3009. wait()
  3010. end
  3011. wait()
  3012. rng:Destroy()
  3013. end)()
  3014. hum.WalkSpeed = 300
  3015. BV = Instance.new("BodyVelocity", torso)
  3016. BV.maxForce = Vector3.new(0,20000000,0)
  3017. BV.P = 100000
  3018. BV.velocity = Vector3.new(0,800,0)
  3019. for i = 1, 20 do
  3020. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.7)
  3021. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  3022. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  3023. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), math.rad(20)), 0.7)
  3024. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  3025. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, 0, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  3026. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3027. if Debounces.on == false then break end
  3028. wait()
  3029. end
  3030. x:Destroy()
  3031. BV:Destroy()
  3032. --[[for i = 1, 30 do
  3033. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  3034. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-16), math.rad (0), math.rad(0)), 0.3)
  3035. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  3036. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  3037. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  3038. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  3039. if Debounces.on == false then break end
  3040. wait()
  3041. end]]--
  3042. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  3043. for i = 1, 20 do
  3044. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  3045. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  3046. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-90)), 0.3)
  3047. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)), 0.3)
  3048. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  3049. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  3050. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3051. if Debounces.on == false then break end
  3052. wait()
  3053. end
  3054. end
  3055. Debounces.on = false
  3056. Debounces.NoIdl = false
  3057. local ry,ht,ps=nil,nil,nil
  3058. while ht==nil do
  3059. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  3060. wait()
  3061. end
  3062. z = Instance.new("Sound",char)
  3063. z.SoundId = "rbxassetid://142070127"
  3064. z.Volume = 1
  3065. wait(.1)
  3066. z:Play()
  3067. Landing()
  3068. hum.WalkSpeed = 80
  3069. if Debounces.CanAttack == false then
  3070. Debounces.CanAttack = true
  3071. end
  3072. end
  3073. end
  3074. end)
  3075. ----------------------------------------------------
  3076. mouse.KeyDown:connect(function(key)
  3077. if key == "l" then
  3078. if Debounces.CanJoke == true then
  3079. Debounces.CanJoke = false
  3080. z = Instance.new("Sound", workspace)
  3081. z.SoundId = "rbxassetid://415859013"
  3082. z.Pitch = 0.8
  3083. z.Volume = 5
  3084. wait()
  3085. z:Play()
  3086. chatServ:Chat(hed, "Pathetic.", 2)
  3087. wait(2)
  3088. z:Destroy()
  3089. if Debounces.CanJoke == false then
  3090. Debounces.CanJoke = true
  3091. end
  3092. end
  3093. end
  3094. end)
  3095. ----------------------------------------------------
  3096. Grab = false
  3097. mouse.KeyDown:connect(function(key)
  3098. if key == "z" then
  3099. Debounces.on = true
  3100. Debounces.NoIdl = true
  3101. if Grab == false then
  3102. chatServ:Chat(hed, "Come here..", 2)
  3103. gp = nil
  3104. con1=larm.Touched:connect(function(hit) -- this is grab
  3105. ht = hit.Parent
  3106. hum1=ht:FindFirstChild('Humanoid')
  3107. if hum1 ~= nil then
  3108. chatServ:Chat(hed, "Gotcha!", 2)
  3109. hum1.PlatformStand=true
  3110. gp = ht
  3111. Grab = true
  3112. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  3113. asd.Parent = larm
  3114. asd.Name = "asd"
  3115. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  3116. elseif hum1 == nil then
  3117. con1:disconnect()
  3118. wait() return
  3119. end
  3120. end)
  3121. for i = 1, 18 do
  3122. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(36)), 0.2)
  3123. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.65,.9,-.5)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2)
  3124. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3125. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  3126. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  3127. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  3128. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  3129. if Debounces.on == false then break end
  3130. wait()
  3131. end
  3132. con1:disconnect()
  3133. Debounces.on = false
  3134. Debounces.NoIdl = false
  3135. elseif Grab == true then
  3136. Grab = false
  3137. for i = 1, 20 do
  3138. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.2)
  3139. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-20)), 0.1)
  3140. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3141. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3142. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3143. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3144. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3145. if Debounces.on == false then end
  3146. wait()
  3147. end
  3148. chatServ:Chat(hed, "Bye-bye!", 2)
  3149. if gp ~= nil then
  3150. for i,v in pairs(larm:GetChildren()) do
  3151. if v.Name == "asd" and v:IsA("Weld") then
  3152. v:Remove()
  3153. end
  3154. end
  3155. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  3156. bv.maxForce = Vector3.new(400000, 400000, 400000)
  3157. bv.P = 125000
  3158. bv.velocity = char.HumanoidRootPart.CFrame.lookVector * 200
  3159. for i = 1, 12 do
  3160. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.75)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(20)), 0.5)
  3161. if Debounces.on == false then end
  3162. wait()
  3163. end
  3164. ht=nil
  3165. Spawn(function()
  3166. wait(0.5)
  3167. bv:Destroy()
  3168. end)
  3169. Debounces.on = false
  3170. Debounces.NoIdl = false
  3171. elseif ht == nil then wait()
  3172. Grab = false
  3173. Debounces.on = false
  3174. Debounces.NoIdl = false
  3175. end
  3176. end
  3177. end
  3178. end)
  3179. ----------------------------------------------------
  3180. ----------------------------------------------------
  3181. local animpose = "Idle"
  3182. local lastanimpose = "Idle"
  3183. local sine = 0
  3184. local change = 1
  3185. local val = 0
  3186. local ffing = false
  3187. ----------------------------------------------------
  3188. --[[x = Instance.new("Sound", char)
  3189. x.SoundId = "http://www.roblox.com/asset/?id=187922823"
  3190. x.Looped = true
  3191. x.Volume = 1
  3192. x.Pitch = 1
  3193. local footsteps = false]]--
  3194. -------------------------------
  3195. game:GetService("RunService").RenderStepped:connect(function()
  3196. --[[if char.Humanoid.Jump == true then
  3197. jump = true
  3198. else
  3199. jump = false
  3200. end]]
  3201. char.Humanoid.FreeFalling:connect(function(f)
  3202. if f then
  3203. ffing = true
  3204. else
  3205. ffing = false
  3206. end
  3207. end)
  3208. sine = sine + change
  3209. if jumpn == true then
  3210. animpose = "Jumping"
  3211. elseif ffing == true then
  3212. animpose = "Freefalling"
  3213. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  3214. animpose = "Idle"
  3215. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  3216. animpose = "Walking"
  3217. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  3218. animpose = "Running"
  3219. end
  3220. if animpose ~= lastanimpose then
  3221. sine = 0
  3222. if Debounces.NoIdl == false then
  3223. if animpose == "Idle" then
  3224. for i = 1, 2 do
  3225. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.2)
  3226. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.2)
  3227. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3228. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3229. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3230. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3231. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3232. end
  3233. elseif animpose == "Walking" then
  3234. for i = 1, 2 do
  3235. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(20)), 0.2)
  3236. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  3237. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8), math.rad(0), math.rad(0)),0.2)
  3238. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  3239. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  3240. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  3241. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3242. end
  3243. elseif animpose == "Running" then
  3244. for i = 1, 2 do
  3245. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10), math.rad(-40), math.rad(50)), 0.2)
  3246. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.2, 0-1*math.cos(sine/4)/2)*CFrame.Angles(math.rad(50-80*math.cos(sine/8)/2), math.rad(0), math.rad(0-70*math.cos(sine/8)/2)), 0.2)
  3247. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+8*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  3248. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+4*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  3249. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  3250. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  3251. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3252. end
  3253. wait()
  3254. end
  3255. else
  3256. end
  3257. end
  3258. lastanimpose = animpose
  3259. if Debounces.NoIdl == false then
  3260. if animpose == "Idle" then
  3261. if stanceToggle == "Normal" then
  3262. change = 0.5
  3263. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2)
  3264. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(50),math.rad(-30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  3265. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(40),0), 0.2)
  3266. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  3267. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  3268. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  3269. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3270. elseif stanceToggle == "Sitting" then
  3271. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(100-1*math.cos(sine/14)), math.rad(0), math.rad(20)), 0.2)
  3272. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2, .9, -1)*CFrame.Angles(math.rad(78+1*math.cos(sine/14)), math.rad(0), math.rad(50)), 0.2)
  3273. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.3) * CFrame.Angles(math.rad(-14+1*math.cos(sine/14)), math.rad(0), math.rad(0)),0.2)
  3274. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(-10+1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
  3275. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10-1*math.cos(sine/14)), 0, 0), 0.2)
  3276. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-50-1*math.cos(sine/14)), 0, 0), 0.2)
  3277. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3278. end
  3279. elseif animpose == "Walking" then
  3280. if stanceToggle == "Normal" then
  3281. change = 1
  3282. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(90+2*math.cos(sine/7)), math.rad(0), math.rad(20)), 0.2)
  3283. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, math.rad(1) + -math.sin(sine/14)/2, math.rad(-30)), 0.2)
  3284. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0), math.rad(0)),0.2)
  3285. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), 0, math.rad(0)), 0.2)
  3286. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + -math.sin(sine/14)/2.3, 0, 0), .4)
  3287. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + math.sin(sine/14)/2.3, 0, 0), .4)
  3288. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3289. end
  3290. elseif animpose == "Running" then
  3291. change = 1
  3292. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10-20*math.cos(sine/4)/2), math.rad(-40+10*math.cos(sine/4)/2), math.rad(50-10*math.cos(sine/4)/2)), 0.2)
  3293. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .5)*CFrame.Angles(math.rad(10+20*math.cos(sine/4)/2), math.rad(40-10*math.cos(sine/4)/2), math.rad(-50+10*math.cos(sine/4)/2)), 0.2)
  3294. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+6*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  3295. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  3296. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  3297. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  3298. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3299. end
  3300. end
  3301. end)
  3302. hed.Transparency = 1
  3303.  
  3304. local Player = game:service("Players").LocalPlayer
  3305.  
  3306. local Character = game.Players.LocalPlayer.Character --game.Workspace.fefio92142
  3307.  
  3308.  
  3309. -------------------------------------------------------------------------------------
  3310. -------------------------------------------------------------------------------------
  3311.  
  3312. local Color = ColorSequence.new(Color3.new(0,0,255), Color3.new(255,255,255))
  3313.  
  3314. local Num = 0.5
  3315.  
  3316. local Num2 = 4 -------------Mods:1,4,8,10,15,20-------------------------------------
  3317. local Size = 0.8
  3318. local Rate = 300
  3319. -------------------------------------------------------------------------------------
  3320. local Player = game:service'Players'.LocalPlayer
  3321. local Character = Player.Character
  3322. Torso = Character:WaitForChild'Torso'
  3323.  
  3324. local Wing1 = Instance.new("Part",Character)
  3325. Wing1.FormFactor = Enum.FormFactor.Custom
  3326. Wing1.Size = Vector3.new(.2, .2, .2)
  3327. Wing1.Name = "WIng_1"
  3328.  
  3329. local fire = Instance.new("ParticleEmitter", Wing1)
  3330. fire.VelocitySpread = 0
  3331. fire.Lifetime = NumberRange.new(2)
  3332. fire.Acceleration = Vector3.new(0, 2, 2)
  3333. fire.RotSpeed = NumberRange.new(10)
  3334. fire.Rate = Rate
  3335. fire.Rotation = NumberRange.new(151515)
  3336. fire.Name = "Fire"
  3337. fire.LightEmission = 0.78
  3338. fire.LockedToPart = true
  3339. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  3340. fire.Color = Color
  3341. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  3342.  
  3343. local Wing2 = Wing1:Clone()
  3344. Wing2.Parent = Torso
  3345. local x,y,z = 0,-1,-6
  3346.  
  3347. Wld = function(a,b,cf)
  3348. local Weld = Instance.new('Weld',a)
  3349. Weld.Part0 = a
  3350. Weld.Part1 = b
  3351. Weld.C1 = cf
  3352. return Weld
  3353. end
  3354.  
  3355. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(20),-math.rad(90)))
  3356. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(20),-math.rad(90)))
  3357.  
  3358.  
  3359. game:service'RunService'.Stepped:connect(function()
  3360. --z = 6+math.sin(tick()*2)
  3361. y = -1+math.sin(tick()*Num)*Num2
  3362. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  3363. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  3364. end)
  3365. ------------------------------------------------------------------------------------------------
  3366. local Player = game:service'Players'.LocalPlayer
  3367. local Character = Player.Character
  3368. Torso = Character:WaitForChild'Torso'
  3369.  
  3370. local Wing1 = Instance.new("Part",Character)
  3371. Wing1.FormFactor = Enum.FormFactor.Custom
  3372. Wing1.Size = Vector3.new(.2, .2, .2)
  3373. Wing1.Name = "WIng_1"
  3374.  
  3375. local fire = Instance.new("ParticleEmitter", Wing1)
  3376. fire.VelocitySpread = 0
  3377. fire.Lifetime = NumberRange.new(2.5)
  3378. fire.Acceleration = Vector3.new(0, 4, 4)
  3379. fire.RotSpeed = NumberRange.new(10)
  3380. fire.Rate = Rate
  3381. fire.Rotation = NumberRange.new(151515)
  3382. fire.Name = "Fire"
  3383. fire.LightEmission = 0.78
  3384. fire.LockedToPart = true
  3385. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  3386. fire.Color = Color
  3387. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  3388.  
  3389. local Wing2 = Wing1:Clone()
  3390. Wing2.Parent = Torso
  3391. local x,y,z = 0,-1,-6
  3392.  
  3393. Wld = function(a,b,cf)
  3394. local Weld = Instance.new('Weld',a)
  3395. Weld.Part0 = a
  3396. Weld.Part1 = b
  3397. Weld.C1 = cf
  3398. return Weld
  3399. end
  3400.  
  3401. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(30),-math.rad(90)))
  3402. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(30),-math.rad(90)))
  3403.  
  3404. print'Loaded'
  3405.  
  3406. game:service'RunService'.Stepped:connect(function()
  3407. --z = 6+math.sin(tick()*2)
  3408. y = -1+math.sin(tick()*Num)*Num2
  3409. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  3410. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  3411. end)
  3412.  
  3413. ------------------------------------------------------------------------------------------------
  3414. local Player = game:service'Players'.LocalPlayer
  3415. local Character = Player.Character
  3416. Torso = Character:WaitForChild'Torso'
  3417.  
  3418. local Wing1 = Instance.new("Part",Character)
  3419. Wing1.FormFactor = Enum.FormFactor.Custom
  3420. Wing1.Size = Vector3.new(.2, .2, .2)
  3421. Wing1.Name = "WIng_1"
  3422.  
  3423. local fire = Instance.new("ParticleEmitter", Wing1)
  3424. fire.VelocitySpread = 0
  3425. fire.Lifetime = NumberRange.new(2.8)
  3426. fire.Acceleration = Vector3.new(0, 4, 4)
  3427. fire.RotSpeed = NumberRange.new(10)
  3428. fire.Rate = Rate
  3429. fire.Rotation = NumberRange.new(151515)
  3430. fire.Name = "Fire"
  3431. fire.LightEmission = 0.78
  3432. fire.LockedToPart = true
  3433. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  3434. fire.Color = Color
  3435. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  3436.  
  3437. local Wing2 = Wing1:Clone()
  3438. Wing2.Parent = Torso
  3439. local x,y,z = 0,-1,-6
  3440.  
  3441. Wld = function(a,b,cf)
  3442. local Weld = Instance.new('Weld',a)
  3443. Weld.Part0 = a
  3444. Weld.Part1 = b
  3445. Weld.C1 = cf
  3446. return Weld
  3447. end
  3448.  
  3449. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(40),-math.rad(90)))
  3450. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(40),-math.rad(90)))
  3451.  
  3452. print'Loaded'
  3453.  
  3454. game:service'RunService'.Stepped:connect(function()
  3455. --z = 6+math.sin(tick()*2)
  3456. y = -1+math.sin(tick()*Num)*Num2
  3457. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  3458. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  3459. end)
  3460.  
  3461. ------------------------------------------------------------------------------------------------
  3462. local Player = game:service'Players'.LocalPlayer
  3463. local Character = Player.Character
  3464. Torso = Character:WaitForChild'Torso'
  3465.  
  3466. local Wing1 = Instance.new("Part",Character)
  3467. Wing1.FormFactor = Enum.FormFactor.Custom
  3468. Wing1.Size = Vector3.new(.2, .2, .2)
  3469. Wing1.Name = "WIng_1"
  3470.  
  3471. local fire = Instance.new("ParticleEmitter", Wing1)
  3472. fire.VelocitySpread = 0
  3473. fire.Lifetime = NumberRange.new(3)
  3474. fire.Acceleration = Vector3.new(0, 4, 4)
  3475. fire.RotSpeed = NumberRange.new(10)
  3476. fire.Rate = Rate
  3477. fire.Rotation = NumberRange.new(151515)
  3478. fire.Name = "Fire"
  3479. fire.LightEmission = 0.78
  3480. fire.LockedToPart = true
  3481. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  3482. fire.Color = Color
  3483. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  3484.  
  3485. local Wing2 = Wing1:Clone()
  3486. Wing2.Parent = Torso
  3487. local x,y,z = 0,-1,-6
  3488.  
  3489. Wld = function(a,b,cf)
  3490. local Weld = Instance.new('Weld',a)
  3491. Weld.Part0 = a
  3492. Weld.Part1 = b
  3493. Weld.C1 = cf
  3494. return Weld
  3495. end
  3496.  
  3497. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(50),-math.rad(90)))
  3498. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(50),-math.rad(90)))
  3499.  
  3500. print'Loaded'
  3501.  
  3502. game:service'RunService'.Stepped:connect(function()
  3503. --z = 6+math.sin(tick()*2)
  3504. y = -1+math.sin(tick()*Num)*Num2
  3505. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  3506. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  3507. end)
  3508.  
  3509. ------------------------------------------------------------------------------------------------
  3510. local Player = game:service'Players'.LocalPlayer
  3511. local Character = Player.Character
  3512. Torso = Character:WaitForChild'Torso'
  3513.  
  3514. local Wing1 = Instance.new("Part",Character)
  3515. Wing1.FormFactor = Enum.FormFactor.Custom
  3516. Wing1.Size = Vector3.new(.2, .2, .2)
  3517. Wing1.Name = "WIng_1"
  3518.  
  3519. local fire = Instance.new("ParticleEmitter", Wing1)
  3520. fire.VelocitySpread = 0
  3521. fire.Lifetime = NumberRange.new(3.1)
  3522. fire.Acceleration = Vector3.new(0, 4, 4)
  3523. fire.RotSpeed = NumberRange.new(10)
  3524. fire.Rate = Rate
  3525. fire.Rotation = NumberRange.new(151515)
  3526. fire.Name = "Fire"
  3527. fire.LightEmission = 0.78
  3528. fire.LockedToPart = true
  3529. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  3530. fire.Color = Color
  3531. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  3532.  
  3533. local Wing2 = Wing1:Clone()
  3534. Wing2.Parent = Torso
  3535. local x,y,z = 0,-1,-6
  3536.  
  3537. Wld = function(a,b,cf)
  3538. local Weld = Instance.new('Weld',a)
  3539. Weld.Part0 = a
  3540. Weld.Part1 = b
  3541. Weld.C1 = cf
  3542. return Weld
  3543. end
  3544.  
  3545. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(60),-math.rad(90)))
  3546. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(60),-math.rad(90)))
  3547.  
  3548. print'Loaded'
  3549.  
  3550. game:service'RunService'.Stepped:connect(function()
  3551. --z = 6+math.sin(tick()*2)
  3552. y = -1+math.sin(tick()*Num)*Num2
  3553. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  3554. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  3555. end)
  3556.  
  3557.  
  3558.  
  3559. --Edited by 1x0x1x0--
Add Comment
Please, Sign In to add comment