Advertisement
Void_scripter0

NOOB MAFIA

Feb 19th, 2019
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 37.89 KB | None | 0 0
  1. -----------//Noob mafia\\-----------
  2. --[[Movelist
  3. F = Equip/Unequip, click to shoot, hold to spray
  4. E = Taunt
  5. ---------]]
  6. --Credits to Shackluster for the refit/anti-breakjoints function, he's a cool guy/great scripter.--
  7. --Ayy i'm not dead yet, take that haters, if i even had any to begin with.--
  8. --Keeping this script small since big ones will cause major lag & exceed script limits--
  9. --Using a FE converter because i'm way too lazy to create remotes for it--
  10.  
  11. if game:GetService("RunService"):IsClient()then error("Please run as a server script. Use h/ instead of hl/.")end;print("FE Compatibility: by WaverlyCole");InternalData = {}
  12. do
  13. script.Parent = owner.Character
  14. local Event = Instance.new("RemoteEvent");Event.Name = "UserInput"
  15. local function NewFakeEvent()
  16. local Bind = Instance.new("BindableEvent")
  17. local Fake;Fake = {Connections = {},
  18. fakeEvent=true;
  19. Connect=function(self,Func)
  20. Bind.Event:connect(Func)
  21. self.Connections[Bind] = true
  22. return setmetatable({Connected = true},{
  23. __index = function (self,Index)
  24. if Index:lower() == "disconnect" then
  25. return function() Fake.Connections[Bind] = false;self.Connected = false end
  26. end
  27. return Fake[Index]
  28. end;
  29. __tostring = function() return "Connection" end;
  30. })
  31. end}
  32. Fake.connect = Fake.Connect;return Fake;
  33. end
  34. local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
  35. local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
  36. local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
  37. self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
  38. end};ContextActionService.UnBindAction = ContextActionService.BindAction
  39. local function TriggerEvent(self,Event,...)
  40. local Trigger = Mouse[Event]
  41. if Trigger and Trigger.fakeEvent and Trigger.Connections then
  42. for Connection,Active in pairs(Trigger.Connections) do if Active then Connection:Fire(...) end end
  43. end
  44. end
  45. Mouse.TrigEvent = TriggerEvent;UserInputService.TrigEvent = TriggerEvent
  46. Event.OnServerEvent:Connect(function(FiredBy,Input)
  47. if FiredBy.Name ~= owner.Name then return end
  48. if Input.MouseEvent then
  49. Mouse.Target = Input.Target;Mouse.Hit = Input.Hit
  50. else
  51. local Begin = Input.UserInputState == Enum.UserInputState.Begin
  52. if Input.UserInputType == Enum.UserInputType.MouseButton1 then return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up") end
  53. for _,Action in pairs(ContextActionService.Actions) do
  54. for _,Key in pairs(Action.Keys) do if Key==Input.KeyCode then Action.Function(Action.Name,Input.UserInputState,Input) end end
  55. end
  56. Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
  57. UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
  58. end
  59. end)
  60. InternalData["Mouse"] = Mouse;InternalData["ContextActionService"] = ContextActionService;InternalData["UserInputService"] = UserInputService
  61. Event.Parent = NLS([[
  62. local Player = owner;local Event = script:WaitForChild("UserInput");local UserInputService = game:GetService("UserInputService");local Mouse = Player:GetMouse()
  63. local Input = function(Input,gameProcessedEvent)
  64. if gameProcessedEvent then return end
  65. Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
  66. end
  67. UserInputService.InputBegan:Connect(Input);UserInputService.InputEnded:Connect(Input)
  68. local Hit,Target
  69. while wait(1/30) do
  70. if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
  71. Hit,Target = Mouse.Hit,Mouse.Target;Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
  72. end
  73. end
  74. ]],owner.Character)
  75. end
  76. RealGame = game;game = setmetatable({},{
  77. __index = function (self,Index)
  78. local Sandbox = function (Thing)
  79. if Thing:IsA("Player") then
  80. local RealPlayer = Thing
  81. return setmetatable({},{
  82. __index = function (self,Index)
  83. local Type = type(RealPlayer[Index])
  84. if Type == "function" then
  85. if Index:lower() == "getmouse" or Index:lower() == "mouse" then
  86. return function (self)return InternalData["Mouse"] end
  87. end
  88. return function (self,...)return RealPlayer[Index](RealPlayer,...) end
  89. end
  90. return RealPlayer[Index]
  91. end;
  92. __tostring = function(self) return RealPlayer.Name end
  93. })
  94. end
  95. end
  96. if RealGame[Index] then
  97. local Type = type(RealGame[Index])
  98. if Type == "function" then
  99. if Index:lower() == "getservice" or Index:lower() == "service" then
  100. return function (self,Service)
  101. local FakeServices = {
  102. ["players"] = function()
  103. return setmetatable({},{
  104. __index = function (self2,Index2)
  105. local RealService = RealGame:GetService(Service)
  106. local Type2 = type(Index2)
  107. if Type2 == "function" then
  108. return function (self,...) return RealService[Index2](RealService,...)end
  109. else
  110. if Index2:lower() == "localplayer" then return Sandbox(owner) end
  111. return RealService[Index2]
  112. end
  113. end;
  114. __tostring = function(self) return RealGame:GetService(Service).Name end
  115. })
  116. end;
  117. ["contextactionservice"] = function() return InternalData["ContextActionService"] end;
  118. ["userinputservice"] = function() return InternalData["UserInputService"] end;
  119. ["runservice"] = function()
  120. return setmetatable({},{
  121. __index = function(self2,Index2)
  122. local RealService = RealGame:GetService(Service)
  123. local Type2 = type(Index2)
  124. if Type2 == "function" then
  125. return function (self,...) return RealService[Index2](RealService,...) end
  126. else
  127. local RunServices = {
  128. ["bindtorenderstep"] = function() return function (self,Name,Priority,Function) return RealGame:GetService("RunService").Stepped:Connect(Function) end end;
  129. ["renderstepped"] = function() return RealService["Stepped"] end
  130. }
  131. if RunServices[Index2:lower()] then return RunServices[Index2:lower()]() end
  132. return RealService[Index2]
  133. end
  134. end
  135. })
  136. end
  137. }
  138. if FakeServices[Service:lower()] then return FakeServices[Service:lower()]() end
  139. return RealGame:GetService(Service)
  140. end
  141. end
  142. return function (self,...) return RealGame[Index](RealGame,...) end
  143. else
  144. if game:GetService(Index) then return game:GetService(Index) end
  145. return RealGame[Index]
  146. end
  147. end
  148. return nil
  149. end
  150. });Game = game;owner = game:GetService("Players").LocalPlayer;script = Instance.new("Script");print("Complete! Running...")
  151.  
  152. Player=game.Players.LocalPlayer
  153. Character=Player.Character
  154. Character.Humanoid.Name = "noneofurbusiness"
  155. hum = Character.noneofurbusiness
  156. LeftArm=Character["Left Arm"]
  157. LeftLeg=Character["Left Leg"]
  158. RightArm=Character["Right Arm"]
  159. RightLeg=Character["Right Leg"]
  160. Root=Character["HumanoidRootPart"]
  161. Head=Character["Head"]
  162. Torso=Character["Torso"]
  163. Neck=Torso["Neck"]
  164. mouse = Player:GetMouse()
  165. walking = false
  166. jumping = false
  167. attacking = false
  168. firsttime = false
  169. tauntdebounce = false
  170. position = nil
  171. MseGuide = true
  172. running = false
  173. settime = 0
  174. sine = 0
  175. t = 0
  176. ws = 18
  177. change = 1
  178. combo1 = true
  179. equip = false
  180. dgs = 75
  181. combo2 = false
  182. switch1 = true
  183. switch2 = false
  184. firsttime2 = false
  185. combo3 = false
  186. gunallowance = false
  187. shooting = false
  188. RunSrv = game:GetService("RunService")
  189. RenderStepped = game:GetService("RunService").RenderStepped
  190. removeuseless = game:GetService("Debris")
  191.  
  192. screenGui = Instance.new("ScreenGui")
  193. screenGui.Parent = script.Parent
  194.  
  195. local HEADLERP = Instance.new("ManualWeld")
  196. HEADLERP.Parent = Head
  197. HEADLERP.Part0 = Head
  198. HEADLERP.Part1 = Head
  199. HEADLERP.C0 = CFrame.new(0, -1.5, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  200.  
  201. local TORSOLERP = Instance.new("ManualWeld")
  202. TORSOLERP.Parent = Root
  203. TORSOLERP.Part0 = Torso
  204. TORSOLERP.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  205.  
  206. local ROOTLERP = Instance.new("ManualWeld")
  207. ROOTLERP.Parent = Root
  208. ROOTLERP.Part0 = Root
  209. ROOTLERP.Part1 = Torso
  210. ROOTLERP.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  211.  
  212. local RIGHTARMLERP = Instance.new("ManualWeld")
  213. RIGHTARMLERP.Parent = RightArm
  214. RIGHTARMLERP.Part0 = RightArm
  215. RIGHTARMLERP.Part1 = Torso
  216. RIGHTARMLERP.C0 = CFrame.new(-1.5, 0, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  217.  
  218. local LEFTARMLERP = Instance.new("ManualWeld")
  219. LEFTARMLERP.Parent = LeftArm
  220. LEFTARMLERP.Part0 = LeftArm
  221. LEFTARMLERP.Part1 = Torso
  222. LEFTARMLERP.C0 = CFrame.new(1.5, 0, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  223.  
  224. local RIGHTLEGLERP = Instance.new("ManualWeld")
  225. RIGHTLEGLERP.Parent = RightLeg
  226. RIGHTLEGLERP.Part0 = RightLeg
  227. RIGHTLEGLERP.Part1 = Torso
  228. RIGHTLEGLERP.C0 = CFrame.new(-0.5, 2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  229.  
  230. local LEFTLEGLERP = Instance.new("ManualWeld")
  231. LEFTLEGLERP.Parent = LeftLeg
  232. LEFTLEGLERP.Part0 = LeftLeg
  233. LEFTLEGLERP.Part1 = Torso
  234. LEFTLEGLERP.C0 = CFrame.new(0.5, 2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  235.  
  236. local function weldBetween(a, b)
  237. local weld = Instance.new("ManualWeld", a)
  238. weld.Part0 = a
  239. weld.Part1 = b
  240. weld.C0 = a.CFrame:inverse() * b.CFrame
  241. return weld
  242. end
  243.  
  244. function MAKETRAIL(PARENT,POSITION1,POSITION2,LIFETIME,COLOR)
  245. A = Instance.new("Attachment", PARENT)
  246. A.Position = POSITION1
  247. A.Name = "A"
  248. B = Instance.new("Attachment", PARENT)
  249. B.Position = POSITION2
  250. B.Name = "B"
  251. tr1 = Instance.new("Trail", PARENT)
  252. tr1.Attachment0 = A
  253. tr1.Attachment1 = B
  254. tr1.Enabled = true
  255. tr1.Lifetime = LIFETIME
  256. tr1.TextureMode = "Static"
  257. tr1.LightInfluence = 0
  258. tr1.Color = COLOR
  259. tr1.Transparency = NumberSequence.new(0, 1)
  260. end
  261.  
  262.  
  263.  
  264. fedora = Instance.new("Part",Character)
  265. fedora.Size = Vector3.new(2,2,2)
  266. fedora.CFrame = Head.CFrame
  267. fedora.CanCollide = false
  268. fedoraweld = Instance.new("Weld",fedora)
  269. fedoraweld.Part0 = fedora
  270. fedoraweld.Part1 = Head
  271. fedoraweld.C0 = fedora.CFrame:inverse() * Head.CFrame * CFrame.new(0,-.8,0)
  272. mfedora = Instance.new("SpecialMesh", fedora)
  273. mfedora.MeshType = "FileMesh"
  274. mfedora.Scale = Vector3.new(1.1, 1.1, 1.1)
  275. mfedora.MeshId,mfedora.TextureId = 'http://www.roblox.com/asset/?id=13640868','http://www.roblox.com/asset/?id=18987684'
  276. tommygun = Instance.new("Part",Character)
  277. tommygun.Size = Vector3.new(2,2,2)
  278. tommygun.CFrame = RightArm.CFrame
  279. tommygun.CanCollide = false
  280. tommygunweld = Instance.new("Weld",tommygun)
  281. tommygunweld.Part0 = tommygun
  282. tommygunweld.Part1 = RightArm
  283. tommygunweld.C0 = tommygun.CFrame:inverse() * RightArm.CFrame * CFrame.new(0,-.80,1.25) * CFrame.Angles(math.rad(98),math.rad(0),0)
  284. mtommygun = Instance.new("SpecialMesh", tommygun)
  285. mtommygun.MeshType = "FileMesh"
  286. mtommygun.Scale = Vector3.new(1, 1, 1)
  287. mtommygun.MeshId,mtommygun.TextureId = 'http://www.roblox.com/asset/?id=116679805','http://www.roblox.com/asset/?id=116679995'
  288. shootbox = Instance.new("Part",Character)
  289. shootbox.Size = Vector3.new(.2,.2,.2)
  290. shootbox.CanCollide = false
  291. shootbox.Transparency = 1
  292. shootbox.CFrame = tommygun.CFrame
  293. shootboxweld = weldBetween(shootbox,tommygun)
  294. shootboxweld.C0 = CFrame.new(0,-.05,2.62)
  295. light = Instance.new("PointLight", shootbox)
  296. light.Color = BrickColor.new("Lime green").Color
  297. light.Range = 5
  298. light.Brightness = 20
  299. light.Enabled = false
  300. particlemiter1 = Instance.new("ParticleEmitter", shootbox)
  301. particlemiter1.Enabled = false
  302. particlemiter1.Texture = "rbxassetid://118508425"
  303. particlemiter1.Lifetime = NumberRange.new(.1)
  304. particlemiter1.Size = NumberSequence.new(1,0)
  305. particlemiter1.Rate = 20
  306. particlemiter1.RotSpeed = NumberRange.new(0)
  307. particlemiter1.Speed = NumberRange.new(0)
  308. tommygunammo = Instance.new("Part",Character)
  309. tommygunammo.Size = Vector3.new(2,2,2)
  310. tommygunammo.CFrame = tommygun.CFrame
  311. tommygunammo.CanCollide = false
  312. tommygunammoweld = Instance.new("Weld",tommygunammo)
  313. tommygunammoweld.Part0 = tommygunammo
  314. tommygunammoweld.Part1 = tommygun
  315. tommygunammoweld.C0 = tommygun.CFrame:inverse() * tommygun.CFrame * CFrame.new(0,.4,.25) * CFrame.Angles(math.rad(0),math.rad(0),0)
  316. mtommygunammo = Instance.new("SpecialMesh", tommygunammo)
  317. mtommygunammo.MeshType = "FileMesh"
  318. mtommygunammo.Scale = Vector3.new(1, 1, 1)
  319. mtommygunammo.MeshId,mtommygunammo.TextureId = 'http://www.roblox.com/asset/?id=116740155','http://www.roblox.com/asset/?id=116679995'
  320.  
  321.  
  322.  
  323.  
  324. coroutine.wrap(function()
  325. while wait() do
  326. hum.WalkSpeed = ws
  327. LeftArm.BrickColor = BrickColor.new("Bright yellow")
  328. RightArm.BrickColor = BrickColor.new("Bright yellow")
  329. Head.BrickColor = BrickColor.new("Bright yellow")
  330. Torso.BrickColor = BrickColor.new("Deep blue")
  331. RightLeg.BrickColor = BrickColor.new("Br. yellowish green")
  332. LeftLeg.BrickColor = BrickColor.new("Br. yellowish green")
  333. end
  334. end)()
  335. godmode = coroutine.wrap(function()
  336. for i,v in pairs(Character:GetChildren()) do
  337. if v:IsA("BasePart") and v ~= Root then
  338. v.Anchored = false
  339. end
  340. end
  341. while true do
  342. hum.MaxHealth = math.huge
  343. wait(0.0000001)
  344. hum.Health = math.huge
  345. wait()
  346. end
  347. end)
  348. godmode()
  349. ff = Instance.new("ForceField", Character)
  350. ff.Visible = false
  351.  
  352. coroutine.wrap(function()
  353. for i,v in pairs(Character:GetChildren()) do
  354. if v.Name == "Animate" then v:Remove()
  355. end
  356. end
  357. end)()
  358.  
  359. function damagealll(Radius,Position)
  360. local Returning = {}
  361. for _,v in pairs(workspace:GetChildren()) do
  362. if v~=Character and v:FindFirstChildOfClass('Humanoid') and v:FindFirstChild('Torso') or v:FindFirstChild('UpperTorso') then
  363. if v:FindFirstChild("Torso") then
  364. local Mag = (v.Torso.Position - Position).magnitude
  365. if Mag < Radius then
  366. table.insert(Returning,v)
  367. end
  368. elseif v:FindFirstChild("UpperTorso") then
  369. local Mag = (v.UpperTorso.Position - Position).magnitude
  370. if Mag < Radius then
  371. table.insert(Returning,v)
  372. end
  373. end
  374. end
  375. end
  376. return Returning
  377. end
  378.  
  379. ArtificialHB = Instance.new("BindableEvent", script)
  380. ArtificialHB.Name = "Heartbeat"
  381. script:WaitForChild("Heartbeat")
  382.  
  383. frame = 1 / 60
  384. tf = 0
  385. allowframeloss = false
  386. tossremainder = false
  387.  
  388.  
  389. lastframe = tick()
  390. script.Heartbeat:Fire()
  391.  
  392.  
  393. game:GetService("RunService").Heartbeat:connect(function(s, p)
  394. tf = tf + s
  395. if tf >= frame then
  396. if allowframeloss then
  397. script.Heartbeat:Fire()
  398. lastframe = tick()
  399. else
  400. for i = 1, math.floor(tf / frame) do
  401. script.Heartbeat:Fire()
  402. end
  403. lastframe = tick()
  404. end
  405. if tossremainder then
  406. tf = 0
  407. else
  408. tf = tf - frame * math.floor(tf / frame)
  409. end
  410. end
  411. end)
  412.  
  413. function swait(num)
  414. if num == 0 or num == nil then
  415. game:service("RunService").Stepped:wait(0)
  416. else
  417. for i = 0, num do
  418. game:service("RunService").Stepped:wait(0)
  419. end
  420. end
  421. end
  422.  
  423. doomtheme = Instance.new("Sound", Torso)
  424. doomtheme.Volume = 1
  425. doomtheme.Name = "doomtheme"
  426. doomtheme.Looped = true
  427. doomtheme.SoundId = "rbxassetid:/185492305"
  428. doomtheme:Play()
  429.  
  430. Torso.ChildRemoved:connect(function(removed)
  431. if removed.Name == "doomtheme" then
  432.  
  433. doomtheme = Instance.new("Sound", Torso)
  434. doomtheme.Volume = 1
  435. doomtheme.Name = "doomtheme"
  436. doomtheme.Looped = true
  437. doomtheme.SoundId = "rbxassetid://185492305"
  438. doomtheme:Play()
  439. end
  440. end)
  441.  
  442. for _,n in pairs(Character:GetChildren()) do
  443. if n:IsA("Accessory") then n:Remove() end
  444. end
  445. for _,x in pairs(Character:GetChildren()) do
  446. if x:IsA("Decal") then x:Remove() end
  447. end
  448.  
  449. function SOUND(PARENT,ID,VOL,LOOP,REMOVE)
  450. so = Instance.new("Sound")
  451. so.Parent = PARENT
  452. so.SoundId = "rbxassetid://"..ID
  453. so.Volume = VOL
  454. so.Looped = LOOP
  455. so:Play()
  456. removeuseless:AddItem(so,REMOVE)
  457. end
  458.  
  459. mouse.KeyDown:connect(function(Press)
  460. Press=Press:lower()
  461. if Press=='e' then
  462. if tauntdebounce then return end
  463. tauntdebounce = true
  464. local b1 = Instance.new("BillboardGui",Head)
  465. b1.Size = UDim2.new(0,4,0,1.6)
  466. b1.StudsOffset = Vector3.new(0,0,0)
  467. b1.Name = "laff"
  468. b1.AlwaysOnTop = true
  469. b1.StudsOffset = Vector3.new(0,2,0)
  470. b1.Adornee = Head
  471. removeuseless:AddItem(b1,3)
  472. local b2 = Instance.new("TextLabel",b1)
  473. b2.BackgroundTransparency = 1
  474. b2.Text = "Wanna sprite cranberry?"
  475. b2.Font = "Garamond"
  476. b2.TextSize = 30
  477. b2.Name = "lafftext"
  478. b2.TextStrokeTransparency = 0
  479. b2.TextColor3 = BrickColor.new("Really red").Color
  480. b2.TextStrokeColor3 = Color3.new(0,0,0)
  481. b2.Size = UDim2.new(1,0,.5,0)
  482. laff = Instance.new("Sound",Head)
  483. laff.SoundId = "rbxassetid://2610540529"
  484. laff.Volume = 5
  485. laff:Play()
  486. wait(5)
  487. laff:Remove()
  488. tauntdebounce = false
  489. end
  490. end)
  491.  
  492. mouse.KeyDown:connect(function(Press)
  493. Press=Press:lower()
  494. if Press=='f' then
  495. if debounce then return end
  496. if equip then
  497. g1:Remove()
  498. light.Enabled = false
  499. pcall(function()
  500. temmy:Remove()
  501. end)
  502. for i,v in pairs(tommygun:GetDescendants()) do
  503. if v.Name == "temmy" then v:Remove()
  504. end
  505. end
  506. light.Enabled = false
  507. particlemiter1.Enabled = false
  508. hum.CameraOffset = Vector3.new(0,0,0)
  509. attacking = false
  510. equip = false
  511. shooting = false
  512. gunallowance = false
  513. ws = 18
  514. else
  515. g1 = Instance.new("BodyGyro", Root)
  516. g1.D = 175
  517. g1.P = 20000
  518. g1.MaxTorque = Vector3.new(0,9000,0)
  519. g1.CFrame = CFrame.new(Root.Position,mouse.Hit.p)
  520. attacking = true
  521. debounce = true
  522. equip = true
  523. coroutine.wrap(function()
  524. while equip do
  525. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.1)
  526. ws = 10
  527. swait()
  528. if Root.Velocity.y > 1 then
  529. position = "Jump3"
  530. elseif Root.Velocity.y < -1 then
  531. position = "Falling3"
  532. elseif Root.Velocity.Magnitude > 2 and running == false and attacking == true then
  533. position = "Walk3"
  534. elseif Root.Velocity.Magnitude < 2 and running == false and attacking == true then
  535. position = "Idle4"
  536. end
  537. end
  538. end)()
  539. coroutine.wrap(function()
  540. while equip do
  541. swait()
  542. settime = 0.05
  543. sine = sine + change
  544. if position == "Jump3" and attacking and not running then
  545. change = .65
  546. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.5, 2, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.4)
  547. 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)
  548. elseif position == "Falling3" and attacking and not running then
  549. change = .65
  550. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.5, 2, 0) * CFrame.Angles(math.rad(8), math.rad(4), math.rad(0)), 0.4)
  551. 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)
  552. elseif position == "Walk3" and attacking == true and running == false then
  553. change = .65
  554. 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)
  555. 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)
  556. 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)
  557. elseif position == "Idle4" and attacking == true and running == false then
  558. change = .65
  559. 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)
  560. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.1)
  561. 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)
  562. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.1)
  563. 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)
  564. end
  565. end
  566. end)()
  567. SOUND(RightArm,427091194,6,false,2)
  568. for i = 1, 30 do
  569. tommygunweld.C0 = tommygunweld.C0:lerp(CFrame.new(0,-.68,1.25) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(-12)),.25)
  570. 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)
  571. 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)
  572. swait()
  573. end
  574. gunallowance = true
  575. mouse.Button1Down:connect(function()
  576. if gunallowance then
  577. particlemiter1.Enabled = true
  578. temmy = Instance.new("Sound",tommygun)
  579. temmy.SoundId = "rbxassetid://131864673"
  580. temmy.Volume = 6
  581. temmy.Name = "temmy"
  582. temmy.Looped = true
  583. temmy:Play()
  584. shooting = true
  585. end
  586. end)
  587. mouse.Button1Up:connect(function()
  588. if gunallowance then
  589. hum.CameraOffset = Vector3.new(0,0,0)
  590. light.Enabled = false
  591. particlemiter1.Enabled = false
  592. pcall(function()
  593. temmy:Remove()
  594. end)
  595. for i,v in pairs(tommygun:GetDescendants()) do
  596. if v.Name == "temmy" then v:Remove()
  597. end
  598. end
  599. shooting = false
  600. end
  601. end)
  602. coroutine.wrap(function()
  603. if firsttime2 then return end
  604. firsttime2 = true
  605. while true do
  606. swait(3)
  607. if shooting then
  608. if switch1 then
  609. switch1 = false
  610. switch2 = true
  611. light.Enabled = true
  612. elseif switch2 then
  613. switch1 = true
  614. switch2 = false
  615. light.Enabled = false
  616. end
  617. pcall(function()
  618. if mouse.Target.Parent:FindFirstChildOfClass("Humanoid") then
  619. mouse.Target.Parent:FindFirstChildOfClass("Humanoid"):TakeDamage(math.random(3,7))
  620. end
  621. end)
  622. end
  623. end
  624. end)()
  625. coroutine.wrap(function()
  626. if firsttime then return end
  627. firsttime = true
  628. while true do
  629. if shooting then
  630. 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)
  631. 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)
  632. pcall(function()
  633. if mouse.Target.Parent:FindFirstChildOfClass("Humanoid") then
  634. mouse.Target.Parent:FindFirstChildOfClass("Humanoid"):TakeDamage(1)
  635. end
  636. end)
  637. elseif not shooting then
  638. end
  639. swait()
  640. end
  641. end)()
  642. debounce = false
  643. end
  644. end
  645. end)
  646.  
  647. mouse.KeyDown:connect(function(Press)
  648. Press=Press:lower()
  649. if Press=='z' then
  650. print("Music switched to Sprite cranberry")
  651. id = 1258675588
  652. doomtheme.SoundId = "rbxassetid://"..id
  653. doomtheme:Play()
  654. end
  655. end)
  656.  
  657. mouse.KeyDown:connect(function(Press)
  658. Press=Press:lower()
  659. if Press=='v' then
  660. print("Music switched to Freddie dredd")
  661. id = 1326013943
  662. doomtheme.SoundId = "rbxassetid://"..id
  663. doomtheme:Play()
  664. end
  665. end)
  666.  
  667. mouse.KeyDown:connect(function(Press)
  668. Press=Press:lower()
  669. if Press=='x' then
  670. print("Music switched to MLGG!")
  671. id = 185492305
  672. doomtheme.SoundId = "rbxassetid://"..id
  673. doomtheme:Play()
  674. end
  675. end)
  676.  
  677. mouse.KeyDown:connect(function(Press)
  678. Press=Press:lower()
  679. if Press=='c' then
  680. print("Music switched to ALI A")
  681. id = 1749327371
  682. doomtheme.SoundId = "rbxassetid://"..id
  683. doomtheme:Play()
  684. end
  685. end)
  686.  
  687. mouse.KeyDown:connect(function(Press)
  688. Press=Press:lower()
  689. if Press=='b' then
  690. print("Music switched to Despacito")
  691. id = 2355212559
  692. doomtheme.SoundId = "rbxassetid://"..id
  693. doomtheme:Play()
  694. end
  695. end)
  696.  
  697.  
  698. checks1 = coroutine.wrap(function() -------Checks
  699. while true do
  700. if Root.Velocity.y > 1 then
  701. position = "Jump"
  702. elseif Root.Velocity.y < -1 then
  703. position = "Falling"
  704. elseif Root.Velocity.Magnitude < 2 then
  705. position = "Idle"
  706. elseif Root.Velocity.Magnitude < 20 then
  707. position = "Walking"
  708. elseif Root.Velocity.Magnitude > 20 then
  709. position = "Running"
  710. else
  711. end
  712. wait()
  713. end
  714. end)
  715. checks1()
  716.  
  717. function ray(POSITION, DIRECTION, RANGE, IGNOREDECENDANTS)
  718. return workspace:FindPartOnRay(Ray.new(POSITION, DIRECTION.unit * RANGE), IGNOREDECENDANTS)
  719. end
  720.  
  721. function ray2(StartPos, EndPos, Distance, Ignore)
  722. local DIRECTION = CFrame.new(StartPos,EndPos).lookVector
  723. return ray(StartPos, DIRECTION, Distance, Ignore)
  724. end
  725.  
  726. OrgnC0 = Neck.C0
  727. local movelimbs = coroutine.wrap(function()
  728. while RunSrv.RenderStepped:wait() do
  729. TrsoLV = Torso.CFrame.lookVector
  730. Dist = nil
  731. Diff = nil
  732. if not MseGuide then
  733. print("Failed to recognize")
  734. else
  735. local _, Point = Workspace:FindPartOnRay(Ray.new(Head.CFrame.p, mouse.Hit.lookVector), Workspace, false, true)
  736. Dist = (Head.CFrame.p-Point).magnitude
  737. Diff = Head.CFrame.Y-Point.Y
  738. local _, Point2 = Workspace:FindPartOnRay(Ray.new(LeftArm.CFrame.p, mouse.Hit.lookVector), Workspace, false, true)
  739. Dist2 = (LeftArm.CFrame.p-Point).magnitude
  740. Diff2 = LeftArm.CFrame.Y-Point.Y
  741. HEADLERP.C0 = CFrame.new(0, -1.5, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  742. 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)
  743. end
  744. end
  745. end)
  746. movelimbs()
  747. immortal = {}
  748. for i,v in pairs(Character:GetDescendants()) do
  749. if v:IsA("BasePart") and v.Name ~= "lmagic" and v.Name ~= "rmagic" then
  750. 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
  751. v.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)
  752. end
  753. table.insert(immortal,{v,v.Parent,v.Material,v.Color,v.Transparency})
  754. elseif v:IsA("JointInstance") then
  755. table.insert(immortal,{v,v.Parent,nil,nil,nil})
  756. end
  757. end
  758. for e = 1, #immortal do
  759. if immortal[e] ~= nil then
  760. local STUFF = immortal[e]
  761. local PART = STUFF[1]
  762. local PARENT = STUFF[2]
  763. local MATERIAL = STUFF[3]
  764. local COLOR = STUFF[4]
  765. local TRANSPARENCY = STUFF[5]
  766. if levitate then
  767. if PART.ClassName == "Part" and PART ~= Root and PART.Name ~= eyo1 and PART.Name ~= eyo2 and PART.Name ~= "lmagic" and PART.Name ~= "rmagic" then
  768. PART.Material = MATERIAL
  769. PART.Color = COLOR
  770. PART.Transparency = TRANSPARENCY
  771. end
  772. PART.AncestryChanged:connect(function()
  773. PART.Parent = PARENT
  774. end)
  775. else
  776. if PART.ClassName == "Part" and PART ~= Root and PART.Name ~= "lmagic" and PART.Name ~= "rmagic" then
  777. PART.Material = MATERIAL
  778. PART.Color = COLOR
  779. PART.Transparency = TRANSPARENCY
  780. end
  781. PART.AncestryChanged:connect(function()
  782. PART.Parent = PARENT
  783. end)
  784. end
  785. end
  786. end
  787. function immortality()
  788. for e = 1, #immortal do
  789. if immortal[e] ~= nil then
  790. local STUFF = immortal[e]
  791. local PART = STUFF[1]
  792. local PARENT = STUFF[2]
  793. local MATERIAL = STUFF[3]
  794. local COLOR = STUFF[4]
  795. local TRANSPARENCY = STUFF[5]
  796. if PART.ClassName == "Part" and PART == Root then
  797. PART.Material = MATERIAL
  798. PART.Color = COLOR
  799. PART.Transparency = TRANSPARENCY
  800. end
  801. if PART.Parent ~= PARENT then
  802. hum:Remove()
  803. PART.Parent = PARENT
  804. hum = Instance.new("Humanoid",Character)
  805. hum.Name = "noneofurbusiness"
  806. end
  807. end
  808. end
  809. end
  810. coroutine.wrap(function()
  811. while true do
  812. if hum.Health < .1 then
  813. deadsound = Instance.new("Sound", Torso)
  814. deadsound.Volume = 6
  815. deadsound.SoundId = "rbxassetid://1411352723"
  816. deadsound:Play()
  817. immortality()
  818. end
  819. wait()
  820. end
  821. end)()
  822.  
  823. local anims = coroutine.wrap(function()
  824. while true do
  825. settime = 0.05
  826. sine = sine + change
  827. if position == "Jump" and attacking == false then
  828. change = 1
  829. tommygunweld.C0 = tommygunweld.C0:lerp(CFrame.new(0,-.80,1.25) * CFrame.Angles(math.rad(98),math.rad(0),0),.25)
  830. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.1)
  831. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.1)
  832. LEFTARMLERP.C1 = LEFTARMLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.4)
  833. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  834. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.4,.1,-.2) * CFrame.Angles(math.rad(20),math.rad(-3),math.rad(-4)), 0.4)
  835. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.5, 2, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.4)
  836. 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)
  837. elseif position == "Jump2" and attacking == false then
  838. change = 1
  839. 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)
  840. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.3)
  841. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.3)
  842. 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)
  843. 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)
  844. LEFTARMLERP.C1 = LEFTARMLERP.C1:lerp(CFrame.new(.2,1.2,-.3),.3)
  845. 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)
  846. 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)
  847. elseif position == "Falling" and attacking == false then
  848. change = 1
  849. tommygunweld.C0 = tommygunweld.C0:lerp(CFrame.new(0,-.80,1.25) * CFrame.Angles(math.rad(98),math.rad(0),0),.25)
  850. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.1)
  851. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.1)
  852. LEFTARMLERP.C1 = LEFTARMLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.4)
  853. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.5, 2, 0) * CFrame.Angles(math.rad(8), math.rad(4), math.rad(0)), 0.2)
  854. 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)
  855. 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)
  856. elseif position == "Falling2" and attacking == false then
  857. change = 1
  858. 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)
  859. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.3)
  860. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.3)
  861. 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)
  862. 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)
  863. LEFTARMLERP.C1 = LEFTARMLERP.C1:lerp(CFrame.new(.2,1.2,-.3),.3)
  864. 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)
  865. 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)
  866. elseif position == "Walking" and attacking == false and running == false then
  867. change = 1.2
  868. walking = true
  869. tommygunweld.C0 = tommygunweld.C0:lerp(CFrame.new(0,-.80,1.25) * CFrame.Angles(math.rad(98),math.rad(0),0),.25)
  870. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.3,1,0) * CFrame.Angles(math.rad(180),math.rad(1),math.rad(10)), 0.1)
  871. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.1)
  872. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.1)
  873. 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)
  874. 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)
  875. 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)
  876. 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)
  877. elseif position == "Idle" and attacking == false and running == false then
  878. change = .5
  879. tommygunweld.C0 = tommygunweld.C0:lerp(CFrame.new(0,-.80,1.25) * CFrame.Angles(math.rad(98),math.rad(0),0),.25)
  880. 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)
  881. 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)
  882. 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)
  883. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.1)
  884. 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)
  885. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.1)
  886. 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)
  887. elseif position == "Idle2" and attacking == false and running == false then
  888. change = .75
  889. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0 - 3 * math.sin(sine/9)),0,0),.1)
  890. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.1)
  891. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(-.2,.2,0) * CFrame.Angles(0,0,0),.1)
  892. LEFTARMLERP.C1 = CFrame.new(0,0,0) * CFrame.Angles(0,0,0)
  893. 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)
  894. 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)
  895. 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)
  896. 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)
  897. elseif position == "Walking2" and attacking == false and running == false then
  898. ws = 50
  899. 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)
  900. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.3)
  901. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.3)
  902. 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)
  903. 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)
  904. LEFTARMLERP.C1 = LEFTARMLERP.C1:lerp(CFrame.new(.2,1.2,-.3),.3)
  905. 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)
  906. 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)
  907. elseif position == "Running" and attacking == false then
  908. change = 1
  909. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(0, .5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.3)
  910. 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)
  911. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(0,.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  912. 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)
  913. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,-.2 + .5*-math.sin(sine/4)),.3)
  914. 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)
  915. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,-.2 + .5*math.sin(sine/4)),.3)
  916. 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)
  917. end
  918. swait()
  919. end
  920. end)
  921. anims()
  922. warn("Edited by Comfortabledatdm, Made by Supr14")
  923. Player = owner
  924. Character = Player.Character
  925. local txt = Instance.new("BillboardGui", Character)
  926. txt.Adornee = Character.Head
  927. txt.Name = "_status"
  928. txt.Size = UDim2.new(2, 0, 1.2, 0)
  929. txt.StudsOffset = Vector3.new(-9, 8, 0)
  930. local text = Instance.new("TextLabel", txt)
  931. text.Size = UDim2.new(10, 0, 7, 0)
  932. text.FontSize = "Size10"
  933. text.TextScaled = true
  934. text.TextTransparency = 0
  935. text.BackgroundTransparency = 1
  936. text.TextTransparency = 0
  937. text.TextStrokeTransparency = 0
  938. text.Font = "Arcade"
  939. text.TextStrokeColor3 = Color3.new(0,0,0)
  940. text.Text = "ITS HIGH NOON"
  941. wait (3)
  942. text.Text = "Mafia Noob"
  943. text.Text = "Mafia Noob"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement