Advertisement
thewildanimator11

FULL KJ MOVES PACK (USE ONLY IN DUELS)

Sep 14th, 2024 (edited)
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.41 KB | None | 0 0
  1. local animations = {
  2. {id = "rbxassetid://16945573694", name = "ravage"},
  3. {id = "rbxassetid://16945550029", name = "ravage full move"},
  4. {id = "rbxassetid://16944345619", name = "swift sweep"},
  5. {id = "rbxassetid://17325254223", name = "collateral ruin"},
  6. {id = "rbxassetid://18447913645", name = "wall combo"},
  7. {id = "rbxassetid://17140902079", name = "ult anim [stay]"},
  8. {id = "rbxassetid://18445236460", name = "ult anim [walk]"},
  9. {id = "rbxassetid://17141153099", name = "stoic bomb"},
  10. {id = "rbxassetid://17354976067", name = "20-20-20 dropkick"},
  11. {id = "rbxassetid://17420452843", name = "20-20-20 dropkick hit"}
  12. }
  13.  
  14. local screenGui = Instance.new("ScreenGui")
  15. screenGui.Name = "MovableScreenGui"
  16. screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  17.  
  18. local frame = Instance.new("Frame")
  19. frame.Size = UDim2.new(0, 350, 0, 400)
  20. frame.Position = UDim2.new(0.5, -175, 0.5, -200)
  21. frame.BackgroundColor3 = Color3.fromRGB(255, 142, 0)
  22. frame.Transparency = 0.3
  23. frame.Active = true
  24. frame.Draggable = true
  25. frame.Parent = screenGui
  26.  
  27. local closeButton = Instance.new("TextButton")
  28. closeButton.Size = UDim2.new(0, 100, 0, 50)
  29. closeButton.Position = UDim2.new(0, 0, 0, -50)
  30. closeButton.Text = "wild's kj ui"
  31. closeButton.Parent = frame
  32.  
  33.  
  34. local function playAnimation(animationId)
  35. local player = game.Players.LocalPlayer
  36. local character = player.Character or player.CharacterAdded:Wait()
  37. local humanoid = character:WaitForChild("Humanoid")
  38. local animator = humanoid:FindFirstChild("Animator")
  39.  
  40. if not animator then
  41. animator = Instance.new("Animator")
  42. animator.Parent = humanoid
  43. end
  44.  
  45. local animation = Instance.new("Animation")
  46. animation.AnimationId = animationId
  47. local animationTrack = animator:LoadAnimation(animation)
  48. animationTrack:Play()
  49. end
  50.  
  51.  
  52. local function onCloseButtonClicked()
  53. screenGui:Destroy()
  54. end
  55.  
  56.  
  57. closeButton.MouseButton1Click:Connect(onCloseButtonClicked)
  58.  
  59.  
  60. for i, anim in ipairs(animations) do
  61. local button = Instance.new("TextButton")
  62. button.Size = UDim2.new(0, 150, 0, 50)
  63. button.Position = UDim2.new(0.1, 0, (i - 1) * 0.1 + 0.1, 0)
  64. button.Text = anim.name
  65. button.Parent = frame
  66.  
  67.  
  68. button.MouseButton1Click:Connect(function()
  69. playAnimation(anim.id)
  70. end)
  71. end
  72.  
  73.  
  74. local tool = Instance.new("Tool")
  75. tool.Name = "First M1" --put your tool name here
  76.  
  77. local handle = Instance.new("Part")
  78. handle.Name = "Handle"
  79. handle.Transparency = 1
  80. handle.CanCollide = false
  81. handle.Parent = tool
  82.  
  83. local soundId = "rbxassetid://your_sound_id_here" --put a sound here (needs to be a sound by tsb)
  84. local sound = Instance.new("Sound")
  85. sound.SoundId = soundId
  86. sound.Parent = tool
  87.  
  88. local animationId = "rbxassetid://17325510002" --put your tool anim in here
  89.  
  90. local function onEquipped()
  91. local character = game.Players.LocalPlayer.Character
  92. if character then
  93. local humanoid = character:WaitForChild("Humanoid")
  94. local rootPart = character:WaitForChild("HumanoidRootPart")
  95.  
  96. rootPart.Anchored = false --change to false if you do not want it to ancho
  97.  
  98. local animation = Instance.new("Animation")
  99. animation.AnimationId = animationId
  100. local animationTrack = humanoid:LoadAnimation(animation)
  101. animationTrack:Play() --plays the anim lol
  102. animationTrack:AdjustSpeed(1) --your speed here
  103.  
  104. sound:Play() --plays the sound
  105.  
  106. tool.Unequipped:Connect(function()
  107. end)
  108. end
  109. end
  110.  
  111. tool.Equipped:Connect(onEquipped)
  112. tool.Parent = game.Players.LocalPlayer.Backpack
  113.  
  114. local tool = Instance.new("Tool")
  115. tool.Name = "Second M1" --put your tool name here
  116.  
  117. local handle = Instance.new("Part")
  118. handle.Name = "Handle"
  119. handle.Transparency = 1
  120. handle.CanCollide = false
  121. handle.Parent = tool
  122.  
  123. local soundId = "rbxassetid://your_sound_id_here" --put a sound here (needs to be a sound by tsb)
  124. local sound = Instance.new("Sound")
  125. sound.SoundId = soundId
  126. sound.Parent = tool
  127.  
  128. local animationId = "rbxassetid://17325513870" --put your tool anim in here
  129.  
  130. local function onEquipped()
  131. local character = game.Players.LocalPlayer.Character
  132. if character then
  133. local humanoid = character:WaitForChild("Humanoid")
  134. local rootPart = character:WaitForChild("HumanoidRootPart")
  135.  
  136. rootPart.Anchored = false --change to false if you do not want it to ancho
  137.  
  138. local animation = Instance.new("Animation")
  139. animation.AnimationId = animationId
  140. local animationTrack = humanoid:LoadAnimation(animation)
  141. animationTrack:Play() --plays the anim lol
  142. animationTrack:AdjustSpeed(1) --your speed here
  143.  
  144. sound:Play() --plays the sound
  145.  
  146. tool.Unequipped:Connect(function()
  147. print("your unequipped text here")
  148. end)
  149. end
  150. end
  151.  
  152. tool.Equipped:Connect(onEquipped)
  153.  
  154. tool.Parent = game.Players.LocalPlayer.Backpack
  155.  
  156. local tool = Instance.new("Tool")
  157. tool.Name = "Third M1" --put your tool name here
  158.  
  159. local handle = Instance.new("Part")
  160. handle.Name = "Handle"
  161. handle.Transparency = 1
  162. handle.CanCollide = false
  163. handle.Parent = tool
  164.  
  165. local soundId = "rbxassetid://your_sound_id_here" --put a sound here (needs to be a sound by tsb)
  166. local sound = Instance.new("Sound")
  167. sound.SoundId = soundId
  168. sound.Parent = tool
  169.  
  170. local animationId = "rbxassetid://17325522388" --put your tool anim in here
  171.  
  172. local function onEquipped()
  173. local character = game.Players.LocalPlayer.Character
  174. if character then
  175. local humanoid = character:WaitForChild("Humanoid")
  176. local rootPart = character:WaitForChild("HumanoidRootPart")
  177.  
  178. rootPart.Anchored = false --change to false if you do not want it to ancho
  179.  
  180. local animation = Instance.new("Animation")
  181. animation.AnimationId = animationId
  182. local animationTrack = humanoid:LoadAnimation(animation)
  183. animationTrack:Play() --plays the anim lol
  184. animationTrack:AdjustSpeed(1) --your speed here
  185.  
  186. sound:Play() --plays the sound
  187.  
  188. tool.Unequipped:Connect(function()
  189. print("your unequipped text here")
  190. end)
  191. end
  192. end
  193.  
  194. tool.Equipped:Connect(onEquipped)
  195.  
  196. tool.Parent = game.Players.LocalPlayer.Backpack
  197. local tool = Instance.new("Tool")
  198. tool.Name = "Fourth M1" --put your tool name here
  199.  
  200. local handle = Instance.new("Part")
  201. handle.Name = "Handle"
  202. handle.Transparency = 1
  203. handle.CanCollide = false
  204. handle.Parent = tool
  205.  
  206. local soundId = "rbxassetid://your_sound_id_here" --put a sound here (needs to be a sound by tsb)
  207. local sound = Instance.new("Sound")
  208. sound.SoundId = soundId
  209. sound.Parent = tool
  210.  
  211. local animationId = "rbxassetid://17325537719" --put your tool anim in here
  212.  
  213. local function onEquipped()
  214. local character = game.Players.LocalPlayer.Character
  215. if character then
  216. local humanoid = character:WaitForChild("Humanoid")
  217. local rootPart = character:WaitForChild("HumanoidRootPart")
  218.  
  219. rootPart.Anchored = false --change to false if you do not want it to ancho
  220.  
  221. local animation = Instance.new("Animation")
  222. animation.AnimationId = animationId
  223. local animationTrack = humanoid:LoadAnimation(animation)
  224. animationTrack:Play() --plays the anim lol
  225. animationTrack:AdjustSpeed(1) --your speed here
  226.  
  227. sound:Play() --plays the sound
  228.  
  229. tool.Unequipped:Connect(function()
  230. print("your unequipped text here")
  231. end)
  232. end
  233. end
  234.  
  235. tool.Equipped:Connect(onEquipped)
  236.  
  237. tool.Parent = game.Players.LocalPlayer.Backpack
  238.  
  239.  
  240.  
  241. local tool = Instance.new("Tool")
  242. tool.Name = "Five Seasons #1" --put your tool name here
  243.  
  244. local handle = Instance.new("Part")
  245. handle.Name = "Handle"
  246. handle.Transparency = 1
  247. handle.CanCollide = false
  248. handle.Parent = tool
  249.  
  250. local soundId = "rbxassetid://your_sound_id_here" --put a sound here (needs to be a sound by tsb)
  251. local sound = Instance.new("Sound")
  252. sound.SoundId = soundId
  253. sound.Parent = tool
  254.  
  255. local animationId = "rbxassetid://18461128573" --put your tool anim in here
  256.  
  257. local function onEquipped()
  258. local character = game.Players.LocalPlayer.Character
  259. if character then
  260. local humanoid = character:WaitForChild("Humanoid")
  261. local rootPart = character:WaitForChild("HumanoidRootPart")
  262.  
  263. rootPart.Anchored = false --change to false if you do not want it to ancho
  264.  
  265. local animation = Instance.new("Animation")
  266. animation.AnimationId = animationId
  267. local animationTrack = humanoid:LoadAnimation(animation)
  268. animationTrack:Play() --plays the anim lol
  269. animationTrack:AdjustSpeed(1) --your speed here
  270.  
  271. sound:Play() --plays the sound
  272.  
  273. tool.Unequipped:Connect(function()
  274. print("your unequipped text here")
  275. end)
  276. end
  277. end
  278.  
  279. tool.Equipped:Connect(onEquipped)
  280.  
  281. tool.Parent = game.Players.LocalPlayer.Backpack
  282.  
  283. local tool = Instance.new("Tool")
  284. tool.Name = "Five Seasons #2" --put your tool name here
  285.  
  286. local handle = Instance.new("Part")
  287. handle.Name = "Handle"
  288. handle.Transparency = 1
  289. handle.CanCollide = false
  290. handle.Parent = tool
  291.  
  292. local soundId = "rbxassetid://your_sound_id_here" --put a sound here (needs to be a sound by tsb)
  293. local sound = Instance.new("Sound")
  294. sound.SoundId = soundId
  295. sound.Parent = tool
  296.  
  297. local animationId = "rbxassetid://18462892217" --put your tool anim in here
  298.  
  299. local function onEquipped()
  300. local character = game.Players.LocalPlayer.Character
  301. if character then
  302. local humanoid = character:WaitForChild("Humanoid")
  303. local rootPart = character:WaitForChild("HumanoidRootPart")
  304.  
  305. rootPart.Anchored = false --change to false if you do not want it to ancho
  306.  
  307. local animation = Instance.new("Animation")
  308. animation.AnimationId = animationId
  309. local animationTrack = humanoid:LoadAnimation(animation)
  310. animationTrack:Play() --plays the anim lol
  311. animationTrack:AdjustSpeed(1) --your speed here
  312.  
  313. sound:Play() --plays the sound
  314.  
  315. tool.Unequipped:Connect(function()
  316. print("your unequipped text here")
  317. end)
  318. end
  319. end
  320.  
  321. tool.Equipped:Connect(onEquipped)
  322.  
  323. tool.Parent = game.Players.LocalPlayer.Backpack
  324.  
  325. local tool = Instance.new("Tool")
  326. tool.Name = "Five Seasons #3" --put your tool name here
  327.  
  328. local handle = Instance.new("Part")
  329. handle.Name = "Handle"
  330. handle.Transparency = 1
  331. handle.CanCollide = false
  332. handle.Parent = tool
  333.  
  334. local soundId = "rbxassetid://your_sound_id_here" --put a sound here (needs to be a sound by tsb)
  335. local sound = Instance.new("Sound")
  336. sound.SoundId = soundId
  337. sound.Parent = tool
  338.  
  339. local animationId = "rbxassetid://18462894593" --put your tool anim in here
  340.  
  341. local function onEquipped()
  342. local character = game.Players.LocalPlayer.Character
  343. if character then
  344. local humanoid = character:WaitForChild("Humanoid")
  345. local rootPart = character:WaitForChild("HumanoidRootPart")
  346.  
  347. rootPart.Anchored = false --change to false if you do not want it to ancho
  348.  
  349. local animation = Instance.new("Animation")
  350. animation.AnimationId = animationId
  351. local animationTrack = humanoid:LoadAnimation(animation)
  352. animationTrack:Play() --plays the anim lol
  353. animationTrack:AdjustSpeed(1) --your speed here
  354.  
  355. sound:Play() --plays the sound
  356.  
  357. tool.Unequipped:Connect(function()
  358. print("your unequipped text here")
  359. end)
  360. end
  361. end
  362.  
  363. tool.Equipped:Connect(onEquipped)
  364.  
  365. tool.Parent = game.Players.LocalPlayer.Backpack
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement