ScriptMakerTSB

KJKJKJUPDATE

Oct 14th, 2024
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.01 KB | None | 0 0
  1.  
  2.  
  3. for _, tools in ipairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  4. if tools:IsA("Tool") then
  5. tools:Destroy()
  6. end
  7. end
  8. loadstring(game:HttpGet('https://pastebin.com/raw/5WQxxcVH'))()
  9.  
  10.  
  11.  
  12.  
  13.  
  14. local ClientAnimation = 17325160621
  15. local StartTime = 0 -- which time it starts like video
  16. local Speed = 1 -- animation speed
  17. local Duration = 8 -- when the animation stops
  18.  
  19. local p = game.Players.LocalPlayer
  20. local Humanoid = p.Character:WaitForChild("Humanoid")
  21. local AnimAnim = Instance.new("Animation")
  22. AnimAnim.AnimationId = "rbxassetid://" .. ClientAnimation
  23. local Anim = Humanoid:LoadAnimation(AnimAnim)
  24. AnimAnim.AnimationId = "rbxassetid://0"
  25. Anim:Play()
  26. Anim.TimePosition = StartTime
  27. Anim:AdjustSpeed(Speed)
  28. delay(Duration, function()
  29. Anim:Stop()
  30. end)
  31.  
  32.  
  33. local Sound = 17325174223
  34. local Volume = 2
  35. local Speed = 1
  36.  
  37. s= Instance.new("Sound")
  38. s.SoundId = "rbxassetid://" .. Sound
  39. s:Play()
  40. s.Volume = Volume
  41. s.PlaybackSpeed = Speed
  42.  
  43.  
  44.  
  45. local function handleAnimationDetection(animIdsToStop, replacementAnimId)
  46. local humanoid = game.Players.LocalPlayer.Character.Humanoid
  47.  
  48. local function onAnimPlayed(animationTrack)
  49. local animId = tonumber(string.match(animationTrack.Animation.AnimationId, "%d+"))
  50.  
  51. for _, stopId in ipairs(animIdsToStop) do
  52. if animId == stopId then
  53. animationTrack:Stop()
  54. local player = game.Players.LocalPlayer
  55. repeat wait() until player.Character.Humanoid
  56. local humanoid = player.Character.Humanoid
  57. local character = game.Players.LocalPlayer.Character or game.Players.LocalPlayer.CharacterAdded:Wait()
  58. local UserInputService = game:GetService("UserInputService")
  59. debounce = false -- Activate debounce
  60. local anim = Instance.new("Animation")
  61. anim.AnimationId = "rbxassetid://" .. replacementAnimId
  62. local playAnim = humanoid:LoadAnimation(anim)
  63. anim.AnimationId = "rbxassetid://0" -- don't change anything here
  64.  
  65. spawn(function()
  66. wait(1)
  67. debounce = true
  68. end)
  69.  
  70. playAnim:Play()
  71. playAnim:AdjustSpeed(1)
  72.  
  73. local Players = game:GetService("Players")
  74. local Character = Players.LocalPlayer.Character or Players.LocalPlayer.CharacterAdded:Wait()
  75.  
  76. local animationPlayed = false -- Flag to track if the animation has already been played
  77. end
  78. end
  79. end
  80.  
  81. humanoid.AnimationPlayed:Connect(onAnimPlayed)
  82. end
  83.  
  84. -- First set of animations
  85. local firstAnimIdsToStop = {10469493270, 13532562418, 13491635433, 13370310513, 14004222985, 15259161390, 16515503507, 17889458563}
  86. local m1 = 17325510002
  87. handleAnimationDetection(firstAnimIdsToStop, m1)
  88.  
  89. -- Second set of animations
  90. local secondAnimIdsToStop = {10469630950, 13532600125, 13296577783, 13390230973, 13997092940, 15240216931, 16515520431, 17889461810}
  91. local m2 = 17325513870
  92. handleAnimationDetection(secondAnimIdsToStop, m2)
  93.  
  94. -- Third set of animations
  95. local thirdAnimIdsToStop = {10469639222, 13532604085, 13295919399, 13378751717, 14001963401, 15240176873, 16515448089, 17889471098}
  96. local m3 = 17325522388
  97. handleAnimationDetection(thirdAnimIdsToStop, m3)
  98.  
  99. -- Fourth set of animations
  100. local fourthAnimIdsToStop = {10469643643, 13294471966, 13295936866, 13378708199, 14136436157, 15162694192, 16552234590, 17889290569}
  101. local m4 = 17325537719
  102. handleAnimationDetection(fourthAnimIdsToStop, m4)
  103.  
  104.  
  105.  
  106. local tool = Instance.new("Tool")
  107. tool.Name = "Swift Sweep"
  108. tool.RequiresHandle = false
  109. tool.CanBeDropped = false
  110. tool.ToolTip = "A move from KJ."
  111.  
  112. local function activateTool()
  113. local p = game.Players.LocalPlayer
  114. local Humanoid = p.Character:WaitForChild("Humanoid")
  115.  
  116. local AnimAnim = Instance.new("Animation")
  117. AnimAnim.AnimationId = "rbxassetid://16944265635"
  118. local Anim = Humanoid:LoadAnimation(AnimAnim)
  119. AnimAnim.AnimationId = "rbxassetid://0" -- Reset animation ID
  120. Anim:Play()
  121.  
  122. local soundeffect = Instance.new("Sound")
  123. soundeffect.SoundId = "rbxassetid://16944636115"
  124. soundeffect.Parent = game.Players.LocalPlayer.Character.Torso
  125. soundeffect:Play()
  126. soundeffect.Volume = 1
  127.  
  128.  
  129. local windtrail2 = game.ReplicatedStorage.Resources.HeadFirst["CharFX"].WindTrail:Clone()
  130. windtrail2.Parent = game.Players.LocalPlayer.Character["Right Leg"]
  131. for _, child in ipairs(windtrail2:GetChildren()) do
  132. if child:IsA("ParticleEmitter") then -- Check if the child is a ParticleEmitter
  133. child:Emit(20) -- Emit 20 particles
  134. end
  135. end
  136.  
  137. game.Players.LocalPlayer.Character.Humanoid.
  138. WalkSpeed = 0 -- change it
  139.  
  140.  
  141. wait(0.1)
  142.  
  143.  
  144. game.Players.LocalPlayer.Character.Humanoid.
  145. WalkSpeed = 0 -- change it
  146.  
  147.  
  148. wait(0.1)
  149.  
  150.  
  151. game.Players.LocalPlayer.Character.Humanoid.
  152. WalkSpeed = 0 -- change it
  153.  
  154.  
  155. wait(0.1)
  156.  
  157.  
  158. game.Players.LocalPlayer.Character.Humanoid.
  159. WalkSpeed = 0 -- change it
  160.  
  161.  
  162. wait(0.1)
  163.  
  164.  
  165. game.Players.LocalPlayer.Character.Humanoid.
  166. WalkSpeed = 0 -- change it
  167.  
  168.  
  169. wait(0.1)
  170.  
  171.  
  172. game.Players.LocalPlayer.Character.Humanoid.
  173. WalkSpeed = 0 -- change it
  174.  
  175.  
  176. wait(0.1)
  177. windtrail2:Destroy()
  178. end
  179.  
  180. local equippedConnection
  181. equippedConnection = tool.Equipped:Connect(function()
  182. activateTool()
  183. end)
  184.  
  185. tool.Parent = game.Players.LocalPlayer.Backpack
  186.  
  187.  
  188.  
  189. local p = game.Players.LocalPlayer
  190. local Humanoid = p.Character:WaitForChild("Humanoid")
  191.  
  192. local AnimAnim = Instance.new("Animation")
  193. AnimAnim.AnimationId = "rbxassetid://16945550029"
  194. local Anim = Humanoid:LoadAnimation(AnimAnim)
  195. AnimAnim.AnimationId = "rbxassetid://0" -- Reset animation ID
  196. Anim:Play()
  197.  
  198. local soundeffect = Instance.new("Sound")
  199. soundeffect.SoundId = "rbxassetid://16945517708"
  200. soundeffect.Parent = game.Players.LocalPlayer.Character.Torso
  201. soundeffect:Play()
  202. soundeffect.Volume = 2
  203.  
  204. local soundeffect = Instance.new("Sound")
  205. soundeffect.SoundId = "rbxassetid://16945593216"
  206. soundeffect.Parent = game.Players.LocalPlayer.Character.Torso
  207. soundeffect:Play()
  208. soundeffect.Volume = 2
  209.  
  210. local soundeffect = Instance.new("Sound")
  211. soundeffect.SoundId = "rbxassetid://16945691441"
  212. soundeffect.Parent = game.Players.LocalPlayer.Character.Torso
  213. soundeffect:Play()
  214. soundeffect.Volume = 2
  215. tool.Parent = game.Players.LocalPlayer.Backpack
  216.  
Advertisement
Add Comment
Please, Sign In to add comment