686

Untitled

686
Jan 3rd, 2020
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 31.57 KB | None | 0 0
  1. Player=game.Players.LocalPlayer
  2. Character=Player.Character
  3. Character.Humanoid.Name = "noneofurbusiness"
  4. hum = Character.noneofurbusiness
  5. LeftArm=Character["Left Arm"]
  6. LeftLeg=Character["Left Leg"]
  7. RightArm=Character["Right Arm"]
  8. RightLeg=Character["Right Leg"]
  9. Root=Character["HumanoidRootPart"]
  10. Head=Character["Head"]
  11. Torso=Character["Torso"]
  12. Neck=Torso["Neck"]
  13. walking = false
  14. jumping = false
  15. attacking = false
  16. firsttime = false
  17. tauntdebounce = false
  18. position = nil
  19. MseGuide = true
  20. running = false
  21. settime = 0
  22. sine = 0
  23. t = 0
  24. ws = 18
  25. change = 1
  26. combo1 = true
  27. equip = false
  28. dgs = 75
  29. combo2 = false
  30. switch1 = true
  31. switch2 = false
  32. firsttime2 = false
  33. combo3 = false
  34. gunallowance = false
  35. shooting = false
  36. RunSrv = game:GetService("RunService")
  37. RenderStepped = game:GetService("RunService").Stepped
  38. removeuseless = game:GetService("Debris")
  39.  
  40. screenGui = Instance.new("ScreenGui")
  41. screenGui.Parent = script.Parent
  42.  
  43. local HEADLERP = Instance.new("ManualWeld")
  44. HEADLERP.Parent = Head
  45. HEADLERP.Part0 = Head
  46. HEADLERP.Part1 = Head
  47. HEADLERP.C0 = CFrame.new(0, -1.5, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  48.  
  49. local TORSOLERP = Instance.new("ManualWeld")
  50. TORSOLERP.Parent = Root
  51. TORSOLERP.Part0 = Torso
  52. TORSOLERP.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  53.  
  54. local ROOTLERP = Instance.new("ManualWeld")
  55. ROOTLERP.Parent = Root
  56. ROOTLERP.Part0 = Root
  57. ROOTLERP.Part1 = Torso
  58. ROOTLERP.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  59.  
  60. local RIGHTARMLERP = Instance.new("ManualWeld")
  61. RIGHTARMLERP.Parent = RightArm
  62. RIGHTARMLERP.Part0 = RightArm
  63. RIGHTARMLERP.Part1 = Torso
  64. RIGHTARMLERP.C0 = CFrame.new(-1.5, 0, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  65.  
  66. local LEFTARMLERP = Instance.new("ManualWeld")
  67. LEFTARMLERP.Parent = LeftArm
  68. LEFTARMLERP.Part0 = LeftArm
  69. LEFTARMLERP.Part1 = Torso
  70. LEFTARMLERP.C0 = CFrame.new(1.5, 0, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  71.  
  72. local RIGHTLEGLERP = Instance.new("ManualWeld")
  73. RIGHTLEGLERP.Parent = RightLeg
  74. RIGHTLEGLERP.Part0 = RightLeg
  75. RIGHTLEGLERP.Part1 = Torso
  76. RIGHTLEGLERP.C0 = CFrame.new(-0.5, 2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  77.  
  78. local LEFTLEGLERP = Instance.new("ManualWeld")
  79. LEFTLEGLERP.Parent = LeftLeg
  80. LEFTLEGLERP.Part0 = LeftLeg
  81. LEFTLEGLERP.Part1 = Torso
  82. LEFTLEGLERP.C0 = CFrame.new(0.5, 2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  83.  
  84. local function weldBetween(a, b)
  85. local weld = Instance.new("ManualWeld", a)
  86. weld.Part0 = a
  87. weld.Part1 = b
  88. weld.C0 = a.CFrame:inverse() * b.CFrame
  89. return weld
  90. end
  91.  
  92. function MAKETRAIL(PARENT,POSITION1,POSITION2,LIFETIME,COLOR)
  93. A = Instance.new("Attachment", PARENT)
  94. A.Position = POSITION1
  95. A.Name = "A"
  96. B = Instance.new("Attachment", PARENT)
  97. B.Position = POSITION2
  98. B.Name = "B"
  99. tr1 = Instance.new("Trail", PARENT)
  100. tr1.Attachment0 = A
  101. tr1.Attachment1 = B
  102. tr1.Enabled = true
  103. tr1.Lifetime = LIFETIME
  104. tr1.TextureMode = "Static"
  105. tr1.LightInfluence = 0
  106. tr1.Color = COLOR
  107. tr1.Transparency = NumberSequence.new(0, 1)
  108. end
  109.  
  110. shirt = Instance.new("Shirt", Character)
  111. shirt.Name = "Shirt"
  112. pants = Instance.new("Pants", Character)
  113. pants.Name = "Pants"
  114. Character.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=1123249914"
  115. Character.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=1839310233"
  116.  
  117. skull = Instance.new("Part",Character)
  118. skull.Size = Vector3.new(2,2,2)
  119. skull.CFrame = Head.CFrame
  120. skull.CanCollide = false
  121. skullweld = Instance.new("Weld",skull)
  122. skullweld.Part0 = skull
  123. skullweld.Part1 = Head
  124. skullweld.C0 = skull.CFrame:inverse() * Head.CFrame
  125. mskull = Instance.new("SpecialMesh", skull)
  126. mskull.MeshType = "FileMesh"
  127. mskull.Scale = Vector3.new(1.12, 1.12, 1.12)
  128. mskull.MeshId,mskull.TextureId = 'http://www.roblox.com/asset/?id=181343290','http://www.roblox.com/asset/?id=181343313'
  129. fedora = Instance.new("Part",Character)
  130. fedora.Size = Vector3.new(2,2,2)
  131. fedora.CFrame = Head.CFrame
  132. fedora.CanCollide = false
  133. fedoraweld = Instance.new("Weld",fedora)
  134. fedoraweld.Part0 = fedora
  135. fedoraweld.Part1 = Head
  136. fedoraweld.C0 = fedora.CFrame:inverse() * Head.CFrame * CFrame.new(0,-.8,0)
  137. mfedora = Instance.new("SpecialMesh", fedora)
  138. mfedora.MeshType = "FileMesh"
  139. mfedora.Scale = Vector3.new(1.1, 1.1, 1.1)
  140. mfedora.MeshId,mfedora.TextureId = 'http://www.roblox.com/asset/?id=13640868','http://www.roblox.com/asset/?id=18987684'
  141. tommygun = Instance.new("Part",Character)
  142. tommygun.Size = Vector3.new(2,2,2)
  143. tommygun.CFrame = RightArm.CFrame
  144. tommygun.CanCollide = false
  145. tommygunweld = Instance.new("Weld",tommygun)
  146. tommygunweld.Part0 = tommygun
  147. tommygunweld.Part1 = RightArm
  148. tommygunweld.C0 = tommygun.CFrame:inverse() * RightArm.CFrame * CFrame.new(0,-.80,1.25) * CFrame.Angles(math.rad(98),math.rad(0),0)
  149. mtommygun = Instance.new("SpecialMesh", tommygun)
  150. mtommygun.MeshType = "FileMesh"
  151. mtommygun.Scale = Vector3.new(1, 1, 1)
  152. mtommygun.MeshId,mtommygun.TextureId = 'http://www.roblox.com/asset/?id=116679805','http://www.roblox.com/asset/?id=116679995'
  153. shootbox = Instance.new("Part",Character)
  154. shootbox.Size = Vector3.new(.2,.2,.2)
  155. shootbox.CanCollide = false
  156. shootbox.Transparency = 1
  157. shootbox.CFrame = tommygun.CFrame
  158. shootboxweld = weldBetween(shootbox,tommygun)
  159. shootboxweld.C0 = CFrame.new(0,-.05,2.62)
  160. light = Instance.new("PointLight", shootbox)
  161. light.Color = BrickColor.new("Bright yellow").Color
  162. light.Range = 5
  163. light.Brightness = 11
  164. light.Enabled = false
  165. particlemiter1 = Instance.new("ParticleEmitter", shootbox)
  166. particlemiter1.Enabled = false
  167. particlemiter1.Texture = "rbxassetid://461242617"
  168. particlemiter1.Lifetime = NumberRange.new(.1)
  169. particlemiter1.Size = NumberSequence.new(1,0)
  170. particlemiter1.Rate = 20
  171. particlemiter1.RotSpeed = NumberRange.new(0)
  172. particlemiter1.Speed = NumberRange.new(0)
  173. tommygunammo = Instance.new("Part",Character)
  174. tommygunammo.Size = Vector3.new(2,2,2)
  175. tommygunammo.CFrame = tommygun.CFrame
  176. tommygunammo.CanCollide = false
  177. tommygunammoweld = Instance.new("Weld",tommygunammo)
  178. tommygunammoweld.Part0 = tommygunammo
  179. tommygunammoweld.Part1 = tommygun
  180. tommygunammoweld.C0 = tommygun.CFrame:inverse() * tommygun.CFrame * CFrame.new(0,.4,.25) * CFrame.Angles(math.rad(0),math.rad(0),0)
  181. mtommygunammo = Instance.new("SpecialMesh", tommygunammo)
  182. mtommygunammo.MeshType = "FileMesh"
  183. mtommygunammo.Scale = Vector3.new(1, 1, 1)
  184. mtommygunammo.MeshId,mtommygunammo.TextureId = 'http://www.roblox.com/asset/?id=116740155','http://www.roblox.com/asset/?id=116679995'
  185. mask = Instance.new("Part",Character)
  186. mask.Size = Vector3.new(2,2,2)
  187. mask.CFrame = Head.CFrame
  188. mask.CanCollide = false
  189. maskweld = Instance.new("Weld",mask)
  190. maskweld.Part0 = mask
  191. maskweld.Part1 = Head
  192. maskweld.C0 = mask.CFrame:inverse() * Head.CFrame * CFrame.new(-.2,0,.62) * CFrame.Angles(math.rad(0),math.rad(10),math.rad(0))
  193. mmask = Instance.new("SpecialMesh", mask)
  194. mmask.MeshType = "FileMesh"
  195. mmask.Scale = Vector3.new(1.25, 1.25, 1.25)
  196. mmask.MeshId,mmask.TextureId = 'http://www.roblox.com/asset/?id=12470186','http://www.roblox.com/asset/?id=12470201'
  197.  
  198.  
  199.  
  200. coroutine.wrap(function()
  201. while wait() do
  202. hum.WalkSpeed = ws
  203. LeftArm.BrickColor = BrickColor.new("Really black")
  204. RightArm.BrickColor = BrickColor.new("Really black")
  205. Head.BrickColor = BrickColor.new("Really black")
  206. end
  207. end)()
  208. godmode = coroutine.wrap(function()
  209. for i,v in pairs(Character:GetChildren()) do
  210. if v:IsA("BasePart") and v ~= Root then
  211. v.Anchored = false
  212. end
  213. end
  214. while true do
  215. hum.MaxHealth = math.huge
  216. wait(0.0000001)
  217. hum.Health = math.huge
  218. wait()
  219. end
  220. end)
  221. godmode()
  222. ff = Instance.new("ForceField", Character)
  223. ff.Visible = false
  224.  
  225. coroutine.wrap(function()
  226. for i,v in pairs(Character:GetChildren()) do
  227. if v.Name == "Animate" then v:Remove()
  228. end
  229. end
  230. end)()
  231.  
  232. function damagealll(Radius,Position)
  233. local Returning = {}
  234. for _,v in pairs(workspace:GetChildren()) do
  235. if v~=Character and v:FindFirstChildOfClass('Humanoid') and v:FindFirstChild('Torso') or v:FindFirstChild('UpperTorso') then
  236. if v:FindFirstChild("Torso") then
  237. local Mag = (v.Torso.Position - Position).magnitude
  238. if Mag < Radius then
  239. table.insert(Returning,v)
  240. end
  241. elseif v:FindFirstChild("UpperTorso") then
  242. local Mag = (v.UpperTorso.Position - Position).magnitude
  243. if Mag < Radius then
  244. table.insert(Returning,v)
  245. end
  246. end
  247. end
  248. end
  249. return Returning
  250. end
  251.  
  252. ArtificialHB = Instance.new("BindableEvent", script)
  253. ArtificialHB.Name = "Heartbeat"
  254. script:WaitForChild("Heartbeat")
  255.  
  256. frame = 1 / 60
  257. tf = 0
  258. allowframeloss = false
  259. tossremainder = false
  260.  
  261.  
  262. lastframe = tick()
  263. script.Heartbeat:Fire()
  264.  
  265.  
  266. game:GetService("RunService").Heartbeat:connect(function(s, p)
  267. tf = tf + s
  268. if tf >= frame then
  269. if allowframeloss then
  270. script.Heartbeat:Fire()
  271. lastframe = tick()
  272. else
  273. for i = 1, math.floor(tf / frame) do
  274. script.Heartbeat:Fire()
  275. end
  276. lastframe = tick()
  277. end
  278. if tossremainder then
  279. tf = 0
  280. else
  281. tf = tf - frame * math.floor(tf / frame)
  282. end
  283. end
  284. end)
  285.  
  286. function swait(num)
  287. if num == 0 or num == nil then
  288. game:service("RunService").Stepped:wait(0)
  289. else
  290. for i = 0, num do
  291. game:service("RunService").Stepped:wait(0)
  292. end
  293. end
  294. end
  295.  
  296. doomtheme = Instance.new("Sound", Torso)
  297. doomtheme.Volume = 1
  298. doomtheme.Name = "doomtheme"
  299. doomtheme.Looped = true
  300. doomtheme.SoundId = "rbxassetid://318812395"
  301. doomtheme:Play()
  302.  
  303. Torso.ChildRemoved:connect(function(removed)
  304. if removed.Name == "doomtheme" then
  305.  
  306. doomtheme = Instance.new("Sound", Torso)
  307. doomtheme.Volume = 1
  308. doomtheme.Name = "doomtheme"
  309. doomtheme.Looped = true
  310. doomtheme.SoundId = "rbxassetid://318812395"
  311. doomtheme:Play()
  312. end
  313. end)
  314.  
  315. for _,n in pairs(Character:GetChildren()) do
  316. if n:IsA("Accessory") then n:Remove() end
  317. end
  318. for _,x in pairs(Character:GetChildren()) do
  319. if x:IsA("Decal") then x:Remove() end
  320. end
  321.  
  322. function SOUND(PARENT,ID,VOL,LOOP,REMOVE)
  323. so = Instance.new("Sound")
  324. so.Parent = PARENT
  325. so.SoundId = "rbxassetid://"..ID
  326. so.Volume = VOL
  327. so.Looped = LOOP
  328. so:Play()
  329. removeuseless:AddItem(so,REMOVE)
  330. end
  331.  
  332. Mouse.KeyDown:connect(function(Press)
  333. Press=Press:lower()
  334. if Press=='t' then
  335. if tauntdebounce then return end
  336. tauntdebounce = true
  337. local b1 = Instance.new("BillboardGui",Head)
  338. b1.Size = UDim2.new(0,4,0,1.6)
  339. b1.StudsOffset = Vector3.new(0,0,0)
  340. b1.Name = "laff"
  341. b1.AlwaysOnTop = true
  342. b1.StudsOffset = Vector3.new(0,2,0)
  343. b1.Adornee = Head
  344. removeuseless:AddItem(b1,3)
  345. local b2 = Instance.new("TextLabel",b1)
  346. b2.BackgroundTransparency = 1
  347. b2.Text = "HeHeHeHeHeHeHe..."
  348. b2.Font = "Garamond"
  349. b2.TextSize = 30
  350. b2.Name = "lafftext"
  351. b2.TextStrokeTransparency = 0
  352. b2.TextColor3 = BrickColor.new("Grey").Color
  353. b2.TextStrokeColor3 = Color3.new(0,0,0)
  354. b2.Size = UDim2.new(1,0,.5,0)
  355. laff = Instance.new("Sound",Head)
  356. laff.SoundId = "rbxassetid://2126502539"
  357. laff.Volume = 5
  358. laff:Play()
  359. wait(5)
  360. laff:Remove()
  361. tauntdebounce = false
  362. end
  363. end)
  364.  
  365. Mouse.KeyDown:connect(function(Press)
  366. Press=Press:lower()
  367. if Press=='e' then
  368. if debounce then return end
  369. if equip then
  370. g1:Remove()
  371. light.Enabled = false
  372. pcall(function()
  373. temmy:Remove()
  374. end)
  375. for i,v in pairs(tommygun:GetDescendants()) do
  376. if v.Name == "temmy" then v:Remove()
  377. end
  378. end
  379. light.Enabled = false
  380. particlemiter1.Enabled = false
  381. hum.CameraOffset = Vector3.new(0,0,0)
  382. attacking = false
  383. equip = false
  384. shooting = false
  385. gunallowance = false
  386. ws = 18
  387. else
  388. g1 = Instance.new("BodyGyro", Root)
  389. g1.D = 175
  390. g1.P = 20000
  391. g1.MaxTorque = Vector3.new(0,9000,0)
  392. g1.CFrame = CFrame.new(Root.Position,Mouse.Hit.p)
  393. attacking = true
  394. debounce = true
  395. equip = true
  396. coroutine.wrap(function()
  397. while equip do
  398. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,Mouse.Hit.p),.1)
  399. ws = 10
  400. swait()
  401. if Root.Velocity.y > 1 then
  402. position = "Jump3"
  403. elseif Root.Velocity.y < -1 then
  404. position = "Falling3"
  405. elseif Root.Velocity.Magnitude > 2 and running == false and attacking == true then
  406. position = "Walk3"
  407. elseif Root.Velocity.Magnitude < 2 and running == false and attacking == true then
  408. position = "Idle4"
  409. end
  410. end
  411. end)()
  412. coroutine.wrap(function()
  413. while equip do
  414. swait()
  415. settime = 0.05
  416. sine = sine + change
  417. if position == "Jump3" and attacking and not running then
  418. change = .65
  419. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.5, 2, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.4)
  420. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.5, 1.0, .9) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)), 0.4)
  421. elseif position == "Falling3" and attacking and not running then
  422. change = .65
  423. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.5, 2, 0) * CFrame.Angles(math.rad(8), math.rad(4), math.rad(0)), 0.4)
  424. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.5, 1.0, .9) * CFrame.Angles(math.rad(14), math.rad(-4), math.rad(0)), 0.4)
  425. elseif position == "Walk3" and attacking == true and running == false then
  426. change = .65
  427. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, 0.05*math.sin(sine/4), 0) * CFrame.Angles(math.rad(0), math.rad(-50), math.rad(0)),.2)
  428. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.5, 1.92 - 0.35 * math.cos(sine/8)/2.8, 0.2 - math.sin(sine/8)/3.4) * CFrame.Angles(math.rad(10) + -math.sin(sine/8)/2.3, math.rad(0)*math.cos(sine/1), math.rad(0), math.cos(25 * math.cos(sine/8))), 0.1)
  429. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.5, 1.92 + 0.35 * math.cos(sine/8)/2.8, 0.2 + math.sin(sine/8)/3.4) * CFrame.Angles(math.rad(10) - -math.sin(sine/8)/2.3, math.rad(0)*math.cos(sine/1), math.rad(0) , math.cos(25 * math.cos(sine/8))), 0.1)
  430. elseif position == "Idle4" and attacking == true and running == false then
  431. change = .65
  432. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.2 + -.1 * math.sin(sine/25), 0) * CFrame.Angles(math.rad(0), math.rad(-50), math.rad(0)),.1)
  433. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.1)
  434. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2 - .1 * math.sin(sine/25), 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.1)
  435. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.1)
  436. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2.0 - .1 * math.sin(sine/25), 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.1)
  437. end
  438. end
  439. end)()
  440. SOUND(RightArm,898163129,6,false,2)
  441. for i = 1, 30 do
  442. tommygunweld.C0 = tommygunweld.C0:lerp(CFrame.new(0,-.68,1.25) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(-12)),.25)
  443. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1, 0.1, 0.4) * CFrame.Angles(math.rad(-90), math.rad(-60), math.rad(0)), 0.25)
  444. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1, 1.35, 0.4) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.25)
  445. swait()
  446. end
  447. gunallowance = true
  448. Mouse.Button1Down:connect(function()
  449. if gunallowance then
  450. particlemiter1.Enabled = true
  451. temmy = Instance.new("Sound",tommygun)
  452. temmy.SoundId = "rbxassetid://2204318084"
  453. temmy.Volume = 6
  454. temmy.Name = "temmy"
  455. temmy.Looped = true
  456. temmy:Play()
  457. shooting = true
  458. end
  459. end)
  460. Mouse.Button1Up:connect(function()
  461. if gunallowance then
  462. hum.CameraOffset = Vector3.new(0,0,0)
  463. light.Enabled = false
  464. particlemiter1.Enabled = false
  465. pcall(function()
  466. temmy:Remove()
  467. end)
  468. for i,v in pairs(tommygun:GetDescendants()) do
  469. if v.Name == "temmy" then v:Remove()
  470. end
  471. end
  472. shooting = false
  473. end
  474. end)
  475. coroutine.wrap(function()
  476. if firsttime2 then return end
  477. firsttime2 = true
  478. while true do
  479. swait(3)
  480. if shooting then
  481. if switch1 then
  482. switch1 = false
  483. switch2 = true
  484. light.Enabled = true
  485. elseif switch2 then
  486. switch1 = true
  487. switch2 = false
  488. light.Enabled = false
  489. end
  490. pcall(function()
  491. if Mouse.Target.Parent:FindFirstChildOfClass("Humanoid") then
  492. Mouse.Target.Parent:FindFirstChildOfClass("Humanoid"):TakeDamage(math.random(3,7))
  493. end
  494. end)
  495. end
  496. end
  497. end)()
  498. coroutine.wrap(function()
  499. if firsttime then return end
  500. firsttime = true
  501. while true do
  502. if shooting then
  503. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1, 1.35, 0.4) * CFrame.Angles(math.rad(-90), math.rad(0 - 10 * math.sin(sine)), math.rad(0)), 0.25)
  504. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1, 0.1 + .4 * math.sin(sine), 0.4) * CFrame.Angles(math.rad(-90), math.rad(-60), math.rad(0)), 0.25)
  505. pcall(function()
  506. if Mouse.Target.Parent:FindFirstChildOfClass("Humanoid") then
  507. Mouse.Target.Parent:FindFirstChildOfClass("Humanoid"):TakeDamage(1)
  508. end
  509. end)
  510. elseif not shooting then
  511. end
  512. swait()
  513. end
  514. end)()
  515. debounce = false
  516. end
  517. end
  518. end)
  519.  
  520. Mouse.KeyDown:connect(function(Press)
  521. Press=Press:lower()
  522. if Press=='z' then
  523. print("Music switched to 1")
  524. id = 2199374985
  525. doomtheme.SoundId = "rbxassetid://"..id
  526. doomtheme:Play()
  527. end
  528. end)
  529.  
  530. Mouse.KeyDown:connect(function(Press)
  531. Press=Press:lower()
  532. if Press=='v' then
  533. print("Music switched to 4")
  534. id = 2111948183
  535. doomtheme.SoundId = "rbxassetid://"..id
  536. doomtheme:Play()
  537. end
  538. end)
  539.  
  540. Mouse.KeyDown:connect(function(Press)
  541. Press=Press:lower()
  542. if Press=='x' then
  543. print("Music switched to 2")
  544. id = 318812395
  545. doomtheme.SoundId = "rbxassetid://"..id
  546. doomtheme:Play()
  547. end
  548. end)
  549.  
  550. Mouse.KeyDown:connect(function(Press)
  551. Press=Press:lower()
  552. if Press=='c' then
  553. print("Music switched to 3")
  554. id = 180337897
  555. doomtheme.SoundId = "rbxassetid://"..id
  556. doomtheme:Play()
  557. end
  558. end)
  559.  
  560. Mouse.KeyDown:connect(function(Press)
  561. Press=Press:lower()
  562. if Press=='b' then
  563. print("Music switched to 5")
  564. id = 649148458
  565. doomtheme.SoundId = "rbxassetid://"..id
  566. doomtheme:Play()
  567. end
  568. end)
  569.  
  570.  
  571. checks1 = coroutine.wrap(function() -------Checks
  572. while true do
  573. if Root.Velocity.y > 1 then
  574. position = "Jump"
  575. elseif Root.Velocity.y < -1 then
  576. position = "Falling"
  577. elseif Root.Velocity.Magnitude < 2 then
  578. position = "Idle"
  579. elseif Root.Velocity.Magnitude < 20 then
  580. position = "Walking"
  581. elseif Root.Velocity.Magnitude > 20 then
  582. position = "Running"
  583. else
  584. end
  585. wait()
  586. end
  587. end)
  588. checks1()
  589.  
  590. function ray(POSITION, DIRECTION, RANGE, IGNOREDECENDANTS)
  591. return workspace:FindPartOnRay(Ray.new(POSITION, DIRECTION.unit * RANGE), IGNOREDECENDANTS)
  592. end
  593.  
  594. function ray2(StartPos, EndPos, Distance, Ignore)
  595. local DIRECTION = CFrame.new(StartPos,EndPos).lookVector
  596. return ray(StartPos, DIRECTION, Distance, Ignore)
  597. end
  598.  
  599. OrgnC0 = Neck.C0
  600. local movelimbs = coroutine.wrap(function()
  601. while RunSrv.Stepped:wait() do
  602. TrsoLV = Torso.CFrame.lookVector
  603. Dist = nil
  604. Diff = nil
  605. if not MseGuide then
  606. print("Failed to recognize")
  607. else
  608. local _, Point = Workspace:FindPartOnRay(Ray.new(Head.CFrame.p, Mouse.Hit.lookVector), Workspace, false, true)
  609. Dist = (Head.CFrame.p-Point).magnitude
  610. Diff = Head.CFrame.Y-Point.Y
  611. local _, Point2 = Workspace:FindPartOnRay(Ray.new(LeftArm.CFrame.p, Mouse.Hit.lookVector), Workspace, false, true)
  612. Dist2 = (LeftArm.CFrame.p-Point).magnitude
  613. Diff2 = LeftArm.CFrame.Y-Point.Y
  614. HEADLERP.C0 = CFrame.new(0, -1.5, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  615. Neck.C0 = Neck.C0:lerp(OrgnC0*CFrame.Angles((math.tan(Diff/Dist)*1), 0, (((Head.CFrame.p-Point).Unit):Cross(Torso.CFrame.lookVector)).Y*1), .1)
  616. end
  617. end
  618. end)
  619. movelimbs()
  620. immortal = {}
  621. for i,v in pairs(Character:GetDescendants()) do
  622. if v:IsA("BasePart") and v.Name ~= "lmagic" and v.Name ~= "rmagic" then
  623. if v ~= Root and v ~= Torso and v ~= Head and v ~= RightArm and v ~= LeftArm and v ~= RightLeg and v.Name ~= "lmagic" and v.Name ~= "rmagic" and v ~= LeftLeg then
  624. v.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)
  625. end
  626. table.insert(immortal,{v,v.Parent,v.Material,v.Color,v.Transparency})
  627. elseif v:IsA("JointInstance") then
  628. table.insert(immortal,{v,v.Parent,nil,nil,nil})
  629. end
  630. end
  631. for e = 1, #immortal do
  632. if immortal[e] ~= nil then
  633. local STUFF = immortal[e]
  634. local PART = STUFF[1]
  635. local PARENT = STUFF[2]
  636. local MATERIAL = STUFF[3]
  637. local COLOR = STUFF[4]
  638. local TRANSPARENCY = STUFF[5]
  639. if levitate then
  640. if PART.ClassName == "Part" and PART ~= Root and PART.Name ~= eyo1 and PART.Name ~= eyo2 and PART.Name ~= "lmagic" and PART.Name ~= "rmagic" then
  641. PART.Material = MATERIAL
  642. PART.Color = COLOR
  643. PART.Transparency = TRANSPARENCY
  644. end
  645. PART.AncestryChanged:connect(function()
  646. PART.Parent = PARENT
  647. end)
  648. else
  649. if PART.ClassName == "Part" and PART ~= Root and PART.Name ~= "lmagic" and PART.Name ~= "rmagic" then
  650. PART.Material = MATERIAL
  651. PART.Color = COLOR
  652. PART.Transparency = TRANSPARENCY
  653. end
  654. PART.AncestryChanged:connect(function()
  655. PART.Parent = PARENT
  656. end)
  657. end
  658. end
  659. end
  660. function immortality()
  661. for e = 1, #immortal do
  662. if immortal[e] ~= nil then
  663. local STUFF = immortal[e]
  664. local PART = STUFF[1]
  665. local PARENT = STUFF[2]
  666. local MATERIAL = STUFF[3]
  667. local COLOR = STUFF[4]
  668. local TRANSPARENCY = STUFF[5]
  669. if PART.ClassName == "Part" and PART == Root then
  670. PART.Material = MATERIAL
  671. PART.Color = COLOR
  672. PART.Transparency = TRANSPARENCY
  673. end
  674. if PART.Parent ~= PARENT then
  675. hum:Remove()
  676. PART.Parent = PARENT
  677. hum = Instance.new("Humanoid",Character)
  678. hum.Name = "noneofurbusiness"
  679. end
  680. end
  681. end
  682. end
  683. coroutine.wrap(function()
  684. while true do
  685. if hum.Health < .1 then
  686. deadsound = Instance.new("Sound", Torso)
  687. deadsound.Volume = 6
  688. deadsound.SoundId = "rbxassetid://1411352723"
  689. deadsound:Play()
  690. immortality()
  691. end
  692. wait()
  693. end
  694. end)()
  695.  
  696. local anims = coroutine.wrap(function()
  697. while true do
  698. settime = 0.05
  699. sine = sine + change
  700. if position == "Jump" and attacking == false then
  701. change = 1
  702. tommygunweld.C0 = tommygunweld.C0:lerp(CFrame.new(0,-.80,1.25) * CFrame.Angles(math.rad(98),math.rad(0),0),.25)
  703. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.1)
  704. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.1)
  705. LEFTARMLERP.C1 = LEFTARMLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.4)
  706. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  707. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.4,.1,-.2) * CFrame.Angles(math.rad(20),math.rad(-3),math.rad(-4)), 0.4)
  708. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.5, 2, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.4)
  709. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.5, 1.0, .9) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)), 0.4)
  710. elseif position == "Jump2" and attacking == false then
  711. change = 1
  712. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-20 - 1 * math.sin(sine/9)), math.rad(0 + 0 * math.cos(sine/8)), math.rad(0) + Root.RotVelocity.Y / 30, math.cos(10 * math.cos(sine/10))), 0.3)
  713. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.3)
  714. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.3)
  715. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.6,-.5) * CFrame.Angles(math.rad(32),math.rad(5 - .1 * math.sin(sine/12)),math.rad(40 - .5 * math.sin(sine/12))), 0.3)
  716. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.6,-.5) * CFrame.Angles(math.rad(30),math.rad(-5 + .1 * math.sin(sine/12)),math.rad(-40 + .5 * math.sin(sine/12))), 0.3)
  717. LEFTARMLERP.C1 = LEFTARMLERP.C1:lerp(CFrame.new(.2,1.2,-.3),.3)
  718. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.54, 1.4 + .1 * math.sin(sine/9), .4) * CFrame.Angles(math.rad(9 + 2 * math.cos(sine/9)), math.rad(0), math.rad(0)), 0.3)
  719. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.54, 2.0 + .02 * math.sin(sine/9), 0.2 + .1 * math.sin(sine/9)) * CFrame.Angles(math.rad(25 + 5 * math.sin(sine/9)), math.rad(20), math.rad(0)), 0.3)
  720. elseif position == "Falling" and attacking == false then
  721. change = 1
  722. tommygunweld.C0 = tommygunweld.C0:lerp(CFrame.new(0,-.80,1.25) * CFrame.Angles(math.rad(98),math.rad(0),0),.25)
  723. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.1)
  724. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.1)
  725. LEFTARMLERP.C1 = LEFTARMLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.4)
  726. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.5, 2, 0) * CFrame.Angles(math.rad(8), math.rad(4), math.rad(0)), 0.2)
  727. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.5, 1.0, .9) * CFrame.Angles(math.rad(14), math.rad(-4), math.rad(0)), 0.2)
  728. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.6, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(20)), 0.2)
  729. elseif position == "Falling2" and attacking == false then
  730. change = 1
  731. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-20 - 1 * math.sin(sine/9)), math.rad(0 + 0 * math.cos(sine/8)), math.rad(0) + Root.RotVelocity.Y / 30, math.cos(10 * math.cos(sine/10))), 0.3)
  732. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.3)
  733. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.3)
  734. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.6,-.5) * CFrame.Angles(math.rad(32),math.rad(5 - .1 * math.sin(sine/12)),math.rad(40 - .5 * math.sin(sine/12))), 0.3)
  735. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.6,-.5) * CFrame.Angles(math.rad(30),math.rad(-5 + .1 * math.sin(sine/12)),math.rad(-40 + .5 * math.sin(sine/12))), 0.3)
  736. LEFTARMLERP.C1 = LEFTARMLERP.C1:lerp(CFrame.new(.2,1.2,-.3),.3)
  737. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.54, 1.4 + .1 * math.sin(sine/9), .4) * CFrame.Angles(math.rad(9 + 2 * math.cos(sine/9)), math.rad(0), math.rad(0)), 0.3)
  738. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.54, 2.0 + .02 * math.sin(sine/9), 0.2 + .1 * math.sin(sine/9)) * CFrame.Angles(math.rad(25 + 5 * math.sin(sine/9)), math.rad(20), math.rad(0)), 0.3)
  739. elseif position == "Walking" and attacking == false and running == false then
  740. change = 1.2
  741. walking = true
  742. tommygunweld.C0 = tommygunweld.C0:lerp(CFrame.new(0,-.80,1.25) * CFrame.Angles(math.rad(98),math.rad(0),0),.25)
  743. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.3,1,0) * CFrame.Angles(math.rad(180),math.rad(1),math.rad(10)), 0.1)
  744. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.1)
  745. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.1)
  746. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5 + Root.RotVelocity.Y / 85,.35,.5*math.sin(sine/8)) * CFrame.Angles(math.rad(-35*math.sin(sine/8)),math.rad(0*math.sin(sine/8)),math.rad(10 + Root.RotVelocity.Y / 10, math.sin(20 * math.sin(sine/4)))),.3)
  747. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, 0.05*math.sin(sine/4), 0) * CFrame.Angles(math.rad(-10), math.rad(5 * math.cos(sine/7)), math.rad(0) + Root.RotVelocity.Y / 30, math.cos(25 * math.cos(sine/10))), 0.1)
  748. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.5, 1.92 - 0.35 * math.cos(sine/8)/2.8, 0.2 - math.sin(sine/8)/3.4) * CFrame.Angles(math.rad(10) + -math.sin(sine/8)/2.3, math.rad(0)*math.cos(sine/1), math.rad(0), math.cos(25 * math.cos(sine/8))), 0.3)
  749. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.5, 1.92 + 0.35 * math.cos(sine/8)/2.8, 0.2 + math.sin(sine/8)/3.4) * CFrame.Angles(math.rad(10) - -math.sin(sine/8)/2.3, math.rad(0)*math.cos(sine/1), math.rad(0) , math.cos(25 * math.cos(sine/8))), 0.3)
  750. elseif position == "Idle" and attacking == false and running == false then
  751. change = .5
  752. tommygunweld.C0 = tommygunweld.C0:lerp(CFrame.new(0,-.80,1.25) * CFrame.Angles(math.rad(98),math.rad(0),0),.25)
  753. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.2 + -.1 * math.sin(sine/12), 0) * CFrame.Angles(math.rad(0),math.rad(25),math.rad(0)),.1)
  754. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.3 + .1 * math.sin(sine/12),1 + .1 * math.sin(sine/12),0) * CFrame.Angles(math.rad(180),math.rad(1),math.rad(8 + 5 * math.sin(sine/12))), 0.1)
  755. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.59 - .05 * math.sin(sine/12), 0.1 -.1 * math.sin(sine/12), 0) * CFrame.Angles(math.rad(-2), math.rad(2), math.rad(8 - 6 * math.sin(sine/12))), .2)
  756. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.1)
  757. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2 - .1 * math.sin(sine/12), 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.1)
  758. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.1)
  759. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2.0 - .1 * math.sin(sine/12), 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.1)
  760. elseif position == "Idle2" and attacking == false and running == false then
  761. change = .75
  762. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0 - 3 * math.sin(sine/9)),0,0),.1)
  763. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.1)
  764. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(-.2,.2,0) * CFrame.Angles(0,0,0),.1)
  765. LEFTARMLERP.C1 = CFrame.new(0,0,0) * CFrame.Angles(0,0,0)
  766. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.6, 0.8 - .1 * math.sin(sine/9), 0) * CFrame.Angles(math.rad(0), math.rad(0 + 3 * math.sin(sine/9)), math.rad(35 - 5 * math.sin(sine/9))), 0.4)
  767. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.6, 0.8 - .1 * math.sin(sine/9), 0) * CFrame.Angles(math.rad(0), math.rad(0 - 3 * math.sin(sine/9)), math.rad(-35 + 5 * math.sin(sine/9))), 0.4)
  768. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.54, 1.4 + .1 * math.sin(sine/9), .4) * CFrame.Angles(math.rad(9 + 2 * math.cos(sine/9)), math.rad(0), math.rad(0)), 0.4)
  769. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.5, 2.0,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10 + 2 * math.sin(sine/9))), 0.4)
  770. elseif position == "Walking2" and attacking == false and running == false then
  771. ws = 50
  772. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-20 - 1 * math.sin(sine/9)), math.rad(0 + 0 * math.cos(sine/8)), math.rad(0) + Root.RotVelocity.Y / 30, math.cos(10 * math.cos(sine/10))), 0.3)
  773. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.3)
  774. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.3)
  775. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.6,-.5) * CFrame.Angles(math.rad(32),math.rad(5 - .1 * math.sin(sine/12)),math.rad(40 - .5 * math.sin(sine/12))), 0.3)
  776. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.6,-.5) * CFrame.Angles(math.rad(30),math.rad(-5 + .1 * math.sin(sine/12)),math.rad(-40 + .5 * math.sin(sine/12))), 0.3)
  777. LEFTARMLERP.C1 = LEFTARMLERP.C1:lerp(CFrame.new(.2,1.2,-.3),.3)
  778. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.54, 1.4 + .1 * math.sin(sine/9), .4) * CFrame.Angles(math.rad(9 + 2 * math.cos(sine/9)), math.rad(0), math.rad(0)), 0.3)
  779. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.54, 2.0 + .02 * math.sin(sine/9), 0.2 + .1 * math.sin(sine/9)) * CFrame.Angles(math.rad(25 + 5 * math.sin(sine/9)), math.rad(20), math.rad(0)), 0.3)
  780. elseif position == "Running" and attacking == false then
  781. change = 1
  782. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(0, .5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.3)
  783. LEFTARMLERP.C1 = LEFTARMLERP.C1:lerp(CFrame.new(-1.24+.6*math.sin(sine/4)/1.4, 0.54, 0-0.8*math.sin(sine/4))*CFrame.Angles(math.rad(6+140*math.sin(sine/4)/1.2), math.rad(0), math.rad(20+70*math.sin(sine/4))), 0.3)
  784. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(0,.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  785. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.2, 0) * CFrame.Angles(math.rad(-20 - 0 * math.sin(sine/4)), math.rad(0 + 6 * math.sin(sine/4)), math.rad(0) + Root.RotVelocity.Y / 30, math.sin(10 * math.sin(sine/4))), 0.3)
  786. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,-.2 + .5*-math.sin(sine/4)),.3)
  787. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.5, 1.6+0.1*math.sin(sine/4),.7*-math.sin(sine/4)) * CFrame.Angles(math.rad(15+ -50 * math.sin(sine/4)),0,0),.3)
  788. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,-.2 + .5*math.sin(sine/4)),.3)
  789. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.5, 1.6-0.1*math.sin(sine/4),.7*math.sin(sine/4)) * CFrame.Angles(math.rad(15 + 50 * math.sin(sine/4)),0,0),.3)
  790. end
  791. swait()
  792. end
  793. end)
  794. anims()
  795. warn("Risen from hell, ready to prove his reputation. Made by Supr14")
Advertisement
Add Comment
Please, Sign In to add comment