Advertisement
samuelrichter66

alberto

May 28th, 2019
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 34.76 KB | None | 0 0
  1. --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 V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152.  
  153.  
  154.  
  155.  
  156. wait(1)
  157. local plr = game.Players.LocalPlayer
  158. local char = plr.Character
  159. hum=char.Humanoid
  160. for i,v in pairs (char:GetChildren()) do
  161. if v.Name~="Humanoid" and v.ClassName~="Part" then
  162. v:Destroy()
  163. end
  164. end
  165.  
  166. for i,v in pairs (char:WaitForChild("Head"):GetChildren()) do
  167. if v.ClassName=="Sound" then
  168. v:Destroy()
  169. end
  170. end
  171. spawn(function()
  172. while wait() do
  173. char:WaitForChild("Right Arm").BrickColor=BrickColor.new("Cool yellow")
  174. char:WaitForChild("Left Arm").BrickColor=BrickColor.new("Cool yellow")
  175. char:WaitForChild("Head").BrickColor=BrickColor.new("Cool yellow")
  176. char:WaitForChild("Right Leg").BrickColor=BrickColor.new("Medium blue")
  177. char:WaitForChild("Left Leg").BrickColor=BrickColor.new("Medium blue")
  178. char:WaitForChild("Torso").BrickColor=BrickColor.new("Bright yellow")
  179. end
  180. end)
  181. ac = Instance.new("Accessory",workspace)
  182. ac.AttachmentPos=Vector3.new(0, -0.1, 0.2)
  183. o2 = Instance.new("Part")
  184. o3 = Instance.new("SpecialMesh")
  185. o4 = Instance.new("Vector3Value")
  186. o2.Name = "Handle"
  187. o2.Parent = ac
  188. o2.Position = char.Torso.Position
  189. spawn(function()
  190. repeat
  191. if ac.Parent~=char then
  192. o2.Position = char.Torso.Position
  193. else
  194. break
  195. end
  196. wait()
  197. until ac.Parent==char
  198. end)
  199. o2.Rotation = Vector3.new(0, -0.75999999, 0)
  200. o2.CanCollide = false
  201. o2.Locked = true
  202. o2.FormFactor = Enum.FormFactor.Custom
  203. o2.Size = Vector3.new(1.60000014, 0.800000012, 1.60000014)
  204. o2.CFrame = CFrame.new(0.128948003, 5.08735895, -0.544525981, 0.999912918, 1.17847014e-26, -0.0131900534, -4.89980362e-24, 1, -3.70551116e-22, 0.013190059, 3.70583553e-22, 0.999912918)
  205. o2.BottomSurface = Enum.SurfaceType.Smooth
  206. o2.TopSurface = Enum.SurfaceType.Smooth
  207. o2.Position = Vector3.new(0.128948003, 5.08735895, -0.544525981)
  208. o3.Parent = o2
  209. o3.MeshId = "http://www.roblox.com/asset/?id=120626701"
  210. o3.Scale = Vector3.new(0.899999976, 0.819999993, 0.819999993)
  211. o3.TextureId = "http://www.roblox.com/asset/?id=120626735"
  212. o3.MeshType = Enum.MeshType.FileMesh
  213. o4.Name = "OriginalSize"
  214. o4.Parent = o2
  215. o4.Value = Vector3.new(1.60000014, 0.800000012, 1.60000014)
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223.  
  224.  
  225.  
  226.  
  227.  
  228.  
  229.  
  230.  
  231.  
  232.  
  233. local mouse = plr:GetMouse()
  234. local torso = char.Torso
  235. local RightArm1 = torso["Right Shoulder"]
  236. local LeftArm1 = torso["Left Shoulder"]
  237. local RightLeg1 = torso["Right Hip"]
  238. local LeftLeg1 = torso["Left Hip"]
  239. local Torso1 = char.HumanoidRootPart.RootJoint
  240. local Head1 = torso.Neck
  241.  
  242. local RightArm = torso["Right Shoulder"]:Clone()
  243. local LeftArm = torso["Left Shoulder"]:Clone()
  244. local RightLeg = torso["Right Hip"]:Clone()
  245. local LeftLeg = torso["Left Hip"]:Clone()
  246. local Torso = char.HumanoidRootPart.RootJoint:Clone()
  247. local Head = torso.Neck:Clone()
  248.  
  249. RightArm1:Destroy()
  250. LeftArm1:Destroy()
  251. RightLeg1:Destroy()
  252. LeftLeg1:Destroy()
  253. Torso1:Destroy()
  254. Head1:Destroy()
  255.  
  256. RightArm.Parent=torso
  257. LeftArm.Parent=torso
  258. RightLeg.Parent=torso
  259. LeftLeg.Parent=torso
  260. Head.Parent=torso
  261. Torso.Parent=char.HumanoidRootPart
  262.  
  263.  
  264.  
  265.  
  266. local animpose = "Idle"
  267. cananim = true
  268. num=0
  269.  
  270. local attacking = false
  271. if char:FindFirstChildOfClass("Humanoid"):FindFirstChild("Animator") then char:FindFirstChildOfClass("Humanoid").Animator:Destroy() end
  272. if char:FindFirstChild("Animate") then char.Animate:Destroy() end
  273.  
  274.  
  275.  
  276.  
  277.  
  278. spawn(function()
  279. while wait() do
  280. if torso then
  281. local velocity=torso.Velocity
  282. if hum==nil then
  283. return
  284. end
  285. if hum.MoveDirection==Vector3.new(0,0,0) then
  286. animpose="Idle"
  287. else
  288. animpose="Running"
  289. end
  290. if velocity.Y>0.5 then
  291. animpose="Jumping"
  292. end
  293. if velocity.Y<-0.5 then
  294. animpose="Falling"
  295. end
  296. end
  297. end
  298. end)
  299.  
  300.  
  301. function sound(id,loop,tim,endtim,eff)
  302. local s=Instance.new("Sound",char.Torso)
  303. s.SoundId=id
  304. if loop==true then
  305. s.Looped=true
  306. s.Name="Music"
  307. else
  308. s.Volume=2
  309. if id~="rbxassetid://245537790" and id~='rbxassetid://1179921724' and id~='rbxassetid://1251737869' then
  310. s.PlaybackSpeed = 1+math.random(-100,100)/1000
  311. end
  312. end
  313. if tim then
  314. s.TimePosition=tim
  315. end
  316. spawn(function()
  317. if endtim then
  318. repeat wait() until s.TimePosition==endtim or s.TimePosition>=endtim
  319. s:Stop()
  320. end
  321. end)
  322. if eff=="echo" then
  323. spawn(function()
  324. wait(1)
  325. local echo=Instance.new("EchoSoundEffect",s)
  326. echo.Delay=0.05
  327. echo.WetLevel=11
  328. echo.DryLevel=-1
  329. end)
  330. end
  331. if eff=="quiet" then
  332. s.Volume=0.3
  333. end
  334. s:Play()
  335. end
  336. --SCREEEEM
  337. function lazor()
  338. sound("rbxassetid://1251737869",false,5.3,7.7,'echo')
  339. cananim=false
  340. for i=1,30 do
  341. wait(1/60)
  342. Torso.C1 = Torso.C1:lerp(CFrame.new(0, 0, 0, -0.934085608, 0.339979589, -0.10907802, -0.102499805, 0.0373069048, 0.994033217, 0.342020363, 0.939692557, 0),0.2)
  343. LeftLeg.C1 = LeftLeg.C1:lerp(CFrame.new(-0.50000006, 0.365961194, 0.435137242, -0.173563123, -0.0313025787, -0.984325111, -0.00543563766, 0.999509931, -0.0308270231, 0.98480773, 0, -0.173648223),0.2)
  344. RightLeg.C1 = RightLeg.C1:lerp(CFrame.new(0.5, 1, -7.4505806e-09, 0.0094302753, 0.0843551308, 0.996391118, 0.110700019, 0.990222573, -0.0848806128, -0.993809104, 0.111100972, -4.34407745e-08),0.2)
  345. LeftArm.C1 = LeftArm.C1:lerp(CFrame.new(0.499999881, 0.49999997, 0, 0.686760783, 0.0407644771, -0.725739539, 0.724464417, 0.0430024639, 0.687969565, 0.0592533089, -0.998242974, -2.59004374e-09),0.2)
  346. RightArm.C1 = RightArm.C1:lerp(CFrame.new(-0.5, -0.0484665036, 2.98023224e-08, -0.31701979, -0.00180978479, 0.948417187, -0.948401749, -0.00541418325, -0.317024946, 0.00570865162, -0.999983728, 2.49531951e-10),0.2)
  347. Head.C1 = Head.C1:lerp(CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0),0.2)
  348. end
  349.  
  350. local keeprunning=true
  351. spawn(function()
  352. while wait() do
  353. local ray = Ray.new(char['Right Arm'].CFrame.p,(mouse.Hit.p-char['Right Arm'].CFrame.p).unit*300)
  354. local part,position = workspace:FindPartOnRay(ray,char, false, true)
  355. local distance = (char['Right Arm'].CFrame.p - position).magnitude
  356. if keeprunning==false then
  357. break
  358. end
  359. if part then
  360. if part.Parent:FindFirstChild("Humanoid") then
  361. part:BreakJoints()
  362. part.Anchored=false
  363.  
  364. end
  365. end
  366.  
  367. local ex=Instance.new("Explosion",workspace)
  368. ex.Position=position
  369. ex.Visible=false
  370. ex.DestroyJointRadiusPercent=0
  371. ex.BlastPressure=100001
  372. ex.BlastRadius=1
  373.  
  374. local ex=Instance.new("Explosion",workspace)
  375. ex.Position=position
  376. ex.Visible=false
  377. ex.DestroyJointRadiusPercent=0
  378. ex.BlastPressure=100
  379. ex.BlastRadius=30
  380.  
  381. Torso.C1 = Torso.C1:lerp(CFrame.new(0.45384407, 3.25962901e-09, -0.163368881, -0.840329647, -0.538628399, 0.061037913, 0.12248569, -0.0789824352, 0.989322543, -0.528056264, 0.838833332, 0.132345542),0.2)
  382. LeftLeg.C1 = LeftLeg.C1:lerp(CFrame.new(-0.486327916, 0.918347716, -0.0835282654, -0.139580116, -0.193979532, -0.971024871, -0.210418463, 0.96403873, -0.162337258, 0.967595696, 0.18166253, -0.175377563),0.2)
  383. RightLeg.C1 = RightLeg.C1:lerp(CFrame.new(0.504761815, 1.01941562, -0.072208859, -0.0534072705, 0.0794541091, 0.995406747, -0.0726492628, 0.993878722, -0.083230041, -0.995926619, -0.0767606497, -0.0473080687),0.2)
  384. LeftArm.C1 = LeftArm.C1:lerp(CFrame.new(0.5, 0.49999994, -5.96046448e-08, -0.0783533007, -0.155531406, -0.984718561, -0.400697172, 0.909370303, -0.111747369, 0.912854075, 0.385818183, -0.1335731),0.2)
  385. RightArm.C1 = RightArm.C1:lerp(CFrame.new(-0.267708331, 0.709498703, -0.021721065, -0.500156283, -0.117081404, 0.85798347, -0.864884198, 0.0187412351, -0.501621544, 0.0426508784, -0.992945492, -0.110635392),0.2)
  386. Head.C1 = Head.C1:lerp(CFrame.new(0, -0.5, 0, -0.951892793, 0.28452459, 0.113780133, 0, -0.371307135, 0.928510129, 0.306431323, 0.883842111, 0.353444576),0.2)
  387.  
  388. local beam = Instance.new("Part", char)
  389. beam.BrickColor = BrickColor.new("Institutional white")
  390. beam.FormFactor = "Custom"
  391. beam.Material = "Neon"
  392. beam.Transparency = 0.5
  393. beam.Anchored = true
  394. beam.Locked = true
  395. beam.CanCollide = false
  396. beam.Size = Vector3.new(0.3, 0.3, distance)
  397. beam.CFrame = CFrame.new((char['Right Arm'].CFrame*CFrame.new(0,-3,0)).p, mouse.Hit.p) * CFrame.new(0, 0, -distance/2)
  398. spawn(function()
  399. for i=1,10 do
  400. beam.Transparency=i/10
  401. wait()
  402. end
  403. beam:Destroy()
  404. end)
  405. spawn(function()
  406. for i=1,20 do
  407. beam.Size=Vector3.new(i,i,beam.Size.Z)
  408. wait()
  409. end
  410. end)
  411. end
  412. end)
  413. for i=1,10 do
  414. sound("rbxassetid://245537790",false)
  415. end
  416. wait(3)
  417. keeprunning=false
  418. cananim=true
  419. end
  420. dodamage=false
  421. deb=false
  422. hum.Touched:connect(function(part)
  423. local ded=part.Parent:FindFirstChildOfClass("Humanoid")
  424. if deb==true then
  425. return
  426. end
  427. deb=true
  428. if ded then
  429. if dodamage == true then
  430. ded.Health=ded.Health-(math.random(5,10))
  431. sound("rbxassetid://386946017",false,0,0.36,'quiet')
  432. if supermode==true then
  433. local ex=Instance.new("Explosion",workspace)
  434. if math.random(1,3) ==1 then
  435. ex.Visible=false
  436. end
  437. ex.DestroyJointRadiusPercent=0
  438. ex.Position=part.Position
  439. ex.BlastPressure=1000
  440. part:BreakJoints()
  441. part.Anchored=false
  442. end
  443. end
  444. end
  445. wait(0.1)
  446. deb=false
  447. end)
  448. function SUPERlazor()
  449. sound("rbxassetid://1179921724",false,'echo')
  450.  
  451. wait(2)
  452. cananim=false
  453. for i=1,30 do
  454. wait(1/60)
  455. Torso.C1 = Torso.C1:lerp(CFrame.new(0, 0, 0, -0.934085608, 0.339979589, -0.10907802, -0.102499805, 0.0373069048, 0.994033217, 0.342020363, 0.939692557, 0),0.2)
  456. LeftLeg.C1 = LeftLeg.C1:lerp(CFrame.new(-0.50000006, 0.365961194, 0.435137242, -0.173563123, -0.0313025787, -0.984325111, -0.00543563766, 0.999509931, -0.0308270231, 0.98480773, 0, -0.173648223),0.2)
  457. RightLeg.C1 = RightLeg.C1:lerp(CFrame.new(0.5, 1, -7.4505806e-09, 0.0094302753, 0.0843551308, 0.996391118, 0.110700019, 0.990222573, -0.0848806128, -0.993809104, 0.111100972, -4.34407745e-08),0.2)
  458. LeftArm.C1 = LeftArm.C1:lerp(CFrame.new(0.499999881, 0.49999997, 0, 0.686760783, 0.0407644771, -0.725739539, 0.724464417, 0.0430024639, 0.687969565, 0.0592533089, -0.998242974, -2.59004374e-09),0.2)
  459. RightArm.C1 = RightArm.C1:lerp(CFrame.new(-0.5, -0.0484665036, 2.98023224e-08, -0.31701979, -0.00180978479, 0.948417187, -0.948401749, -0.00541418325, -0.317024946, 0.00570865162, -0.999983728, 2.49531951e-10),0.2)
  460. Head.C1 = Head.C1:lerp(CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0),0.2)
  461. end
  462.  
  463. local keeprunning=true
  464. spawn(function()
  465. while wait() do
  466. local ray = Ray.new(char['Right Arm'].CFrame.p,(mouse.Hit.p-char['Right Arm'].CFrame.p).unit*300)
  467. local part,position = workspace:FindPartOnRay(ray,char, false, true)
  468. local distance = (char['Right Arm'].CFrame.p - position).magnitude
  469. if keeprunning==false then
  470. break
  471. end
  472. if part then
  473. if part.Parent:FindFirstChild("Humanoid") then
  474. part:BreakJoints()
  475. part.Anchored=false
  476. part.Velocity = Vector3.new(math.random(-160,160),math.random(-160,160),math.random(-160,160))
  477. if math.random(1,3) == 1 then
  478. part:Destroy()
  479. end
  480. end
  481. end
  482.  
  483. local ex=Instance.new("Explosion",workspace)
  484. ex.Position=position
  485. ex.Visible=false
  486. ex.DestroyJointRadiusPercent=0
  487. ex.BlastPressure=100
  488. ex.BlastRadius=10
  489. ex.Hit:connect(function(part)
  490. if part.Parent~=char and part.Parent~=char:WaitForChild("Accessory") then
  491. part:BreakJoints()
  492. end
  493. end)
  494. if math.random(1,5)==5 then
  495. sound("rbxassetid://314970761",false)
  496. end
  497. Torso.C1 = Torso.C1:lerp(CFrame.new(0.45384407, 3.25962901e-09, -0.163368881, -0.840329647, -0.538628399, 0.061037913, 0.12248569, -0.0789824352, 0.989322543, -0.528056264, 0.838833332, 0.132345542),0.2)
  498. LeftLeg.C1 = LeftLeg.C1:lerp(CFrame.new(-0.486327916, 0.918347716, -0.0835282654, -0.139580116, -0.193979532, -0.971024871, -0.210418463, 0.96403873, -0.162337258, 0.967595696, 0.18166253, -0.175377563),0.2)
  499. RightLeg.C1 = RightLeg.C1:lerp(CFrame.new(0.504761815, 1.01941562, -0.072208859, -0.0534072705, 0.0794541091, 0.995406747, -0.0726492628, 0.993878722, -0.083230041, -0.995926619, -0.0767606497, -0.0473080687),0.2)
  500. LeftArm.C1 = LeftArm.C1:lerp(CFrame.new(0.5, 0.49999994, -5.96046448e-08, -0.0783533007, -0.155531406, -0.984718561, -0.400697172, 0.909370303, -0.111747369, 0.912854075, 0.385818183, -0.1335731),0.2)
  501. RightArm.C1 = RightArm.C1:lerp(CFrame.new(-0.267708331, 0.709498703, -0.021721065, -0.500156283, -0.117081404, 0.85798347, -0.864884198, 0.0187412351, -0.501621544, 0.0426508784, -0.992945492, -0.110635392),0.2)
  502. Head.C1 = Head.C1:lerp(CFrame.new(0, -0.5, 0, -0.951892793, 0.28452459, 0.113780133, 0, -0.371307135, 0.928510129, 0.306431323, 0.883842111, 0.353444576),0.2)
  503.  
  504. local beam = Instance.new("Part", char)
  505. local colorz = {"Really red","Gold","Lime green","Really blue","Royal purple"}
  506. beam.BrickColor = BrickColor.new(colorz[math.random(1,#colorz)])
  507. beam.FormFactor = "Custom"
  508. beam.Material = "Neon"
  509. beam.Transparency = 0.5
  510. beam.Anchored = true
  511. beam.Locked = true
  512. beam.CanCollide = false
  513. beam.Size = Vector3.new(0.3, 0.3, distance)
  514. beam.CFrame = CFrame.new((char['Right Arm'].CFrame*CFrame.new(0,-3,0)).p, mouse.Hit.p) * CFrame.new(0, 0, -distance/2)
  515. spawn(function()
  516. while beam do
  517. if beam==nil then break end
  518. beam.Anchored=true
  519. swait()
  520. end
  521. end)
  522. spawn(function()
  523. for i=1,10 do
  524. beam.Transparency=i/10
  525. beam.CFrame=beam.CFrame*CFrame.new(0,0,-i/10)
  526. wait()
  527. end
  528. beam:Destroy()
  529. end)
  530. spawn(function()
  531. for i=5,70, 3 do
  532. beam.Size=Vector3.new(i,i,beam.Size.Z)
  533. wait()
  534. end
  535. end)
  536. end
  537. end)
  538. for i=1,10 do
  539. sound("rbxassetid://314970761",false)
  540. end
  541. wait(6)
  542. keeprunning=false
  543. cananim=true
  544. end
  545.  
  546.  
  547. mouse.Button1Down:connect(function()
  548. normpunch()
  549. end)
  550.  
  551.  
  552. supermode=false
  553. mouse.KeyDown:connect(function(key)
  554. local k=string.lower(key)
  555. if attacking==true then
  556. return
  557. end
  558. if k=="q" then
  559. attacking=true
  560. if supermode==false then
  561. lazor()
  562. else
  563. SUPERlazor()
  564. end
  565. attacking=false
  566. end
  567. if k=="l" then
  568. transition()
  569. end
  570. end)
  571.  
  572. punch = 1
  573. function normpunch()
  574. if attacking==true then
  575. return
  576. end
  577. dodamage=true
  578. attacking=true
  579. cananim=false
  580. sound("rbxassetid://138097048",false)
  581. if punch==1 then
  582. for i=1,10 do
  583. Torso.C1 = Torso.C1:lerp(CFrame.new(0, 0, 0, -0.910118103, -0.41434893, 0, 0, 0, 1, -0.41434893, 0.910118103, 0),0.3)
  584. LeftLeg.C1 = LeftLeg.C1:lerp(CFrame.new(-0.5, 1, 3.7252903e-09, 0.00116646651, 0.0136213535, -0.99990654, 0.023496937, 0.999630809, 0.0136450082, 0.999723256, -0.0235106573, 0.000845975766),0.3)
  585. RightLeg.C1 = RightLeg.C1:lerp(CFrame.new(0.5, 1, 4.65661287e-10, -4.35437997e-08, 0.0874831304, 0.996165991, 0.00556585658, 0.996150553, -0.0874817744, -0.999984503, 0.00554451346, -0.000486961944),0.3)
  586. LeftArm.C1 = LeftArm.C1:lerp(CFrame.new(0.5, 0.5, 0, 0.0391717218, -0.188973963, -0.981200516, -0.199156061, 0.960776389, -0.192991138, 0.979184568, 0.202971816, -4.2801517e-08),0.3)
  587. RightArm.C1 = RightArm.C1:lerp(CFrame.new(-0.312758863, 0.804995358, -0.0404221117, -0.349137038, 0.0591336042, 0.935203969, -0.937045753, -0.0294431858, -0.347962916, 0.0069590779, -0.997815788, 0.0656905994),0.3)
  588. Head.C1 = Head.C1:lerp(CFrame.new(0, -0.5, 0, -0.957687616, 0.287809789, 0, 0, 0, 1, 0.287809789, 0.957687616, 0),0.3)
  589. swait()
  590. end
  591. end
  592.  
  593. if punch==2 then
  594. for i=1,10 do
  595. swait()
  596. Torso.C1 = Torso.C1:lerp(CFrame.new(0, 0, 0, -0.983417749, -0.116297476, 0.139156267, 0.140106976, 0, 0.990136385, -0.115150362, 0.993214428, 0.0162940882),0.3)
  597. LeftLeg.C1 = LeftLeg.C1:lerp(CFrame.new(-0.5, 0.86816901, 0, -4.32735874e-08, -0.141177684, -0.989984274, -6.17107254e-09, 0.989984274, -0.141177684, 1, 0, -4.37113883e-08),0.3)
  598. RightLeg.C1 = RightLeg.C1:lerp(CFrame.new(0.5, 1.23575175, 0.176770806, -0.0336775407, -0.11687994, 0.992574871, -0.983614028, 0.179874539, -0.0121925017, -0.177113876, -0.976721108, -0.12102247),0.3)
  599. LeftArm.C1 = LeftArm.C1:lerp(CFrame.new(0.5, 0.49999994, 0, -4.33072991e-08, -0.135659724, -0.990755498, -0.144958332, 0.98029089, -0.134226859, 0.989437759, 0.143618271, -0.0196650494),0.3)
  600. RightArm.C1 = RightArm.C1:lerp(CFrame.new(-0.5, 0.49999997, 0, 0.0339012295, 0.115021303, 0.992784381, 0.280674934, 0.952282727, -0.119913273, -0.959203959, 0.282714903, -4.19281356e-08),0.3)
  601. Head.C1 = Head.C1:lerp(CFrame.new(0, -0.5, 0, -1, 0, 0, 0, -0.0711001009, 0.997469187, 0, 0.997469187, 0.0711001009),0.3)
  602. end
  603. end
  604.  
  605. if punch==3 then
  606. for i=1,10 do
  607. swait()
  608. Torso.C1 = Torso.C1:lerp(CFrame.new(0, 0, 0, -0.93749547, 0.347997427, 0, 0, 0, 1, 0.347997427, 0.93749547, 0),0.3)
  609. LeftLeg.C1 = LeftLeg.C1:lerp(CFrame.new(-0.50000006, 1, 0, 0.0109365005, -0.0829221606, -0.996496022, -0.130298764, 0.98794055, -0.083640255, 0.991414428, 0.13075693, -4.33361009e-08),0.3)
  610. RightLeg.C1 = RightLeg.C1:lerp(CFrame.new(0.49999997, 1, -3.7252903e-09, 0.114501342, 0.0127837732, 0.99334085, 5.62495939e-10, 0.999917209, -0.0128684072, -0.993423104, 0.00147345045, 0.114491865),0.3)
  611. LeftArm.C1 = LeftArm.C1:lerp(CFrame.new(0.352809936, 1.3686024, 0.0138391852, -4.37113883e-08, 0, -1, 0.999440074, -0.0334585831, -4.36869136e-08, -0.0334585831, -0.999440074, 1.4625211e-09),0.3)
  612. RightArm.C1 = RightArm.C1:lerp(CFrame.new(-0.5, 0.5, 0, -4.33629381e-08, 0.126015082, 0.992028356, 0.172522247, 0.97715348, -0.124125555, -0.985005617, 0.171146959, -0.0217404477),0.3)
  613. Head.C1 = Head.C1:lerp(CFrame.new(0, -0.5, 0, -1, 0, 0, 0, -0.07533779, 0.997158051, 0, 0.997158051, 0.07533779),0.3)
  614. end
  615. end
  616. if punch~=3 then
  617. punch=punch+1
  618. else
  619. punch=1
  620. end
  621. cananim=true
  622. dodamage=false
  623. attacking=false
  624. end
  625.  
  626.  
  627.  
  628. ---transiton
  629. function transition()
  630. if supermode==false then
  631. sound("rbxassetid://1321047607",false,0,5)
  632.  
  633. cananim=false
  634. attacking=true
  635. local stord = false
  636. spawn(function()
  637. wait(3)
  638. stord=true
  639. end)
  640. local ParticleEmitter0 = Instance.new("ParticleEmitter")
  641. ParticleEmitter0.Parent = torso
  642. ParticleEmitter0.Transparency = NumberSequence.new(0.20000000298023,0.20000000298023)
  643. ParticleEmitter0.Size = NumberSequence.new(3.2240438461304,1.0928964614868,3.7158470153809,0)
  644. ParticleEmitter0.Color = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0, 0, 0))
  645. ParticleEmitter0.Texture = "http://www.roblox.com/asset/?id=232918622"
  646. ParticleEmitter0.Lifetime = NumberRange.new(3)
  647. ParticleEmitter0.Rate = 1000
  648. ParticleEmitter0.VelocitySpread = 180
  649. ParticleEmitter0.Color = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0, 0, 0))
  650. repeat
  651. Torso.C1 = Torso.C1:lerp(CFrame.new(0, 0.787846208, 0.138918549, -1, 0, 0, 0, -0.173648179, 0.98480773, 0, 0.98480773, 0.173648179),0.2)
  652. LeftLeg.C1 = LeftLeg.C1:lerp(CFrame.new(-0.45286727, 0.316941619, 0.628786147, -4.36354597e-08, -0.058915928, -0.998262942, 0.21313341, 0.975326002, -0.0575622357, 0.977023065, -0.21276319, 0.0125569087),0.2)
  653. RightLeg.C1 = RightLeg.C1:lerp(CFrame.new(0.5, 0.627124608, -0.0240803957, -4.37113883e-08, 0, 1, 0.551679194, 0.834056437, 2.4114664e-08, -0.834056437, 0.551679194, -3.6457763e-08),0.2)
  654. LeftArm.C1 = LeftArm.C1:lerp(CFrame.new(0.5, 0.5, 0, 0.774880886, 0.296248376, -0.558387458, 0.52156949, 0.199403673, 0.829580307, 0.357106328, -0.934063733, -1.56096132e-08),0.2)
  655. RightArm.C1 = RightArm.C1:lerp(CFrame.new(-0.5, 0.5, 0, -0.00304316962, 0.0175396204, 0.999841511, -0.170919135, 0.985124171, -0.0178016629, -0.985280335, -0.170946226, -4.30679705e-08),0.2)
  656. Head.C1 = Head.C1:lerp(CFrame.new(0, -0.5, 0, -1, 0, 0, 0, -0.362809777, 0.931863308, 0, 0.931863308, 0.362809777),0.2)
  657. swait()
  658. until stord==true
  659. sound("rbxassetid://245537790",false)
  660. ParticleEmitter0.Speed=NumberRange.new(50)
  661. local mas = char
  662. local CharacterMesh0 = Instance.new("CharacterMesh")
  663. local CharacterMesh1 = Instance.new("CharacterMesh")
  664. local CharacterMesh2 = Instance.new("CharacterMesh")
  665. local CharacterMesh3 = Instance.new("CharacterMesh")
  666. local CharacterMesh4 = Instance.new("CharacterMesh")
  667. CharacterMesh0.Name = "GirlRocker Left Arm"
  668. CharacterMesh0.Parent = mas
  669. CharacterMesh0.MeshId = 717353151
  670. CharacterMesh0.BodyPart = Enum.BodyPart.LeftArm
  671. CharacterMesh0.OverlayTextureId = 717346901
  672. CharacterMesh1.Name = "GirlRocker Right Arm"
  673. CharacterMesh1.Parent = mas
  674. CharacterMesh1.MeshId = 717353483
  675. CharacterMesh1.BodyPart = Enum.BodyPart.RightArm
  676. CharacterMesh1.OverlayTextureId = 717346901
  677. CharacterMesh2.Name = "GirlRocker Right Leg"
  678. CharacterMesh2.Parent = mas
  679. CharacterMesh2.MeshId = 717353619
  680. CharacterMesh2.BodyPart = Enum.BodyPart.RightLeg
  681. CharacterMesh2.OverlayTextureId = 717346901
  682. CharacterMesh3.Name = "GirlRocker Torso"
  683. CharacterMesh3.Parent = mas
  684. CharacterMesh3.MeshId = 717353723
  685. CharacterMesh3.BodyPart = Enum.BodyPart.Torso
  686. CharacterMesh3.OverlayTextureId = 717346901
  687. CharacterMesh4.Name = "GirlRocker Left Leg"
  688. CharacterMesh4.Parent = mas
  689. CharacterMesh4.MeshId = 717353920
  690. CharacterMesh4.BodyPart = Enum.BodyPart.LeftLeg
  691. CharacterMesh4.OverlayTextureId = 717346901
  692. for i=1,90 do
  693. Torso.C1 = Torso.C1:lerp(CFrame.new(0, -1.06972265, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0),0.2)
  694. LeftLeg.C1 = LeftLeg.C1:lerp(CFrame.new(-0.5, 1, 0, -4.37113883e-08, 0, -1, -0.0906665474, 0.995881319, 3.96316047e-09, 0.995881319, 0.0906665474, -4.35313545e-08),0.2)
  695. RightLeg.C1 = RightLeg.C1:lerp(CFrame.new(0.5, 1, 0, -4.37113883e-08, 0, 1, 0.0595862567, 0.998223186, 2.60459809e-09, -0.998223186, 0.0595862567, -4.36337224e-08),0.2)
  696. LeftArm.C1 = LeftArm.C1:lerp(CFrame.new(0.5, 0.5, 0, -4.34208935e-08, -0.115096748, -0.993354261, -5.0310387e-09, 0.993354261, -0.115096748, 1, 0, -4.37113883e-08),0.2)
  697. RightArm.C1 = RightArm.C1:lerp(CFrame.new(-0.5, 0.5, 0, -4.36014211e-08, 0.0708893314, 0.997484207, 3.0986711e-09, 0.997484207, -0.0708893314, -1, 0, -4.37113883e-08),0.2)
  698. Head.C1 = Head.C1:lerp(CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0.249942318, 0.968260705, 0, 0.968260705, -0.249942318),0.2)
  699. swait()
  700. end
  701. ParticleEmitter0.Enabled=false
  702. supermode=true
  703. cananim=true
  704. attacking=false
  705. end
  706. end
  707.  
  708.  
  709.  
  710.  
  711.  
  712.  
  713.  
  714.  
  715.  
  716.  
  717.  
  718. function swait(t)
  719. if t == nil or t == 0 then
  720. game:service('RunService').Stepped:wait(0)
  721. return true
  722. else
  723. for i = 0, t do
  724. game:service('RunService').Stepped:wait(0)
  725. end
  726. return true
  727. end
  728. end
  729.  
  730. function scream()
  731. sound("rbxassetid://444895479",false,5.3509586219885250102)
  732. cananim = false
  733. for i=0,1.5, 0.1 do
  734. swait()
  735. end
  736.  
  737. attacking=true
  738. for i=0,1.5, 0.1 do
  739. swait()
  740. end
  741. wait()
  742. cananim = true
  743. attacking=false
  744. end
  745.  
  746.  
  747. spawn(function()
  748. while swait() do
  749. if animpose=="Idle" then
  750. for i=0,0.1,0.0025 do
  751. if animpose == "Idle" and cananim then
  752. swait()
  753. LeftArm.C1 = LeftArm.C1:lerp(CFrame.new(0.500000238, 0.500000238, -2.38418579e-07, 0.000574484526, -0.0482845455, -0.998833477, -0.00805476494, 0.998800993, -0.0482876077, 0.999967396, 0.0080731092, 0.000184875054),i)
  754. RightArm.C1 = RightArm.C1:lerp(CFrame.new(-0.50000006, 0.500000238, 0, -0.000810533762, 0.0540908612, 0.998535693, -0.00984518789, 0.998487175, -0.0540962256, -0.999951184, -0.00987461861, -0.000276772887),i)
  755. else
  756. break
  757. end
  758. end
  759. for i=0,0.1,0.0025 do
  760. if animpose == "Idle" and cananim then
  761. swait()
  762. LeftArm.C1 = LeftArm.C1:lerp(CFrame.new(0.50000006, 0.50000006, -9.47312119e-16, -4.35179714e-08, -0.0939683169, -0.99557513, -4.10748546e-09, 0.99557513, -0.0939683169, 1, 0, -4.37113883e-08),i)
  763. RightArm.C1 = RightArm.C1:lerp(CFrame.new(-0.5, 0.5, -1.77635684e-15, -4.34464624e-08, 0.109930925, 0.993939221, 4.80523354e-09, 0.993939221, -0.109930925, -1, 0, -4.37113883e-08),i)
  764. else
  765. break
  766. end
  767. end
  768. end
  769. end
  770. end)
  771.  
  772. while swait() do
  773. num = num + 0.05
  774. local sin = math.sin(num)
  775. if animpose == "Falling" and cananim then
  776. Torso.C1 = Torso.C1:lerp(CFrame.new(0, 0, 0, -1, 0, 0, 0, -0.089640595, 0.995974183, 0, 0.995974183, 0.089640595),0.2)
  777. LeftLeg.C1 = LeftLeg.C1:lerp(CFrame.new(-0.5, 0.940049231, 0.240459353, -4.37113883e-08, 0, -1, 0.0583860278, 0.998294055, -2.55213428e-09, 0.998294055, -0.0583860278, -4.36368204e-08),0.2)
  778. RightLeg.C1 = RightLeg.C1:lerp(CFrame.new(0.5, 1, 0, -4.37113883e-08, 0, 1, 0.144062787, 0.989568532, 6.29718455e-09, -0.989568532, 0.144062787, -4.32554152e-08),0.2)
  779. LeftArm.C1 = LeftArm.C1:lerp(CFrame.new(0.5, 0.635436773, 0, -4.28449951e-08, -0.198112398, -0.98017925, -8.65976801e-09, 0.98017925, -0.198112398, 1, 0, -4.37113883e-08),0.2)
  780. RightArm.C1 = RightArm.C1:lerp(CFrame.new(-0.5, 0.599987805, 0, -4.26205062e-08, 0.222013503, 0.975043535, 9.70451808e-09, 0.975043535, -0.222013503, -1, 0, -4.37113883e-08),0.2)
  781. Head.C1 = Head.C1:lerp(CFrame.new(0, -0.5, 0, -1, 0, 0, 0, -0.231759518, 0.972773135, 0, 0.972773135, 0.231759518),0.2)
  782. end
  783.  
  784.  
  785. if animpose == "Idle" and cananim then
  786. for i=0,0.1,0.001 do
  787. if animpose == "Idle" and cananim then
  788. swait()
  789. Torso.C1 = Torso.C1:lerp(CFrame.new(0, 0.200000048, 0, -0.98480767, -0.173648626, 0, 0, 0, 1, -0.173648626, 0.98480767, 0),i)
  790. LeftLeg.C1 = LeftLeg.C1:lerp(CFrame.new(-0.506504774, 0.77988106, 0.0818042755, 0.00300081098, -0.0723684728, -0.997373462, -0.186295643, 0.979876935, -0.0716594532, 0.982489169, 0.186021373, -0.0105415061),i)
  791. RightLeg.C1 = RightLeg.C1:lerp(CFrame.new(0.485123575, 0.800115585, 0.135903358, -0.000153154135, -0.00734659936, 0.999972999, -0.0196102634, 0.999780715, 0.0073421835, -0.999807715, -0.0196086094, -0.000297189312),i)
  792. Head.C1 = Head.C1:lerp(CFrame.new(0, -0.5, 0, -0.98480767, 0.173648402, 0, 0, 0, 1, 0.173648402, 0.98480767, 0),i)
  793. i=i/2
  794. else
  795. break
  796. end
  797. end
  798. for i=0,0.1,0.001 do
  799. if animpose == "Idle" and cananim then
  800. swait()
  801. Torso.C1 = Torso.C1:lerp(CFrame.new(0, 0, 0, -0.98480767, -0.173648626, 0, 0, 0, 1, -0.173648626, 0.98480767, 0),i)
  802. LeftLeg.C1 = LeftLeg.C1:lerp(CFrame.new(-0.49999994, 1, 0, -4.3619707e-08, -0.0647336245, -0.997902572, -0.143231794, 0.98761338, -0.0640661567, 0.989689171, 0.142931372, -0.00927195605),i)
  803. RightLeg.C1 = RightLeg.C1:lerp(CFrame.new(0.5, 1.00000012, 0.0391067117, -4.37113883e-08, 0, 1, -0.0612497553, 0.998122454, -2.67731193e-09, -0.998122454, -0.0612497553, -4.3629317e-08),i)
  804. Head.C1 = Head.C1:lerp(CFrame.new(0, -0.5, 0, -0.98480767, 0.173648402, 0, 0, 0, 1, 0.173648402, 0.98480767, 0),i)
  805. i=i/2
  806. else
  807. break
  808. end
  809. end
  810. end
  811. if animpose == "Running" and cananim then
  812. for i = 0, 0.25, 0.01 do
  813. if animpose == "Running" and cananim then
  814. Torso.C1 = Torso.C1:lerp(CFrame.new(0, 0, 0, -1, 0, 0, 0, -0.0358745977, 0.99935627, 0, 0.99935627, 0.0358745977),i)
  815. LeftLeg.C1 = LeftLeg.C1:lerp(CFrame.new(-0.5, 0.999999821, 8.94069672e-08, -4.37113883e-08, 0, -1, 0.342020363, 0.939692557, -1.49501851e-08, 0.939692557, -0.342020363, -4.10752676e-08),i)
  816. RightLeg.C1 = RightLeg.C1:lerp(CFrame.new(0.5, 1.00000024, 5.96046448e-08, -4.37113883e-08, 0, 1, 0.500000179, 0.866025269, 2.18557012e-08, -0.866025269, 0.500000179, -3.78551661e-08),i)
  817. LeftArm.C1 = LeftArm.C1:lerp(CFrame.new(0.5, 0.5, -2.98023224e-08, -4.37113883e-08, 0, -1, -0.5, 0.866025388, 2.18556941e-08, 0.866025388, 0.5, -3.78551732e-08),i)
  818. RightArm.C1 = RightArm.C1:lerp(CFrame.new(-0.5, 0.5, -1.49011612e-08, -4.37113883e-08, 0, 1, -0.5, 0.866025388, -2.18556941e-08, -0.866025388, -0.5, -3.78551732e-08),i)
  819. Head.C1 = Head.C1:lerp(CFrame.new(0, -0.5, 0, -1, 0, 0, 0, -0.106743492, 0.994286597, 0, 0.994286597, 0.106743492),i)
  820. swait()
  821. i=i/i*1.5
  822. else
  823. break
  824. end
  825. end
  826. for i = 0, 0.25, 0.01 do
  827. if animpose == "Running" and cananim then
  828. Torso.C1 = Torso.C1:lerp(CFrame.new(0, 0, 0, -0.999985278, 0, -0.00542885857, -0.00542835938, -0.0135572571, 0.999893367, -7.36004295e-05, 0.99990809, 0.0135570578),i)
  829. LeftLeg.C1 = LeftLeg.C1:lerp(CFrame.new(-0.5, 0.999999821, -1.1920929e-07, -4.37113883e-08, 0, -1, -0.499999791, 0.866025567, 2.18556853e-08, 0.866025567, 0.499999791, -3.78551803e-08),i)
  830. RightLeg.C1 = RightLeg.C1:lerp(CFrame.new(0.5, 1.00000012, -2.38418579e-07, -4.37113883e-08, 0, 1, -0.342020005, 0.939692616, -1.49501691e-08, -0.939692616, -0.342020005, -4.10752676e-08),i)
  831. LeftArm.C1 = LeftArm.C1:lerp(CFrame.new(0.5, 0.483990371, 0.00582697988, -4.37113883e-08, 0, -1, 0.57357651, 0.819151998, -2.50718255e-08, 0.819151998, -0.57357651, -3.58062699e-08),i)
  832. RightArm.C1 = RightArm.C1:lerp(CFrame.new(-0.5, 0.49999997, -2.98023224e-08, -4.37113883e-08, 0, 1, 0.500000179, 0.866025329, 2.18557012e-08, -0.866025329, 0.500000179, -3.78551697e-08),i)
  833. Head.C1 = Head.C1:lerp(CFrame.new(0, -0.5, 0, -1, 0, 0, 0, -0.103604339, 0.994618595, 0, 0.994618595, 0.103604339),i)
  834. swait()
  835. i=i/i*1.5
  836. else
  837. break
  838. end
  839. end
  840. end
  841.  
  842. if animpose == "Jumping" and cananim then
  843. Torso.C1 = Torso.C1:lerp(CFrame.new(0, 0, 0, -1, 0, 0, 0, -0.082511276, 0.996590137, 0, 0.996590137, 0.082511276),0.2)
  844. LeftLeg.C1 = LeftLeg.C1:lerp(CFrame.new(-0.495160788, 0.605178833, 0.315436631, 0.00363327051, -0.0117048975, -0.999924898, -0.296433508, 0.95497489, -0.012255826, 0.955046594, 0.296455771, -4.17464108e-08),0.2)
  845. RightLeg.C1 = RightLeg.C1:lerp(CFrame.new(0.5, 1, 0, -4.37113883e-08, 0, 1, 0.10612049, 0.994353294, 4.63867389e-09, -0.994353294, 0.10612049, -4.34645635e-08),0.2)
  846. LeftArm.C1 = LeftArm.C1:lerp(CFrame.new(0.5, 0.5, 0, -4.36747598e-08, -0.0409301594, -0.999162018, -1.78911408e-09, 0.999162018, -0.0409301594, 1, 0, -4.37113883e-08),0.2)
  847. RightArm.C1 = RightArm.C1:lerp(CFrame.new(-0.5, 0.5, 0, -4.36556142e-08, 0.0504997671, 0.998724043, 2.20741492e-09, 0.998724043, -0.0504997671, -1, 0, -4.37113883e-08),0.2)
  848. Head.C1 = Head.C1:lerp(CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0.106113546, 0.99435401, 0, 0.99435401, -0.106113546),0.2)
  849. end
  850. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement