Advertisement
so50que

Hunter to Vessel

Jan 15th, 2025 (edited)
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 37.86 KB | None | 0 0
  1. -- //MOVES NAMES + FONT NEW UPDATE 🗣️🔥\\
  2.  
  3. local Players = game:GetService("Players")
  4. local player = Players.LocalPlayer
  5. local character = player.Character or player.CharacterAdded:Wait()
  6. local humanoid = character:WaitForChild("Humanoid")
  7.  
  8. local playerGui = player:WaitForChild("PlayerGui")
  9. local hotbar = playerGui:FindFirstChild("Hotbar")
  10. local backpack = hotbar:FindFirstChild("Backpack")
  11. local hotbarFrame = backpack:FindFirstChild("Hotbar")
  12.  
  13. local buttonData = {
  14.     {name = "1", text = "Cursed Strikes", font = Enum.Font.SourceSans},
  15.     {name = "2", text = "Crushing Blow", font = Enum.Font.SourceSans},
  16.     {name = "3", text = "Divergent Fist", font = Enum.Font.SourceSans},
  17.     {name = "4", text = "?", font = Enum.Font.SourceSans},
  18. }
  19.  
  20. for _, data in pairs(buttonData) do
  21.     local baseButton = hotbarFrame:FindFirstChild(data.name).Base
  22.     local ToolName = baseButton.ToolName
  23.     ToolName.Text = data.text
  24.     ToolName.Font = data.font
  25. end
  26.  
  27. local function waitForGui()
  28.     while true do
  29.         local screenGui = playerGui:FindFirstChild("ScreenGui")
  30.         if screenGui then
  31.             local magicHealthFrame = screenGui:FindFirstChild("MagicHealth")
  32.             if magicHealthFrame then
  33.                 local textLabel = magicHealthFrame:FindFirstChild("TextLabel")
  34.                 if textLabel then
  35.                     textLabel.Text = "King of Curses" -- //ULT NAME\\
  36.                     textLabel.Font = Enum.Font.Ubuntu --//TEXT ULT FONT 🅰️\\
  37.                     return
  38.                 end
  39.             end
  40.         end
  41.         wait(1)
  42.     end
  43. end
  44.  
  45. waitForGui()
  46.  
  47. -- Services
  48. local Players = game:GetService("Players")
  49. local TweenService = game:GetService("TweenService")
  50.  
  51. -- Local Player
  52. local player = Players.LocalPlayer
  53. local playerGui = player:WaitForChild("PlayerGui")
  54.  
  55. -- GUI and color adjustment function
  56. local function updateBarColor()
  57.     -- Find the ScreenGui on the screen
  58.     local screenGui = playerGui:FindFirstChild("ScreenGui")
  59.     if not screenGui then return end
  60.  
  61.     -- Find the MagicHealth Frame
  62.     local magicHealthFrame = screenGui:FindFirstChild("MagicHealth")
  63.     if not magicHealthFrame then return end
  64.  
  65.     -- Find the Health Frame
  66.     local healthFrame = magicHealthFrame:FindFirstChild("Health")
  67.     if not healthFrame then return end
  68.  
  69.     -- Find the Bar Frame
  70.     local barFrame = healthFrame:FindFirstChild("Bar")
  71.     if not barFrame then return end
  72.  
  73.     -- Find the ImageLabel with ImageColor3 property inside the Bar Frame
  74.     local imageLabel = barFrame:FindFirstChild("Bar")
  75.     if not imageLabel or not imageLabel:IsA("ImageLabel") then return end
  76.  
  77.     -- Set the color to yellow
  78.     imageLabel.ImageColor3 = Color3.fromRGB(250, 0, 0) -- Yellow
  79. end
  80.  
  81. -- Check the GUI again when the character resets
  82. local function onCharacterAdded(character)
  83.     -- Update the GUI
  84.     updateBarColor()
  85. end
  86.  
  87. -- Check the local player's character
  88. local function onPlayerAdded()
  89.     local character = player.Character or player.CharacterAdded:Wait()
  90.     onCharacterAdded(character)
  91.  
  92.     -- Check again when the character changes
  93.     player.CharacterAdded:Connect(onCharacterAdded)
  94. end
  95.  
  96. -- Check when the player is added
  97. Players.PlayerAdded:Connect(onPlayerAdded)
  98. if player then
  99.     onPlayerAdded()
  100. end
  101.  
  102. -- LocalScript inside StarterPlayerScripts
  103. -- m1's
  104.  
  105. local Players = game:GetService("Players")
  106. local player = Players.LocalPlayer
  107. local character = player.Character or player.CharacterAdded:Wait()
  108. local humanoid = character:WaitForChild("Humanoid")
  109.  
  110. -- the anim that will get track
  111.  
  112. local animationIdsToStop = {
  113.  
  114.     [13532604085] = true,
  115.  
  116. }
  117. -- the specific anim
  118. local replacementAnimations = {
  119.  
  120.     ["13532604085"] = "rbxassetid://13491635433",  -- 3rd m1's dont change the [12345678910] change the rbxassetid://123..
  121.  
  122. }
  123.  
  124. local queue = {}
  125. local isAnimating = false
  126. local function playReplacementAnimation(animationId)
  127.     if isAnimating then
  128.         table.insert(queue, animationId)
  129.         return
  130.     end
  131.    
  132.     -- end of m1s
  133.     isAnimating = true
  134.  
  135.     local replacementAnimationId = replacementAnimations[tostring(animationId)]
  136.  
  137.     if replacementAnimationId then
  138.  
  139.         local AnimAnim = Instance.new("Animation")
  140.  
  141.         AnimAnim.AnimationId = replacementAnimationId
  142.  
  143.         local Anim = humanoid:LoadAnimation(AnimAnim)
  144.  
  145.         Anim:Play()
  146.  
  147.        
  148.  
  149.         Anim.Stopped:Connect(function()
  150.  
  151.             isAnimating = false
  152.  
  153.             if #queue > 0 then
  154.  
  155.                 local nextAnimationId = table.remove(queue)
  156.  
  157.                 playReplacementAnimation(nextAnimationId)
  158.  
  159.             end
  160.         end)
  161.  
  162.     else
  163.  
  164.         isAnimating = false
  165.  
  166.     end
  167. end
  168.  
  169. local function stopSpecificAnimations()
  170.  
  171.     for _, track in ipairs(humanoid:GetPlayingAnimationTracks()) do
  172.  
  173.         local animationId = tonumber(track.Animation.AnimationId:match("%d+"))
  174.  
  175.         if animationIdsToStop[animationId] then
  176.  
  177.             track:Stop()
  178.         end
  179.     end
  180. end
  181.  
  182. local function onAnimationPlayed(animationTrack)
  183.  
  184.     local animationId = tonumber(animationTrack.Animation.AnimationId:match("%d+"))
  185.  
  186.     if animationIdsToStop[animationId] then
  187.  
  188.         stopSpecificAnimations()
  189.  
  190.         animationTrack:Stop()
  191.      
  192.         local replacementAnimationId = replacementAnimations[tostring(animationId)]
  193.  
  194.         if replacementAnimationId then
  195.  
  196.             playReplacementAnimation(animationId)
  197.  
  198.         end
  199.     end
  200. end
  201.  
  202. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  203.  
  204. -- Function to show the notification
  205. game:GetService("StarterGui"):SetCore("SendNotification", {
  206.     Title = "Garou to Vessel",
  207.     Text = "By Sundayo",
  208.     Icon = "rbxassetid://83200052700588", -- Optional, you can provide an image asset ID or leave empty
  209.     Duration = 3 -- Duration in seconds
  210. })
  211.  
  212. --[[MOVE 1 ANIM]]
  213.  
  214. local player = game.Players.LocalPlayer
  215. local character = player.Character or player.CharacterAdded:Wait()
  216. local humanoid = character:WaitForChild("Humanoid")
  217. local animationId = 12272894215
  218.  
  219. -- Animation logic
  220. local function onAnimationPlayed(animationTrack)
  221.     if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  222.         -- Stop all playing animations
  223.         for _, animTrack in pairs(humanoid:GetPlayingAnimationTracks()) do
  224.             animTrack:Stop()
  225.         end
  226.  
  227.                  -- Create a new sound object
  228.         local sound = Instance.new("Sound")
  229.  
  230. -- Set the Sound ID (example Sound ID from Roblox library)
  231.         sound.SoundId = "rbxassetid://16944636115"  -- Replace with your Sound ID
  232.  
  233. -- Set other properties for the sound
  234.         sound.Volume = 0.7
  235.         sound.Looped = false  -- Set to true if you want the sound to loop
  236.         sound.PlayOnRemove = false
  237. -- Set the playback speed (change speed here)
  238.         local playbackSpeed = 1.3 -- Adjust playback speed (1 = normal, 1.5 = faster, 0.5 = slower)
  239.         sound.PlaybackSpeed = playbackSpeed
  240.  
  241. -- Parent the sound to the player's PlayerGui so it plays locally
  242.         sound.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  243.  
  244. -- Optionally, destroy the sound after it finishes playing
  245.         sound.Ended:Connect(function()
  246.             sound:Destroy()
  247.         end)
  248.         -- Play new animation
  249.         local newAnim = Instance.new("Animation")
  250.         newAnim.AnimationId = "rbxassetid://15997042291"
  251.         local loadedAnim = humanoid:LoadAnimation(newAnim)
  252.  
  253.         local startTime = 0
  254.         loadedAnim:Play()
  255.         loadedAnim:AdjustSpeed(1)
  256.         loadedAnim.TimePosition = startTime
  257.         loadedAnim:AdjustSpeed(1)
  258.         task.wait(0.2)
  259.         sound:Play()
  260.         task.wait(0.4)
  261.         loadedAnim:Stop()
  262.        
  263.         -- Add your sound and particle effects below this line
  264.     end
  265. end
  266.  
  267. -- Connect the function to humanoid's animation played event
  268. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  269.  
  270. --[[END OF MOVE 1 ANIM]]
  271.  
  272. --[[MOVE ANIM]]
  273.  
  274. local Players = game:GetService("Players")
  275. local player = game.Players.LocalPlayer
  276. local character = player.Character or player.CharacterAdded:Wait()
  277. local humanoid = character:WaitForChild("Humanoid")
  278. local animationId = 12273188754
  279. local player = Players.LocalPlayer
  280. local Head = character:FindFirstChild("Head")
  281.  
  282. local FCA = Head.FaceCenterAttachment
  283. local FFA = Head.FaceFrontAttachment
  284.  
  285. -- Animation logic
  286. local function onAnimationPlayed(animationTrack)
  287.     if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  288.         -- Stop all playing animations
  289.         for _, animTrack in pairs(humanoid:GetPlayingAnimationTracks()) do
  290.             animTrack:Stop()
  291.         end
  292.  
  293.                  -- Create a new sound object
  294.         local sound2 = Instance.new("Sound")
  295.  
  296. -- Set the Sound ID (example Sound ID from Roblox library)
  297.         sound2.SoundId = "rbxassetid://507150998"  -- Replace with your Sound ID
  298.  
  299. -- Set other properties for the sound
  300.         sound2.Volume = 5
  301.         sound2.Looped = false  -- Set to true if you want the sound to loop
  302.         sound2.PlayOnRemove = false
  303. -- Set the playback speed (change speed here)
  304.         local playbackSpeed = 1 -- Adjust playback speed (1 = normal, 1.5 = faster, 0.5 = slower)
  305.         sound2.PlaybackSpeed = playbackSpeed
  306.  
  307. -- Parent the sound to the player's PlayerGui so it plays locally
  308.         sound2.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  309.  
  310. -- Optionally, destroy the sound after it finishes playing
  311.         sound2.Ended:Connect(function()
  312.             sound2:Destroy()
  313.         end)
  314.         -- Play new animation
  315.         local newAnim = Instance.new("Animation")
  316.         newAnim.AnimationId = "rbxassetid://15943915877"
  317.         local loadedAnim = humanoid:LoadAnimation(newAnim)
  318.  
  319.         local startTime = 0
  320.         loadedAnim:Play()
  321.         loadedAnim:AdjustSpeed(1.6)
  322.         loadedAnim.TimePosition = startTime
  323.         loadedAnim:AdjustSpeed(1.6)
  324.         sound2:Play()
  325.         if loadedAnim then
  326.             local trail = Instance.new("Trail")
  327.             trail.Attachment0 = FFA
  328.             trail.Attachment1 = FCA
  329.             trail.Texture = "rbxassetid://15702060689"
  330.             trail.Lifetime = 0.2
  331.             trail.Brightness = 500
  332.             trail.FaceCamera = true
  333.             local color1 = Color3.fromRGB(255, 0, 0)
  334.             local color2 = Color3.fromRGB(255, 0, 0)
  335.             trail.Color = ColorSequence.new(color1, color2)
  336.             trail.Parent = Head
  337.             loadedAnim.Ended:Wait()
  338.             trail:Destroy()
  339.         end    
  340.         -- Add your sound and particle effects below this line
  341.     end
  342. end
  343.  
  344. -- Connect the function to humanoid's animation played event
  345. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  346.  
  347. --[[END OF MOVE ANIM]]
  348.  
  349. -- move 2
  350.  
  351. local player = game.Players.LocalPlayer
  352. local character = player.Character or player.CharacterAdded:Wait()
  353. local humanoid = character:WaitForChild("Humanoid")
  354. local animationId = 12296113986
  355.  
  356. -- Animation logic
  357. local function onAnimationPlayed(animationTrack)
  358.     if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  359.         -- Stop all playing animations
  360.         for _, animTrack in pairs(humanoid:GetPlayingAnimationTracks()) do
  361.             animTrack:Stop()
  362.         end
  363. local Test = game:GetService("ReplicatedStorage").Resources.FiveSeasonsFX.CharFX.ArmEnabled
  364. local test = Test:Clone()
  365. test.Parent = game.Players.LocalPlayer.Character["Left Arm"]
  366.  
  367. local Test2 = game:GetService("ReplicatedStorage").Resources.UFW:GetChildren()[26].Particles
  368. local test2 = Test2:Clone()
  369. test2.Parent = game.Players.LocalPlayer.Character["HumanoidRootPart"]
  370.  
  371. local Test3 = game:GetService("ReplicatedStorage").Resources.WhirlwindDrop.GroundImpact.Ground:GetChildren()[2]
  372. local test3 = Test3:Clone()
  373. test3.Parent = game.Players.LocalPlayer.Character["Left Arm"]
  374.  
  375.  
  376.         -- Play new animation
  377.         local newAnim = Instance.new("Animation")
  378.         newAnim.AnimationId = "rbxassetid://12447247483"
  379.         local loadedAnim = humanoid:LoadAnimation(newAnim)
  380.  
  381.         local startTime = 0
  382.         loadedAnim:Play()
  383.         loadedAnim:AdjustSpeed(0.9)
  384.         loadedAnim.TimePosition = startTime
  385.         loadedAnim:AdjustSpeed(0.9)
  386.         task.wait(1)
  387.         for _, child in ipairs(test:GetChildren()) do
  388.             if child:IsA("ParticleEmitter") then
  389.        
  390.                 child.Color = ColorSequence.new(Color3.new(0, 150, 255))
  391.                 child:Emit(15)
  392.                 child.Enabled = true
  393.             end
  394.         end
  395.         for _, child in ipairs(test2:GetChildren()) do
  396.             if child:IsA("ParticleEmitter") then
  397.        
  398.                 child.Color = ColorSequence.new(Color3.new(0, 150, 255))
  399.                 child:Emit(5)
  400.                 child.Enabled = true
  401.  
  402.             end
  403.         end
  404.         for _, child in ipairs(test3:GetChildren()) do
  405.             if child:IsA("ParticleEmitter") then
  406.        
  407.                 child.Color = ColorSequence.new(Color3.new(0, 0, 0))
  408.                 child:Emit(1)
  409.                 child.Enabled = true
  410.                 task.wait(1.2)
  411.                 test:Destroy()
  412.                 test2:Destroy()
  413.                 test3:Destroy()
  414.             end
  415.         end
  416.         -- Add your sound and particle effects below this line
  417.     end
  418. end
  419.  
  420. -- Connect the function to humanoid's animation played event
  421. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  422.  
  423. -- end of move 2
  424.  
  425. -- move 3
  426.  
  427. local player = game.Players.LocalPlayer
  428. local character = player.Character or player.CharacterAdded:Wait()
  429. local humanoid = character:WaitForChild("Humanoid")
  430. local animationId = 12309835105
  431.  
  432. -- Animation logic
  433. local function onAnimationPlayed(animationTrack)
  434.     if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  435.         -- Stop all playing animations
  436.         for _, animTrack in pairs(humanoid:GetPlayingAnimationTracks()) do
  437.             animTrack:Stop()
  438.         end
  439.  
  440.                  -- Create a new sound object
  441.         local sound = Instance.new("Sound")
  442.  
  443. -- Set the Sound ID (example Sound ID from Roblox library)
  444.         sound.SoundId = "rbxassetid://10494606424"  -- Replace with your Sound ID
  445.  
  446. -- Set other properties for the sound
  447.         sound.Volume = 3
  448.         sound.Looped = false  -- Set to true if you want the sound to loop
  449.         sound.PlayOnRemove = false
  450. -- Set the playback speed (change speed here)
  451.         local playbackSpeed = 0.8 -- Adjust playback speed (1 = normal, 1.5 = faster, 0.5 = slower)
  452.         sound.PlaybackSpeed = playbackSpeed
  453.  
  454. -- Parent the sound to the player's PlayerGui so it plays locally
  455.         sound.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  456. -- Optionally, destroy the sound after it finishes playing
  457.         sound.Ended:Connect(function()
  458.             sound:Destroy()
  459.         end)
  460.  
  461.         local Test = game:GetService("ReplicatedStorage").Resources.FiveSeasonsFX.CharFX.ArmFX local test = Test:Clone()
  462.         test.Parent = game.Players.LocalPlayer.Character["Right Arm"]
  463.  
  464.  
  465.         for _, child in ipairs(test:GetChildren()) do
  466.             if child:IsA("ParticleEmitter") then
  467.        
  468.                 child.Color = ColorSequence.new(Color3.new(0, 150, 255))
  469.                 child:Emit(15)
  470.                 child.Enabled = true
  471.             end
  472.         end
  473.  
  474.         local Test2 = game:GetService("ReplicatedStorage").Resources.BloodSplatter.Attachment local test2 = Test2:Clone()
  475.         test2.Parent = game.Players.LocalPlayer.Character["Right Arm"]
  476.  
  477.  
  478.         for _, child in ipairs(test2:GetChildren()) do
  479.             if child:IsA("ParticleEmitter") then
  480.        
  481.                 child.Color = ColorSequence.new(Color3.new(0, 150, 255))
  482.                 child:Emit(15)
  483.                 child.Enabled = true
  484.             end
  485.         end
  486.  
  487.         -- Play new animation
  488.         local newAnim = Instance.new("Animation")
  489.         newAnim.AnimationId = "rbxassetid://18896127525"
  490.         local loadedAnim = humanoid:LoadAnimation(newAnim)
  491.  
  492.         local startTime = 0
  493.         loadedAnim:Play()
  494.         loadedAnim:AdjustSpeed(1.1)
  495.         loadedAnim.TimePosition = startTime
  496.         loadedAnim:AdjustSpeed(1.1)
  497.         task.wait(1)
  498.         local Test3 = game:GetService("ReplicatedStorage").Resources.MeleeEffects.Amplify.Real.Part.StrongMoneCustom local test3 = Test3:Clone()
  499.         test3.Parent = game.Players.LocalPlayer.Character["HumanoidRootPart"]
  500.  
  501.  
  502.         for _, child in ipairs(test3:GetChildren()) do
  503.             if child:IsA("ParticleEmitter") then
  504.        
  505.                 child:Emit(15)
  506.                 child.Enabled = true
  507.                 sound:Play()
  508.                 task.wait(1)
  509.                 test:Destroy()
  510.                 test2:Destroy()
  511.                 task.wait(0.3)
  512.                 test3:Destroy()
  513.             end
  514.         end
  515.         -- Add your sound and particle effects below this line
  516.     end
  517. end
  518.  
  519. -- Connect the function to humanoid's animation played event
  520. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  521.  
  522. -- end of move 3
  523.  
  524. -- Death Counter
  525.  
  526. local animationId = 12460977270 -- The animation to track
  527. local player = game.Players.LocalPlayer
  528. local character = player.Character or player.CharacterAdded:Wait()
  529. local humanoid = character:WaitForChild("Humanoid")
  530.  
  531. local function onAnimationPlayed(animationTrack)
  532.     if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  533.         local p = game.Players.LocalPlayer
  534.         local Humanoid = p.Character:WaitForChild("Humanoid")
  535.  
  536.         -- Stop all currently playing animations
  537.         for _, animTrack in pairs(Humanoid:GetPlayingAnimationTracks()) do
  538.             animTrack:Stop()
  539.         end
  540.  
  541.                  -- Create a new sound object
  542.         local sound = Instance.new("Sound")
  543. -- Set the Sound ID (example Sound ID from Roblox library)
  544.         sound.SoundId = "rbxassetid://13364832820"  -- Replace with your Sound ID
  545. -- Set other properties for the sound
  546.         sound.Volume = 1.2
  547.         sound.Looped = false  -- Set to true if you want the sound to loop
  548.         sound.PlayOnRemove = false
  549. -- Set the playback speed (change speed here)
  550.         local playbackSpeed = 1.7 -- Adjust playback speed (1 = normal, 1.5 = faster, 0.5 = slower)
  551.         sound.PlaybackSpeed = playbackSpeed
  552.         sound:Play()
  553. -- Parent the sound to the player's PlayerGui so it plays locally
  554.         sound.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  555. -- Optionally, destroy the sound after it finishes playing
  556.         sound.Ended:Connect(function()
  557.             sound:Destroy()
  558.         end)        
  559.        
  560.         -- Play the specific animation
  561.         local AnimAnim = Instance.new("Animation")
  562.         AnimAnim.AnimationId = "rbxassetid://17097146599" -- The specific animation
  563.         local Anim = Humanoid:LoadAnimation(AnimAnim)
  564.  
  565.         local startTime = 0 -- Speed for specific animation
  566.         Anim:Play()
  567.         Anim:AdjustSpeed(0)  -- Stops animation initially
  568.         Anim.TimePosition = startTime
  569.         Anim:AdjustSpeed(1.5) -- Adjust speed later
  570.        
  571.         local Test = game:GetService("ReplicatedStorage").Emotes.VFX.RealAssets.Humiliation.Part.Necksnap local test = Test:Clone()
  572.         test.Parent = game.Players.LocalPlayer.Character["Hitbox_RightArm"]
  573.  
  574.  
  575.         for _, child in ipairs(test:GetChildren()) do
  576.             if child:IsA("ParticleEmitter") then
  577.        
  578.                 child.Color = ColorSequence.new(Color3.new(1, 1, 1))
  579.                 child:Emit(15)
  580.                 child.Enabled = true
  581.             end
  582.         end
  583.         local Test2 = game:GetService("ReplicatedStorage").Resources.Uppercut_Slam.Impact local test2 = Test2:Clone()
  584.         test2.Parent = game.Players.LocalPlayer.Character["Hitbox_RightArm"]
  585.  
  586.  
  587.         for _, child in ipairs(test2:GetChildren()) do
  588.             if child:IsA("ParticleEmitter") then
  589.        
  590.                 child.Color = ColorSequence.new(Color3.new(1, 1, 1))
  591.                 child:Emit(15)
  592.                 child.Enabled = true
  593.             end
  594.         end
  595.         local Test3 = game:GetService("ReplicatedStorage").Resources.StoicBomb.Impact.Part.Spin local test3 = Test3:Clone()
  596.         test3.Parent = game.Players.LocalPlayer.Character["Hitbox_RightArm"]
  597.  
  598.  
  599.         for _, child in ipairs(test3:GetChildren()) do
  600.             if child:IsA("ParticleEmitter") then
  601.        
  602.                 child.Color = ColorSequence.new(Color3.new(255, 0, 0))
  603.                 child:Emit(15)
  604.                 child.Enabled = true
  605.                 task.wait(1.5)
  606.                 Anim.Ended:Wait()
  607.                 test:Destroy()
  608.                 test2:Destroy()
  609.                 test3:Destroy()
  610.                
  611.             end
  612.         end
  613.     end
  614. end
  615.    
  616. -- Connect Death Counter and Wall Combo functions to the AnimationPlayed event
  617. humanoid.AnimationPlayed:Connect(function(animationTrack)
  618.     onAnimationPlayed(animationTrack) -- Connect death counter
  619. end)
  620.  
  621. -- End of c
  622.  
  623. -- Serious Punch
  624. local animationId = 12467789963 -- The animation to track
  625. local player = game.Players.LocalPlayer
  626. local character = player.Character or player.CharacterAdded:Wait()
  627. local humanoid = character:WaitForChild("Humanoid")
  628.  
  629. local function onAnimationPlayed(animationTrack)
  630.     if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  631.         local p = game.Players.LocalPlayer
  632.         local Humanoid = p.Character:WaitForChild("Humanoid")
  633.  
  634.         -- Stop all currently playing animations
  635.         for _, animTrack in pairs(Humanoid:GetPlayingAnimationTracks()) do
  636.             animTrack:Stop()
  637.         end
  638.        
  639.         local sound = Instance.new("Sound")
  640. -- Set the Sound ID (example Sound ID from Roblox library)
  641.         sound.SoundId = "rbxassetid://15514353641"  -- Replace with your Sound ID
  642. -- Set other properties for the sound
  643.         sound.Volume = 1
  644.         sound.Looped = false  -- Set to true if you want the sound to loop
  645.         sound.PlayOnRemove = false
  646. -- Set the playback speed (change speed here)
  647.         local playbackSpeed = 1 -- Adjust playback speed (1 = normal, 1.5 = faster, 0.5 = slower)
  648.         sound.PlaybackSpeed = playbackSpeed
  649.         sound:Play()
  650.        
  651. -- Parent the sound to the player's PlayerGui so it plays locally
  652.         sound.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  653. -- Optionally, destroy the sound after it finishes playing
  654.         sound.Ended:Connect(function()
  655.             sound:Destroy()
  656.         end)        
  657.        
  658.         -- Play the specific animation
  659.         local AnimAnim = Instance.new("Animation")
  660.         AnimAnim.AnimationId = "rbxassetid://16746824621" -- The specific animation
  661.         local Anim = Humanoid:LoadAnimation(AnimAnim)
  662.  
  663.         local startTime = 0 -- Speed for specific animation
  664.         Anim:Play()
  665.         Anim:AdjustSpeed(0)  -- Stops animation initially
  666.         Anim.TimePosition = startTime
  667.         Anim:AdjustSpeed(1.2) -- Adjust speed later
  668.  
  669.         local Test2 = game:GetService("ReplicatedStorage").Resources.SunsetEffects.FlameWind.AtomicWind.Windy local test2 = Test2:Clone()
  670.         test2.Parent = game.Players.LocalPlayer.Character["Hitbox_RightArm"]
  671.  
  672.  
  673.         for _, child in ipairs(test2:GetChildren()) do
  674.             if child:IsA("ParticleEmitter") then
  675.                
  676.                 child:Emit(20)
  677.                 child.Enabled = true
  678.                 task.wait(0.1)
  679.                 child:Destroy()
  680.                
  681.             end
  682.         end
  683.     end
  684. end
  685.    
  686. -- Connect Death Counter and Wall Combo functions to the AnimationPlayed event
  687. humanoid.AnimationPlayed:Connect(function(animationTrack)
  688.     onAnimationPlayed(animationTrack) -- Connect death counter
  689. end)
  690.  
  691. -- End of Serious Punch
  692.  
  693. -- Tableflip
  694. local tableflipAnimationId = 14057231976 -- the anim that will get tracked
  695.  
  696. -- Function to handle Tableflip animation
  697. local function onTableFlipPlayed(animationTrack)
  698.     if animationTrack.Animation.AnimationId == "rbxassetid://" .. tableflipAnimationId then
  699.         local p = game.Players.LocalPlayer
  700.         local Humanoid = p.Character:WaitForChild("Humanoid")
  701.  
  702.         -- Stop all currently playing animations before playing the new one
  703.         for _, animTrack in pairs(Humanoid:GetPlayingAnimationTracks()) do
  704.             animTrack:Stop()
  705.         end
  706.                  -- Create a new sound object
  707.         local sound = Instance.new("Sound")
  708. -- Set the Sound ID (example Sound ID from Roblox library)
  709.         sound.SoundId = "rbxassetid://18443813318"  -- Replace with your Sound ID
  710. -- Set other properties for the sound
  711.         sound.Volume = 5
  712.         sound.Looped = false  -- Set to true if you want the sound to loop
  713.         sound.PlayOnRemove = false
  714. -- Set the playback speed (change speed here)
  715.         local playbackSpeed = 1 -- Adjust playback speed (1 = normal, 1.5 = faster, 0.5 = slower)
  716.         sound.PlaybackSpeed = playbackSpeed
  717. -- Parent the sound to the player's PlayerGui so it plays locally
  718.         sound.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  719. -- Optionally, destroy the sound after it finishes playing
  720.         sound.Ended:Connect(function()
  721.             sound:Destroy()
  722.         end)        
  723.        
  724.         local TableflipAnim = Instance.new("Animation")
  725.         TableflipAnim.AnimationId = "rbxassetid://79761806706382" -- the specific table flip animation
  726.         local Anim = Humanoid:LoadAnimation(TableflipAnim)
  727.  
  728.         local startTime = 0 -- speed for the specific anim
  729.         Anim:Play()
  730.         Anim:AdjustSpeed(2)
  731.         Anim.TimePosition = startTime
  732.         Anim:AdjustSpeed(2)
  733.         local red = Instance.new("Fire") -- example
  734.         local black = red:Clone()  -- You can name the file however you want
  735.        
  736.         red.Parent = game.Players.LocalPlayer.Character["Hitbox_RightArm"]
  737.         black.Parent = red.Parent
  738.        
  739.         red.Color = Color3.new(255, 0, 0)
  740.         red.SecondaryColor = Color3.new(0, 0, 0)
  741.         red.Heat = 10
  742.         red.Size = 4
  743.         red.TimeScale = 91923938432736452283
  744.        
  745.         black.Color = Color3.new(0, 0, 0)
  746.         black.SecondaryColor = black.Color
  747.         black.Heat = red.Heat
  748.         black.Size = 5
  749.         black.TimeScale = red.TimeScale
  750.         wait(1.5)
  751.         sound:Play()
  752.         local Test = game:GetService("ReplicatedStorage").Resources.KJEffects.KJWallCombo.FinalImpact.Attachment local test = Test:Clone()
  753.         test.Parent = game.Players.LocalPlayer.Character["HumanoidRootPart"]
  754.  
  755.        
  756.         for _, child in ipairs(test:GetChildren()) do
  757.             if child:IsA("ParticleEmitter") then
  758.                
  759.                 child.Color = ColorSequence.new(Color3.new(255, 0, 0))
  760.                 child:Emit(15)
  761.                 child.Enabled = true
  762.                 task.wait(0.1)
  763.                 child:Destroy()        
  764.                 red:Destroy()
  765.                 black:Destroy()
  766.  
  767.             end
  768.         end
  769.  
  770.         local Test2 = game:GetService("ReplicatedStorage").Resources.KJEffects.lastimpact.lastuimapktu local test2 = Test2:Clone()
  771.         test2.Parent = game.Players.LocalPlayer.Character["HumanoidRootPart"]
  772.  
  773.         for _, child in ipairs(test2:GetChildren()) do
  774.             if child:IsA("ParticleEmitter") then
  775.                
  776.                 child:Emit(15)
  777.                 child.Enabled = true
  778.                 task.wait(1)
  779.                 test2:Destroy()
  780.             end
  781.         end
  782.     end
  783. end
  784.  
  785. -- Connect Tableflip function to the AnimationPlayed event
  786. local humanoid = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
  787. humanoid.AnimationPlayed:Connect(function(animationTrack)
  788.     onTableFlipPlayed(animationTrack)
  789. end)
  790.  
  791. -- End of Tableflip
  792.    
  793. -- omni
  794. local tableflipAnimationId = 13630786846 -- the anim that will get tracked
  795.  
  796. -- Function to handle Tableflip animation
  797. local function onTableFlipPlayed(animationTrack)
  798.     if animationTrack.Animation.AnimationId == "rbxassetid://" .. tableflipAnimationId then
  799.         local p = game.Players.LocalPlayer
  800.         local Humanoid = p.Character:WaitForChild("Humanoid")
  801.  
  802.         -- Stop all currently playing animations before playing the new one
  803.         for _, animTrack in pairs(Humanoid:GetPlayingAnimationTracks()) do
  804.             animTrack:Stop()
  805.         end
  806.  
  807.         local TableflipAnim = Instance.new("Animation")
  808.         TableflipAnim.AnimationId = "rbxassetid://135104210400610" -- the specific table flip animation
  809.         local Anim = Humanoid:LoadAnimation(TableflipAnim)
  810.  
  811.         local startTime = 0 -- speed for the specific anim
  812.         Anim:Play()
  813.         Anim:AdjustSpeed(0.8)
  814.         Anim.TimePosition = startTime
  815.         Anim:AdjustSpeed(0.8)
  816.        
  817.     end
  818. end
  819.  
  820. -- Connect Tableflip function to the AnimationPlayed event
  821. local humanoid = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
  822. humanoid.AnimationPlayed:Connect(function(animationTrack)
  823.     onTableFlipPlayed(animationTrack)
  824. end)
  825.  
  826. -- End of omni
  827.    
  828. -- omni
  829. local tableflipAnimationId = 13813099821 -- the anim that will get tracked
  830.  
  831. -- Function to handle Tableflip animation
  832. local function onTableFlipPlayed(animationTrack)
  833.     if animationTrack.Animation.AnimationId == "rbxassetid://" .. tableflipAnimationId then
  834.         local p = game.Players.LocalPlayer
  835.         local Humanoid = p.Character:WaitForChild("Humanoid")
  836.  
  837.         -- Stop all currently playing animations before playing the new one
  838.         for _, animTrack in pairs(Humanoid:GetPlayingAnimationTracks()) do
  839.             animTrack:Stop()
  840.         end
  841.  
  842.         local TableflipAnim = Instance.new("Animation")
  843.         TableflipAnim.AnimationId = "rbxassetid://14349470649" -- the specific table flip animation
  844.         local Anim = Humanoid:LoadAnimation(TableflipAnim)
  845.  
  846.         local startTime = 0 -- speed for the specific anim
  847.         Anim:Play()
  848.         Anim:AdjustSpeed(1)
  849.         Anim.TimePosition = startTime
  850.         Anim:AdjustSpeed(1)
  851.     end
  852. end
  853.  
  854. -- Connect Tableflip function to the AnimationPlayed event
  855. local humanoid = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
  856. humanoid.AnimationPlayed:Connect(function(animationTrack)
  857.     onTableFlipPlayed(animationTrack)
  858. end)
  859.  
  860. -- End of omni
  861.        
  862. -- ult anim
  863. local animationId = 12342141464 -- the animation ID that triggers the aura
  864. local player = game.Players.LocalPlayer
  865. local character = player.Character or player.CharacterAdded:Wait()
  866. local humanoid = character:WaitForChild("Humanoid")
  867.  
  868. -- Triggered when the animation is played
  869. local function onAnimationPlayed(animationTrack)
  870.     if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  871.  
  872.         -- Stop all currently playing animations
  873.         local p = game.Players.LocalPlayer
  874.         local Humanoid = p.Character:WaitForChild("Humanoid")
  875.  
  876.         for _, animTrack in pairs(Humanoid:GetPlayingAnimationTracks()) do
  877.             animTrack:Stop()
  878.         end
  879.  
  880.         -- Load and play the specific ultimate animation
  881.         local AnimAnim = Instance.new("Animation")
  882.         AnimAnim.AnimationId = "rbxassetid://95000469063288" -- the specific animation
  883.  
  884.         local Anim = Humanoid:LoadAnimation(AnimAnim)
  885.        
  886.                  -- Create a new sound object
  887.         local sound = Instance.new("Sound")
  888. -- Set the Sound ID (example Sound ID from Roblox library)
  889.         sound.SoundId = "rbxassetid://14527825749"  -- Replace with your Sound ID
  890. -- Set other properties for the sound
  891.         sound.Volume = 1.2
  892.         sound.Looped = false  -- Set to true if you want the sound to loop
  893.         sound.PlayOnRemove = false
  894. -- Set the playback speed (change speed here)
  895.         local playbackSpeed = 1 -- Adjust playback speed (1 = normal, 1.5 = faster, 0.5 = slower)
  896.         sound.PlaybackSpeed = playbackSpeed
  897. -- Parent the sound to the player's PlayerGui so it plays locally
  898.         sound.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  899. -- Optionally, destroy the sound after it finishes playing
  900.         sound.Ended:Connect(function()
  901.             sound:Destroy()
  902.         end)
  903.        
  904.        
  905.         local startTime = 6.5 -- the specific start time for the animation
  906.         Anim:Play()
  907.         Anim:AdjustSpeed(1.5)  -- Set speed to 0 initially
  908.         Anim.TimePosition = startTime
  909.         Anim:AdjustSpeed(1.5)-- Restore speed after starting the animation
  910.         task.wait(1)
  911.         sound:Play()
  912.         -- Load and play the specific ultimate animation
  913.         local AnimAnim2 = Instance.new("Animation")
  914.         AnimAnim2.AnimationId = "rbxassetid://17120750680" -- the specific animation
  915.  
  916.         local Anim2 = Humanoid:LoadAnimation(AnimAnim2)
  917.  
  918.         local startTime = 0 -- the specific start time for the animation
  919.         Anim.Ended:Wait()
  920.                  -- Create a new sound object
  921.         local sound = Instance.new("Sound")
  922. -- Set the Sound ID (example Sound ID from Roblox library)
  923.         sound.SoundId = "rbxassetid://12560015565"  -- Replace with your Sound ID
  924. -- Set other properties for the sound
  925.         sound.Volume = 3
  926.         sound.Looped = false  -- Set to true if you want the sound to loop
  927.         sound.PlayOnRemove = false
  928. -- Set the playback speed (change speed here)
  929.         local playbackSpeed = 1 -- Adjust playback speed (1 = normal, 1.5 = faster, 0.5 = slower)
  930.         sound.PlaybackSpeed = playbackSpeed
  931. -- Parent the sound to the player's PlayerGui so it plays locally
  932.         sound.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  933.         sound:Play()
  934. -- Optionally, destroy the sound after it finishes playing
  935.         sound.Ended:Connect(function()
  936.             sound:Destroy()
  937.         end)
  938.        
  939.  
  940.         Anim2:Play()
  941.         Anim2:AdjustSpeed(1)  -- Set speed to 0 initially
  942.         Anim2.TimePosition = startTime
  943.         Anim2:AdjustSpeed(1)  -- Restore speed after starting the animation
  944.         coroutine.wrap(function()
  945.             local ts = game:GetService("TweenService")
  946.             local player = game.Players.LocalPlayer
  947.             local character = player.Character or player.CharacterAdded:Wait()
  948.             local humanoidRootPart = character:WaitForChild("HumanoidRootPart")
  949.  
  950.             local Dialogue = Instance.new("BillboardGui")
  951.             local Chat1 = Instance.new("Frame")
  952.             local Sub = Instance.new("TextLabel")
  953.  
  954.             Dialogue.Active = true
  955.             Dialogue.Size = UDim2.new(15, 0, 15, 0)
  956.             Dialogue.StudsOffset = Vector3.new(0, 0, 2)
  957.             Dialogue.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  958.             Dialogue.Name = "Dialogue"
  959.             Dialogue.Parent = humanoidRootPart
  960.  
  961.             Chat1.AnchorPoint = Vector2.new(0.5, 0.5)
  962.             Chat1.BackgroundColor3 = Color3.new(1, 1, 1)
  963.             Chat1.BorderColor3 = Color3.new(0, 0, 0)
  964.             Chat1.BorderSizePixel = 1.5
  965.             Chat1.Position = UDim2.new(0.600000024, 0, -0.2, 0)
  966.             Chat1.Size = UDim2.new(0.12, 0, 0.2, 0)
  967.             Chat1.Name = "Chat1"
  968.             Chat1.BackgroundTransparency = 1
  969.             Chat1.Parent = Dialogue
  970.  
  971.             Sub.FontFace = Font.new("rbxassetid://12187375716", Enum.FontWeight.Bold, Enum.FontStyle.Italic)
  972.             Sub.Text = "Where are the people?! The women?! What a wonderful age this is! Women and children are spawning like maggots! Marvelous! It'll be a massacre!"
  973.             Sub.TextColor3 = Color3.new(0, 0, 0)
  974.             Sub.TextScaled = true
  975.             Sub.TextSize = 25
  976.             Sub.TextWrapped = true
  977.             Sub.AnchorPoint = Vector2.new(0.5, 0.5)
  978.             Sub.BackgroundColor3 = Color3.new(1, 1, 1)
  979.             Sub.TextTransparency = 1
  980.             Sub.BorderColor3 = Color3.new(0, 0, 0)
  981.             Sub.BorderSizePixel = 0
  982.             Sub.Position = UDim2.new(0.5, 0, 0.5, 0)
  983.             Sub.Size = UDim2.new(0.9, 0, 1, 0)
  984.             Sub.Name = "Sub"
  985.             Sub.Parent = Chat1
  986.  
  987.             game.Debris:AddItem(Chat1, 25)
  988.             game.Debris:AddItem(Sub, 25)
  989.  
  990.             local function tweenProperty(object, properties, time)
  991.                 local tweenInfo = TweenInfo.new(time, Enum.EasingStyle.Quad, Enum.EasingDirection.Out)
  992.                 local tween = ts:Create(object, tweenInfo, properties)
  993.                 tween:Play()
  994.                 return tween
  995.             end
  996.  
  997.             tweenProperty(Chat1, {BackgroundTransparency = 0}, 1)
  998.             tweenProperty(Sub, {TextTransparency = 0}, 1)
  999.             tweenProperty(Chat1, {Position = UDim2.new(0.6, 0, 0.4, 0)}, 1)
  1000.             task.wait(2)
  1001.             tweenProperty(Chat1, {BackgroundTransparency = 1}, 2)
  1002.             tweenProperty(Sub, {TextTransparency = 1}, 2)
  1003.         end)()
  1004.        
  1005.         local Players = game:GetService("Players")
  1006.         local player = Players.LocalPlayer
  1007.         local character = player.Character or player.CharacterAdded:Wait()
  1008.         local Head = character:FindFirstChild("Head")
  1009.  
  1010.         if Head then
  1011.             local tatoo = Instance.new("Decal")
  1012.             tatoo.Texture = "rbxassetid://6700509636"
  1013.             tatoo.Parent = Head
  1014.         end
  1015.        
  1016.         local Test = game:GetService("StarterPlayer").StarterCharacter.Torso.GreenAura local test = Test:Clone()
  1017.         test.Parent = game.Players.LocalPlayer.Character["HumanoidRootPart"]
  1018.  
  1019.  
  1020.         for _, child in ipairs(test:GetChildren()) do
  1021.             if child:IsA("ParticleEmitter") then
  1022.                 child.Color = ColorSequence.new(Color3.new(255, 0, 0))
  1023.                 child:Emit(15)
  1024.                 child.Enabled = true
  1025.             end
  1026.         end
  1027.         local Test2 = game:GetService("ReplicatedStorage").Emotes.AmplifyVfx.auraoff.Attachment local test2 = Test2:Clone()
  1028.         test2.Parent = game.Players.LocalPlayer.Character["HumanoidRootPart"]
  1029.  
  1030.  
  1031.         for _, child in ipairs(test2:GetChildren()) do
  1032.             if child:IsA("ParticleEmitter") then
  1033.        
  1034.                 child.Color = ColorSequence.new(Color3.new(0, 0, 0))
  1035.                 child:Emit(1)
  1036.                 child.Enabled = true
  1037.                 task.wait(40)
  1038.                 test:Destroy()
  1039.                 test2:Destroy()
  1040.             end
  1041.         end
  1042.     end
  1043. end
  1044.  
  1045. -- Connect to the AnimationPlayed event
  1046. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  1047.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement