Advertisement
UnknownCoolGuy

KJ Fanmade

Jan 17th, 2025
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.78 KB | None | 0 0
  1. --Move & Ultimate Names
  2.  
  3. local player = game.Players.LocalPlayer
  4.  
  5. local playerGui = player.PlayerGui
  6.  
  7. local hotbar = playerGui:FindFirstChild("Hotbar")
  8.  
  9. local backpack = hotbar:FindFirstChild("Backpack")
  10.  
  11. local hotbarFrame = backpack:FindFirstChild("Hotbar")
  12.  
  13. local baseButton = hotbarFrame:FindFirstChild("1").Base
  14.  
  15. local ToolName = baseButton.ToolName
  16.  
  17.  
  18. ToolName.Text = "KJ SERIES: SERIOUS OF PUNCH"
  19.  
  20.  
  21. local player = game.Players.LocalPlayer
  22.  
  23. local playerGui = player.PlayerGui
  24.  
  25. local hotbar = playerGui:FindFirstChild("Hotbar")
  26.  
  27. local backpack = hotbar:FindFirstChild("Backpack")
  28.  
  29. local hotbarFrame = backpack:FindFirstChild("Hotbar")
  30.  
  31. local baseButton = hotbarFrame:FindFirstChild("2").Base
  32.  
  33. local ToolName = baseButton.ToolName
  34.  
  35.  
  36. ToolName.Text = "KJ SERIES: THE BARRAGE"
  37.  
  38.  
  39. local player = game.Players.LocalPlayer
  40.  
  41. local playerGui = player.PlayerGui
  42.  
  43. local hotbar = playerGui:FindFirstChild("Hotbar")
  44.  
  45. local backpack = hotbar:FindFirstChild("Backpack")
  46.  
  47. local hotbarFrame = backpack:FindFirstChild("Hotbar")
  48.  
  49. local baseButton = hotbarFrame:FindFirstChild("3").Base
  50.  
  51. local ToolName = baseButton.ToolName
  52.  
  53.  
  54. ToolName.Text = "KJ SERIES: THE DASH"
  55.  
  56.  
  57. local player = game.Players.LocalPlayer
  58.  
  59. local playerGui = player.PlayerGui
  60.  
  61. local hotbar = playerGui:FindFirstChild("Hotbar")
  62.  
  63. local backpack = hotbar:FindFirstChild("Backpack")
  64.  
  65. local hotbarFrame = backpack:FindFirstChild("Hotbar")
  66.  
  67. local baseButton = hotbarFrame:FindFirstChild("4").Base
  68.  
  69. local ToolName = baseButton.ToolName
  70.  
  71.  
  72. ToolName.Text = "KJ SERIES: THE SLAP"
  73.  
  74.  
  75. local Players = game:GetService("Players")
  76.  
  77. local player = Players.LocalPlayer
  78.  
  79. local playerGui = player:WaitForChild("PlayerGui")
  80.  
  81.  
  82. local function findGuiAndSetText()
  83.  
  84. local screenGui = playerGui:FindFirstChild("ScreenGui")
  85.  
  86. if screenGui then
  87.  
  88. local magicHealthFrame = screenGui:FindFirstChild("MagicHealth")
  89.  
  90. if magicHealthFrame then
  91.  
  92. local textLabel = magicHealthFrame:FindFirstChild("TextLabel")
  93.  
  94. if textLabel then
  95.  
  96. textLabel.Text = "KJ OF EVERYTHING ACTIVED"
  97.  
  98. end
  99.  
  100. end
  101.  
  102. end
  103.  
  104. end
  105.  
  106.  
  107. playerGui.DescendantAdded:Connect(findGuiAndSetText)
  108.  
  109. findGuiAndSetText()
  110.  
  111. --[[Animations]]
  112.  
  113. --[[Move 1]]
  114.  
  115. local animationId = 77727115892579
  116.  
  117.  
  118. local player = game.Players.LocalPlayer
  119.  
  120. local character = player.Character or player.CharacterAdded:Wait()
  121.  
  122. local humanoid = character:WaitForChild("Humanoid")
  123.  
  124.  
  125. local function onAnimationPlayed(animationTrack)
  126.  
  127. if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  128.  
  129.  
  130. local p = game.Players.LocalPlayer
  131.  
  132. local Humanoid = p.Character:WaitForChild("Humanoid")
  133.  
  134.  
  135. for _, animTrack in pairs(Humanoid:GetPlayingAnimationTracks()) do
  136.  
  137. animTrack:Stop()
  138.  
  139. end
  140.  
  141.  
  142. local AnimAnim = Instance.new("Animation")
  143.  
  144. AnimAnim.AnimationId = "rbxassetid://17838006839"
  145.  
  146. local Anim = Humanoid:LoadAnimation(AnimAnim)
  147.  
  148.  
  149. local startTime = 0
  150.  
  151.  
  152. Anim:Play()
  153.  
  154. Anim:AdjustSpeed(0.1)
  155.  
  156. Anim.TimePosition = startTime
  157.  
  158. Anim:AdjustSpeed(0.9)
  159.  
  160.  
  161. end
  162.  
  163. end
  164.  
  165. --[[END OF MOVE 1 ANIM]]
  166.  
  167. --[[Move 2]]
  168.  
  169.  
  170. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  171.  
  172.  
  173. local animationId = 10466974800
  174.  
  175.  
  176. local player = game.Players.LocalPlayer
  177.  
  178. local character = player.Character or player.CharacterAdded:Wait()
  179.  
  180. local humanoid = character:WaitForChild("Humanoid")
  181.  
  182.  
  183. local function onAnimationPlayed(animationTrack)
  184.  
  185. if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  186.  
  187.  
  188. local p = game.Players.LocalPlayer
  189.  
  190. local Humanoid = p.Character:WaitForChild("Humanoid")
  191.  
  192.  
  193. for _, animTrack in pairs(Humanoid:GetPlayingAnimationTracks()) do
  194.  
  195. animTrack:Stop()
  196.  
  197. end
  198.  
  199.  
  200. local AnimAnim = Instance.new("Animation")
  201.  
  202. AnimAnim.AnimationId = "rbxassetid://18181589384"
  203.  
  204. local Anim = Humanoid:LoadAnimation(AnimAnim)
  205.  
  206.  
  207. local startTime = 0
  208.  
  209.  
  210. Anim:Play()
  211.  
  212. Anim:AdjustSpeed(1)
  213.  
  214. Anim.TimePosition = startTime
  215.  
  216. Anim:AdjustSpeed(1)
  217.  
  218.  
  219. end
  220.  
  221. end
  222.  
  223. --[[END OF MOVE 2 ANIM]]
  224.  
  225. --[[Move 3]]
  226.  
  227.  
  228. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  229.  
  230.  
  231. local animationId = 10471336737
  232.  
  233.  
  234. local player = game.Players.LocalPlayer
  235.  
  236. local character = player.Character or player.CharacterAdded:Wait()
  237.  
  238. local humanoid = character:WaitForChild("Humanoid")
  239.  
  240.  
  241. local function onAnimationPlayed(animationTrack)
  242.  
  243. if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  244.  
  245.  
  246. local p = game.Players.LocalPlayer
  247.  
  248. local Humanoid = p.Character:WaitForChild("Humanoid")
  249.  
  250.  
  251. for _, animTrack in pairs(Humanoid:GetPlayingAnimationTracks()) do
  252.  
  253. animTrack:Stop()
  254.  
  255. end
  256.  
  257.  
  258. local AnimAnim = Instance.new("Animation")
  259.  
  260. AnimAnim.AnimationId = "rbxassetid://17838619895"
  261.  
  262. local Anim = Humanoid:LoadAnimation(AnimAnim)
  263.  
  264.  
  265. local startTime = 0.3
  266.  
  267.  
  268. Anim:Play()
  269.  
  270. Anim:AdjustSpeed(0)
  271.  
  272. Anim.TimePosition = startTime
  273.  
  274. Anim:AdjustSpeed(1)
  275.  
  276.  
  277. delay(1.8, function()
  278.  
  279. Anim:Stop()
  280.  
  281. end)
  282.  
  283.  
  284. end
  285.  
  286. end
  287.  
  288. --[[END OF MOVE 3 ANIM]]
  289.  
  290. --[[Move 4]]
  291.  
  292.  
  293. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  294.  
  295.  
  296. local animationId = 12510170988
  297.  
  298.  
  299. local player = game.Players.LocalPlayer
  300.  
  301. local character = player.Character or player.CharacterAdded:Wait()
  302.  
  303. local humanoid = character:WaitForChild("Humanoid")
  304.  
  305.  
  306. local function onAnimationPlayed(animationTrack)
  307.  
  308. if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  309.  
  310. local p = game.Players.LocalPlayer
  311.  
  312. local Humanoid = p.Character:WaitForChild("Humanoid")
  313.  
  314.  
  315. for _, animTrack in pairs(Humanoid:GetPlayingAnimationTracks()) do
  316.  
  317. animTrack:Stop()
  318.  
  319. end
  320.  
  321.  
  322. local AnimAnim = Instance.new("Animation")
  323.  
  324. AnimAnim.AnimationId = "rbxassetid://16515850153"
  325.  
  326. local Anim = Humanoid:LoadAnimation(AnimAnim)
  327.  
  328.  
  329. local startTime = 0
  330.  
  331.  
  332. Anim:Play()
  333.  
  334. Anim:AdjustSpeed(0)
  335.  
  336. Anim.TimePosition = startTime
  337.  
  338. Anim:AdjustSpeed(1)
  339.  
  340.  
  341. end
  342.  
  343. end
  344.  
  345. --[[END OF MOVE 4 ANIM]]
  346.  
  347. --[[Wall combo]]
  348.  
  349. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  350.  
  351. local animationId = 15955393872
  352.  
  353.  
  354. local player = game.Players.LocalPlayer
  355.  
  356. local character = player.Character or player.CharacterAdded:Wait()
  357.  
  358. local humanoid = character:WaitForChild("Humanoid")
  359.  
  360.  
  361. local function onAnimationPlayed(animationTrack)
  362.  
  363. if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  364.  
  365. local p = game.Players.LocalPlayer
  366.  
  367. local Humanoid = p.Character:WaitForChild("Humanoid")
  368.  
  369.  
  370. for _, animTrack in pairs(Humanoid:GetPlayingAnimationTracks()) do
  371.  
  372. animTrack:Stop()
  373.  
  374. end
  375.  
  376.  
  377. local AnimAnim = Instance.new("Animation")
  378.  
  379. AnimAnim.AnimationId = "rbxassetid://15943915877"
  380.  
  381. local Anim = Humanoid:LoadAnimation(AnimAnim)
  382.  
  383.  
  384. local startTime = 0.05
  385.  
  386.  
  387. Anim:Play()
  388.  
  389. Anim:AdjustSpeed(0)
  390.  
  391. Anim.TimePosition = startTime
  392.  
  393. Anim:AdjustSpeed(1)
  394.  
  395.  
  396. end
  397.  
  398. end
  399.  
  400. --[[END OF WALL COMBO ANIM]]
  401.  
  402. --[[Ult Activation]]
  403.  
  404. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  405.  
  406.  
  407. local animationId = 12447707844
  408.  
  409.  
  410. local player = game.Players.LocalPlayer
  411.  
  412. local character = player.Character or player.CharacterAdded:Wait()
  413.  
  414. local humanoid = character:WaitForChild("Humanoid")
  415.  
  416.  
  417. local function onAnimationPlayed(animationTrack)
  418.  
  419. if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  420.  
  421. local p = game.Players.LocalPlayer
  422.  
  423. local Humanoid = p.Character:WaitForChild("Humanoid")
  424.  
  425.  
  426. for _, animTrack in pairs(Humanoid:GetPlayingAnimationTracks()) do
  427.  
  428. animTrack:Stop()
  429.  
  430. end
  431.  
  432.  
  433. local AnimAnim = Instance.new("Animation")
  434.  
  435. AnimAnim.AnimationId = "rbxassetid://17106858586 "
  436.  
  437. local Anim = Humanoid:LoadAnimation(AnimAnim)
  438.  
  439.  
  440. local startTime = 0
  441.  
  442.  
  443. Anim:Play()
  444.  
  445. Anim:AdjustSpeed(0)
  446.  
  447. Anim.TimePosition = startTime
  448.  
  449. Anim:AdjustSpeed(1)
  450.  
  451. end
  452.  
  453. end
  454. --[[END OF ULT ACTIVATION ANIM]]
  455.  
  456. --[[Dash]]
  457.  
  458. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  459.  
  460.  
  461. local animationId = 10479335397
  462.  
  463.  
  464. local player = game.Players.LocalPlayer
  465.  
  466. local character = player.Character or player.CharacterAdded:Wait()
  467.  
  468. local humanoid = character:WaitForChild("Humanoid")
  469.  
  470.  
  471. local function onAnimationPlayed(animationTrack)
  472.  
  473. if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  474.  
  475. local p = game.Players.LocalPlayer
  476.  
  477. local Humanoid = p.Character:WaitForChild("Humanoid")
  478.  
  479.  
  480. for _, animTrack in pairs(Humanoid:GetPlayingAnimationTracks()) do
  481.  
  482. animTrack:Stop()
  483.  
  484. end
  485.  
  486.  
  487. local AnimAnim = Instance.new("Animation")
  488.  
  489. AnimAnim.AnimationId = "rbxassetid://13294790250"
  490.  
  491. local Anim = Humanoid:LoadAnimation(AnimAnim)
  492.  
  493.  
  494. local startTime = 0
  495.  
  496.  
  497. Anim:Play()
  498.  
  499. Anim:AdjustSpeed(0)
  500.  
  501. Anim.TimePosition = startTime
  502.  
  503. Anim:AdjustSpeed(1.3)
  504.  
  505.  
  506. delay(1.8, function()
  507.  
  508. Anim:Stop()
  509.  
  510. end)
  511.  
  512.  
  513. end
  514.  
  515. end
  516.  
  517. --[[END OF DASH ANIM]]
  518.  
  519. --[[Uppercut]]
  520. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  521.  
  522.  
  523. local animationId = 10503381238
  524.  
  525.  
  526. local player = game.Players.LocalPlayer
  527.  
  528. local character = player.Character or player.CharacterAdded:Wait()
  529.  
  530. local humanoid = character:WaitForChild("Humanoid")
  531.  
  532.  
  533. local function onAnimationPlayed(animationTrack)
  534.  
  535. if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  536.  
  537. local p = game.Players.LocalPlayer
  538.  
  539. local Humanoid = p.Character:WaitForChild("Humanoid")
  540.  
  541.  
  542. for _, animTrack in pairs(Humanoid:GetPlayingAnimationTracks()) do
  543.  
  544. animTrack:Stop()
  545.  
  546. end
  547.  
  548.  
  549. local AnimAnim = Instance.new("Animation")
  550.  
  551. AnimAnim.AnimationId = "rbxassetid://14900168720"
  552.  
  553. local Anim = Humanoid:LoadAnimation(AnimAnim)
  554.  
  555.  
  556. local startTime = 1.3
  557.  
  558.  
  559. Anim:Play()
  560.  
  561. Anim:AdjustSpeed(0)
  562.  
  563. Anim.TimePosition = startTime
  564.  
  565. Anim:AdjustSpeed(0.7)
  566.  
  567.  
  568. end
  569.  
  570. end
  571.  
  572. --[[END OF UPPERCUT ANIM]]
  573.  
  574. --[[Downslam]]
  575.  
  576. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  577.  
  578.  
  579. local animationId = 10470104242
  580.  
  581.  
  582. local player = game.Players.LocalPlayer
  583.  
  584. local character = player.Character or player.CharacterAdded:Wait()
  585.  
  586. local humanoid = character:WaitForChild("Humanoid")
  587.  
  588.  
  589. local function onAnimationPlayed(animationTrack)
  590.  
  591. if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  592.  
  593. local p = game.Players.LocalPlayer
  594.  
  595. local Humanoid = p.Character:WaitForChild("Humanoid")
  596.  
  597.  
  598. for _, animTrack in pairs(Humanoid:GetPlayingAnimationTracks()) do
  599.  
  600. animTrack:Stop()
  601.  
  602. end
  603.  
  604.  
  605. local AnimAnim = Instance.new("Animation")
  606.  
  607. AnimAnim.AnimationId = "rbxassetid://12447247483"
  608.  
  609. local Anim = Humanoid:LoadAnimation(AnimAnim)
  610.  
  611.  
  612. local startTime = 0
  613.  
  614.  
  615. wait(0.2)
  616.  
  617. Anim:Play()
  618.  
  619. Anim:AdjustSpeed(0)
  620.  
  621. Anim.TimePosition = startTime
  622.  
  623. Anim:AdjustSpeed(6)
  624.  
  625.  
  626. end
  627.  
  628. end
  629.  
  630. --[[END OF DOWNSLAM ANIM]]
  631.  
  632. --[[Punch anims]]
  633.  
  634. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  635.  
  636.  
  637. local Players = game:GetService("Players")
  638.  
  639. local player = Players.LocalPlayer
  640.  
  641. local character = player.Character or player.CharacterAdded:Wait()
  642.  
  643. local humanoid = character:WaitForChild("Humanoid")
  644.  
  645.  
  646. local animationIdsToStop = {
  647.  
  648. [17859015788] = true, --downslam finisher
  649.  
  650. [10469493270] = true, --punch1
  651.  
  652. [10469630950] = true, --punch2
  653.  
  654. [10469639222] = true, --punch3
  655.  
  656. [10469643643] = true, --punch4
  657.  
  658. }
  659.  
  660.  
  661. local replacementAnimations = {
  662.  
  663. ["10469493270"] = "rbxassetid://17889458563", --punch1
  664.  
  665. ["10469630950"] = "rbxassetid://17889461810", --punch2
  666.  
  667. ["10469639222"] = "rbxassetid://17889471098", --punch3
  668.  
  669. ["10469643643"] = "rbxassetid://17889290569", --punch4
  670.  
  671. ["17859015788"] = "rbxassetid://12684185971", --downslam finisher
  672.  
  673. ["11365563255"] = "rbxassetid://14516273501" --punch idk
  674.  
  675. }
  676.  
  677.  
  678. local queue = {}
  679.  
  680. local isAnimating = false
  681.  
  682.  
  683. local function playReplacementAnimation(animationId)
  684.  
  685. if isAnimating then
  686.  
  687. table.insert(queue, animationId)
  688.  
  689. return
  690.  
  691. end
  692.  
  693.  
  694.  
  695. isAnimating = true
  696.  
  697. local replacementAnimationId = replacementAnimations[tostring(animationId)]
  698.  
  699. if replacementAnimationId then
  700.  
  701. local AnimAnim = Instance.new("Animation")
  702.  
  703. AnimAnim.AnimationId = replacementAnimationId
  704.  
  705. local Anim = humanoid:LoadAnimation(AnimAnim)
  706.  
  707. Anim:Play()
  708.  
  709.  
  710.  
  711. Anim.Stopped:Connect(function()
  712.  
  713. isAnimating = false
  714.  
  715. if #queue > 0 then
  716.  
  717. local nextAnimationId = table.remove(queue, 1)
  718.  
  719. playReplacementAnimation(nextAnimationId)
  720.  
  721. end
  722.  
  723. end)
  724.  
  725. else
  726.  
  727. isAnimating = false
  728.  
  729. end
  730.  
  731. end
  732.  
  733.  
  734. local function stopSpecificAnimations()
  735.  
  736. for _, track in ipairs(humanoid:GetPlayingAnimationTracks()) do
  737.  
  738. local animationId = tonumber(track.Animation.AnimationId:match("%d+"))
  739.  
  740. if animationIdsToStop[animationId] then
  741.  
  742. track:Stop()
  743.  
  744. end
  745.  
  746. end
  747.  
  748. end
  749.  
  750.  
  751. local function onAnimationPlayed(animationTrack)
  752.  
  753. local animationId = tonumber(animationTrack.Animation.AnimationId:match("%d+"))
  754.  
  755. if animationIdsToStop[animationId] then
  756.  
  757. stopSpecificAnimations()
  758.  
  759. animationTrack:Stop()
  760.  
  761.  
  762.  
  763. local replacementAnimationId = replacementAnimations[tostring(animationId)]
  764.  
  765. if replacementAnimationId then
  766.  
  767. playReplacementAnimation(animationId)
  768.  
  769. end
  770.  
  771. end
  772.  
  773. end
  774.  
  775.  
  776. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  777.  
  778.  
  779. local player = game.Players.LocalPlayer
  780.  
  781. local character = player.Character or player.CharacterAdded:Wait()
  782.  
  783. local humanoidRootPart = character:WaitForChild("HumanoidRootPart")
  784.  
  785.  
  786. local function onBodyVelocityAdded(bodyVelocity)
  787.  
  788. if bodyVelocity:IsA("BodyVelocity") then
  789.  
  790. bodyVelocity.Velocity = Vector3.new(bodyVelocity.Velocity.X, 0, bodyVelocity.Velocity.Z)
  791.  
  792. end
  793.  
  794. end
  795.  
  796.  
  797. character.DescendantAdded:Connect(onBodyVelocityAdded)
  798.  
  799.  
  800. for _, descendant in pairs(character:GetDescendants()) do
  801.  
  802. onBodyVelocityAdded(descendant)
  803.  
  804. end
  805.  
  806.  
  807. player.CharacterAdded:Connect(function(newCharacter)
  808.  
  809. character = newCharacter
  810.  
  811. humanoidRootPart = character:WaitForChild("HumanoidRootPart")
  812.  
  813. character.DescendantAdded:Connect(onBodyVelocityAdded)
  814.  
  815.  
  816.  
  817. for _, descendant in pairs(character:GetDescendants()) do
  818.  
  819. onBodyVelocityAdded(descendant)
  820.  
  821. end
  822.  
  823. end)
  824.  
  825. --[[Adding Quote or Message when Executed]]
  826.  
  827. local player = game.Players.LocalPlayer
  828. repeat wait() until player.Character
  829. local character = player.Character or player.CharacterAdded:Wait()
  830. local humanoid = character:WaitForChild("Humanoid")
  831. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  832.  
  833. -- Messages to send
  834. local messages = {"MESSAGE x1", "MESSAGE x2", "MESSAGE x3", "MESSAGE x4"}
  835.  
  836. local function sendMessage(text)
  837. ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(text, "All")
  838. end
  839.  
  840. for _, message in ipairs(messages) do
  841. sendMessage(message)
  842. wait(1.7) -- Wait time for each message
  843. end
  844.  
  845. --[[END OF QUOTES]]
  846.  
  847. --[[Idle Animation]]
  848.  
  849. local animationId = "rbxassetid://15099756132" -- Replace with your animation ID
  850. local player = game.Players.LocalPlayer
  851. local character = player.Character or player.CharacterAdded:Wait()
  852. local humanoid = character:WaitForChild("Humanoid")
  853. local animator = humanoid:FindFirstChildOfClass("Animator") or humanoid:WaitForChild("Animator")
  854.  
  855. local animation = Instance.new("Animation")
  856. animation.AnimationId = animationId
  857. local animationTrack = animator:LoadAnimation(animation)
  858.  
  859. local function isMoving()
  860. local velocity = humanoid.MoveDirection.Magnitude
  861. return velocity > 0
  862. end
  863.  
  864. while true do
  865. if not isMoving() then
  866. if not animationTrack.IsPlaying then
  867. animationTrack:Play()
  868. end
  869. else
  870. if animationTrack.IsPlaying then
  871. animationTrack:Stop()
  872. end
  873. end
  874. wait(0.1)
  875. end
  876.  
  877.  
  878. --[[END OF IDLE ANIM]]
  879.  
  880. --[[Run Anim]]
  881.  
  882. local player = game.Players.LocalPlayer
  883. local character = player.Character or player.CharacterAdded:Wait()
  884. local humanoid = character:WaitForChild("Humanoid")
  885. local animator = humanoid:WaitForChild("Animator")
  886.  
  887. local animationId = "rbxassetid://15962326593" -- Replace with your animation ID
  888. local animation = Instance.new("Animation")
  889. animation.AnimationId = animationId
  890.  
  891. local animationTrack
  892. local isMoving = false
  893.  
  894. local function playAnimation()
  895. if not animationTrack then
  896. animationTrack = animator:LoadAnimation(animation)
  897. end
  898.  
  899. if not isMoving then
  900. isMoving = true
  901. animationTrack:Play()
  902. end
  903. end
  904.  
  905. local function stopAnimation()
  906. if isMoving and animationTrack then
  907. isMoving = false
  908. animationTrack:Stop()
  909. end
  910. end
  911.  
  912. local function onHumanoidChanged()
  913. if humanoid.MoveDirection.Magnitude > 0 then
  914. playAnimation()
  915. else
  916. stopAnimation()
  917. end
  918. end
  919.  
  920. humanoid:GetPropertyChangedSignal("MoveDirection"):Connect(onHumanoidChanged)
  921.  
  922. onHumanoidChanged()
  923.  
  924. local player = game.Players.LocalPlayer
  925. local character = player.Character or player.CharacterAdded:Wait()
  926. local humanoid = character:WaitForChild("Humanoid")
  927. local animator = humanoid:WaitForChild("Animator")
  928.  
  929. local animationId = "rbxassetid://15962326593" -- Replace with your animation ID
  930. local animation = Instance.new("Animation")
  931. animation.AnimationId = animationId
  932.  
  933. local animationTrack
  934. local isMoving = false
  935.  
  936. local function playAnimation()
  937. if not animationTrack then
  938. animationTrack = animator:LoadAnimation(animation)
  939. end
  940.  
  941. if not isMoving then
  942. isMoving = true
  943. animationTrack:Play()
  944. end
  945. end
  946.  
  947. local function stopAnimation()
  948. if isMoving and animationTrack then
  949. isMoving = false
  950. animationTrack:Stop()
  951. end
  952. end
  953.  
  954. local function onHumanoidChanged()
  955. if humanoid.MoveDirection.Magnitude > 0 then
  956. playAnimation()
  957. else
  958. stopAnimation()
  959. end
  960. end
  961.  
  962. humanoid:GetPropertyChangedSignal("MoveDirection"):Connect(onHumanoidChanged)
  963.  
  964. onHumanoidChanged()
  965. humanoid:GetPropertyChangedSignal("MoveDirection"):Connect(onHumanoidChanged)
  966. local player = game.Players.LocalPlayer
  967. local character = player.Character or player.CharacterAdded:Wait()
  968. local humanoid = character:WaitForChild("Humanoid")
  969. local animator = humanoid:WaitForChild("Animator")
  970.  
  971. local animationId = "rbxassetid://15962326593" -- Replace with your animation ID
  972. local animation = Instance.new("Animation")
  973. animation.AnimationId = animationId
  974.  
  975. local animationTrack
  976. local isMoving = false
  977.  
  978. local function playAnimation()
  979. if not animationTrack then
  980. animationTrack = animator:LoadAnimation(animation)
  981. end
  982.  
  983. if not isMoving then
  984. isMoving = true
  985. animationTrack:Play()
  986. end
  987. end
  988.  
  989. local function stopAnimation()
  990. if isMoving and animationTrack then
  991. isMoving = false
  992. animationTrack:Stop()
  993. end
  994. end
  995.  
  996. local function onHumanoidChanged()
  997. if humanoid.MoveDirection.Magnitude > 0 then
  998. playAnimation()
  999. else
  1000. stopAnimation()
  1001. end
  1002. end
  1003.  
  1004. humanoid:GetPropertyChangedSignal("MoveDirection"):Connect(onHumanoidChanged)
  1005.  
  1006. onHumanoidChanged()
  1007.  
  1008. local player = game.Players.LocalPlayer
  1009. local character = player.Character or player.CharacterAdded:Wait()
  1010. local humanoid = character:WaitForChild("Humanoid")
  1011. local animator = humanoid:WaitForChild("Animator")
  1012.  
  1013. local animationId = "rbxassetid://15962326593" -- Replace with your animation ID
  1014. local animation = Instance.new("Animation")
  1015. animation.AnimationId = animationId
  1016.  
  1017. local animationTrack
  1018. local isMoving = false
  1019.  
  1020. local function playAnimation()
  1021. if not animationTrack then
  1022. animationTrack = animator:LoadAnimation(animation)
  1023. end
  1024.  
  1025. if not isMoving then
  1026. isMoving = true
  1027. animationTrack:Play()
  1028. end
  1029. end
  1030.  
  1031. local function stopAnimation()
  1032. if isMoving and animationTrack then
  1033. isMoving = false
  1034. animationTrack:Stop()
  1035. end
  1036. end
  1037.  
  1038. local function onHumanoidChanged()
  1039. if humanoid.MoveDirection.Magnitude > 0 then
  1040. playAnimation()
  1041. else
  1042. stopAnimation()
  1043. end
  1044. end
  1045.  
  1046. humanoid:GetPropertyChangedSignal("MoveDirection"):Connect(onHumanoidChanged)
  1047.  
  1048. onHumanoidChanged()
  1049.  
  1050. humanoid:GetPropertyChangedSignal("MoveDirection"):Connect(onHumanoidChanged)
  1051. local player = game.Players.LocalPlayer
  1052. local character = player.Character or player.CharacterAdded:Wait()
  1053. local humanoid = character:WaitForChild("Humanoid")
  1054. local animator = humanoid:WaitForChild("Animator")
  1055.  
  1056. local animationId = "rbxassetid://15962326593" -- Replace with your animation ID
  1057. local animation = Instance.new("Animation")
  1058. animation.AnimationId = animationId
  1059.  
  1060. local animationTrack
  1061. local isMoving = false
  1062.  
  1063. local function playAnimation()
  1064. if not animationTrack then
  1065. animationTrack = animator:LoadAnimation(animation)
  1066. end
  1067.  
  1068. if not isMoving then
  1069. isMoving = true
  1070. animationTrack:Play()
  1071. end
  1072. end
  1073.  
  1074. local function stopAnimation()
  1075. if isMoving and animationTrack then
  1076. isMoving = false
  1077. animationTrack:Stop()
  1078. end
  1079. end
  1080.  
  1081. local function onHumanoidChanged()
  1082. if humanoid.MoveDirection.Magnitude > 0 then
  1083. playAnimation()
  1084. else
  1085. stopAnimation()
  1086. end
  1087. end
  1088.  
  1089. humanoid:GetPropertyChangedSignal("MoveDirection"):Connect(onHumanoidChanged)
  1090.  
  1091. onHumanoidChanged()
  1092.  
  1093. local player = game.Players.LocalPlayer
  1094. local character = player.Character or player.CharacterAdded:Wait()
  1095. local humanoid = character:WaitForChild("Humanoid")
  1096. local animator = humanoid:WaitForChild("Animator")
  1097.  
  1098. local animationId = "rbxassetid://15962326593" -- Replace with your animation ID
  1099. local animation = Instance.new("Animation")
  1100. animation.AnimationId = animationId
  1101.  
  1102. local animationTrack
  1103. local isMoving = false
  1104.  
  1105. local function playAnimation()
  1106. if not animationTrack then
  1107. animationTrack = animator:LoadAnimation(animation)
  1108. end
  1109.  
  1110. if not isMoving then
  1111. isMoving = true
  1112. animationTrack:Play()
  1113. end
  1114. end
  1115.  
  1116. local function stopAnimation()
  1117. if isMoving and animationTrack then
  1118. isMoving = false
  1119. animationTrack:Stop()
  1120. end
  1121. end
  1122.  
  1123. local function onHumanoidChanged()
  1124. if humanoid.MoveDirection.Magnitude > 0 then
  1125. playAnimation()
  1126. else
  1127. stopAnimation()
  1128. end
  1129. end
  1130.  
  1131. humanoid:GetPropertyChangedSignal("MoveDirection"):Connect(onHumanoidChanged)
  1132.  
  1133. onHumanoidChanged()
  1134.  
  1135. --[[RUN ANIM END]]
  1136.  
  1137. --[[Execute Anims (Animations when you execute script]]
  1138.  
  1139. local p = game.Players.LocalPlayer
  1140. local Humanoid = p.Character:WaitForChild("Humanoid")
  1141.  
  1142. for _, animTrack in pairs(Humanoid:GetPlayingAnimationTracks()) do
  1143. animTrack:Stop()
  1144. end
  1145.  
  1146. local AnimAnim = Instance.new("Animation")
  1147. AnimAnim.AnimationId = "rbxassetid://14611879113" -- Replace with your animation ID
  1148.  
  1149. local Anim = Humanoid:LoadAnimation(AnimAnim)
  1150.  
  1151. local startTime = 0.05
  1152.  
  1153. Anim:Play()
  1154. Anim:AdjustSpeed(0)
  1155. Anim.TimePosition = startTime
  1156. Anim:AdjustSpeed(1)
  1157.  
  1158. --[[END OF EXECUTE ANIMS]]
  1159.  
  1160. --[[Garou Color Changer !DELETE IF NOT NEEDED!]]
  1161.  
  1162. --[[LEFT ARM COLORS]]
  1163.  
  1164. local char = game.Players.LocalPlayer.Character
  1165. getgenv().LArmCol = char['Left Arm'].ChildAdded:Connect(function(pp)
  1166. if pp.Name == 'WaterPalm' then
  1167. for i,v in pairs(pp:WaitForChild('ConstantEmit'):GetChildren()) do
  1168. v.Color =
  1169. ColorSequence.new{ColorSequenceKeypoint.new(0.00,
  1170. Color3.fromRGB(255, 0, 0)), -- Change Color (Red, Green, Blue)
  1171. ColorSequenceKeypoint.new(1.00,
  1172. Color3.fromRGB(0, 0, 255))} -- Change Color (Red, Green, Blue)
  1173. end
  1174.  
  1175. pp:WaitForChild('WaterTrail').Color =
  1176. ColorSequence.new{ColorSequenceKeypoint.new(0.00,
  1177. Color3.fromRGB(255, 0, 0)), -- Change Color (Red, Green, Blue)
  1178. ColorSequenceKeypoint.new(1.00,
  1179. Color3.fromRGB(0, 0, 255))} -- Change Color (Red, Green, Blue)
  1180.  
  1181. end end)
  1182. --[[RIGHT ARM colors]]
  1183.  
  1184. getgenv().RArmCol = char['Right Arm'].ChildAdded:Connect(function(pp)
  1185. if pp.Name == 'WaterPalm' then
  1186. for i,v in pairs(pp:WaitForChild('ConstantEmit'):GetChildren()) do
  1187. v.Color =
  1188. ColorSequence.new{ColorSequenceKeypoint.new(0.00,
  1189. Color3.fromRGB(255, 0, 0)), -- Change Color (Red, Green, Blue)
  1190. ColorSequenceKeypoint.new(1.00,
  1191. Color3.fromRGB(0, 0, 255))} -- Change Color (Red, Green, Blue)
  1192. end
  1193. pp:WaitForChild('WaterTrail').Color =
  1194. ColorSequence.new{ColorSequenceKeypoint.new(0.00,
  1195. Color3.fromRGB(255, 0, 0)), -- Change Color (Red, Green, Blue)
  1196. ColorSequenceKeypoint.new(1.00,
  1197. Color3.fromRGB(0, 0, 255))} -- Change Color (Red, Green, Blue)
  1198.  
  1199. end end)
  1200.  
  1201. --[[END OF GAROU COLORS]]
  1202.  
  1203.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement