Advertisement
TheSkibidiOne1

WIP Dont click it dosent work

Mar 11th, 2025
9
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.01 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local character = player.Character or player.CharacterAdded:Wait()
  3. local humanoid = character:WaitForChild("Humanoid")
  4. local hrp = character:WaitForChild("HumanoidRootPart")
  5. local debris = game:GetService("Debris")
  6. local runService = game:GetService("RunService")
  7.  
  8. player.PlayerGui.Main.Moveset["Cursed Strikes"].ItemName.Text = "Flowing Water"
  9. player.PlayerGui.Main.Moveset["Blood Edge"].ItemName.Text = "Lethal Whirlwind Stream"
  10. player.PlayerGui.Main.Moveset["Wing Throw"].ItemName.Text = "Hunters Grasp"
  11. player.PlayerGui.Main.Moveset["Head Splitter"].ItemName.Text = "Preys Peril"
  12. player.PlayerGui.Main.Ultimate["Title"].Text = "Rampage"
  13.  
  14. local animationIdToStop1 = "rbxassetid://14205334593"
  15. local newAnimation1 = game.ReplicatedStorage.Animations.Itadori.MeleeUlt.Melee1
  16. local animationIdToStop2 = "rbxassetid://14733539493"
  17. local newAnimation2 = game.ReplicatedStorage.Animations.Itadori.MeleeUlt.Melee2
  18. local animationIdToStop3 = "rbxassetid://14732979549"
  19. local newAnimation3 = game.ReplicatedStorage.Animations.Itadori.MeleeUlt.Melee3
  20.  
  21. local move1stop = "rbxassetid://14702384584"
  22. local move1play = game.ReplicatedStorage.Animations.Miwa.QuickDraw
  23. local db1 = false
  24.  
  25. local move2stop = "rbxassetid://14135387764"
  26. local move2play = game.ReplicatedStorage.Animations.Gojo.InfiniteVoid
  27. local db2 = false
  28.  
  29. local move3stop = "rbxassetid://15042750274"
  30. local move3play = game.ReplicatedStorage.Animations.Itadori.Rush
  31. local db3 = false
  32.  
  33. local move4stop = "rbxassetid://16842286124"
  34. local move4play = game.ReplicatedStorage.Animations.Itadori.SlaughterDemon
  35. local db4 = false
  36.  
  37. humanoid.AnimationPlayed:Connect(function(animationTrack)
  38. if animationTrack.Animation.AnimationId == animationIdToStop1 then
  39. animationTrack:Stop()
  40.  
  41. local newAnimationTrack = humanoid:LoadAnimation(newAnimation1)
  42. newAnimationTrack:Play()
  43. elseif animationTrack.Animation.AnimationId == animationIdToStop2 then
  44. animationTrack:Stop()
  45.  
  46. local newAnimationTrack = humanoid:LoadAnimation(newAnimation2)
  47. newAnimationTrack:Play()
  48. elseif animationTrack.Animation.AnimationId == animationIdToStop3 then
  49. animationTrack:Stop()
  50.  
  51. local newAnimationTrack = humanoid:LoadAnimation(newAnimation3)
  52. newAnimationTrack:Play()
  53. elseif animationTrack.Animation.AnimationId == move1stop and db1 == false then
  54. db1 = true
  55. animationTrack:Stop()
  56.  
  57. local newAnimationTrack = humanoid:LoadAnimation(move1play)
  58. newAnimationTrack:Play()
  59. newAnimationTrack:AdjustSpeed(0.6)
  60. newAnimationTrack.Stopped:Wait()
  61. wait(2)
  62. db1 = false
  63. elseif animationTrack.Animation.AnimationId == move2stop and db2 == false then
  64. db2 = true
  65. animationTrack:Stop()
  66.  
  67. local newAnimationTrack = humanoid:LoadAnimation(move2play)
  68. newAnimationTrack:Play()
  69. newAnimationTrack:AdjustSpeed(1.5)
  70. task.delay(1, function()
  71. newAnimationTrack:Stop()
  72. end)
  73. newAnimationTrack.Stopped:Wait()
  74. wait(2)
  75. db2 = false
  76. elseif animationTrack.Animation.AnimationId == move3stop and db3 == false then
  77. db3 = true
  78. animationTrack:Stop()
  79.  
  80. local newAnimationTrack = humanoid:LoadAnimation(move3play)
  81. newAnimationTrack:Play()
  82.  
  83. newAnimationTrack:AdjustSpeed(1)
  84.  
  85. newAnimationTrack.Stopped:Wait()
  86. wait(2)
  87. db3 = false
  88. elseif animationTrack.Animation.AnimationId == move4stop and db4 == false then
  89. db4 = true
  90. animationTrack:Stop()
  91.  
  92. local newAnimationTrack = humanoid:LoadAnimation(move4play)
  93. newAnimationTrack:Play()
  94. local startTime = 1.5
  95. newAnimationTrack:AdjustSpeed(0)
  96. newAnimationTrack.TimePosition = startTime
  97. newAnimationTrack:AdjustSpeed(.8)
  98. newAnimationTrack.Stopped:Wait()
  99. wait(2)
  100. db4 = false
  101. end
  102. end)
  103.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement