Advertisement
UnknownCoolGuy

Suryui Ult Anim equip saitama

Feb 19th, 2025 (edited)
2,500
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.45 KB | None | 0 0
  1. --[[ ONLY FOR Suryui ULTIMATE MOVES ]]
  2.  
  3. --[[ ultMove 1]]
  4.  
  5. local animationId = 78521642007560 --[[The Fricking Id That Will Get The Track]]
  6.  
  7. local player = game.Players.LocalPlayer
  8. local character = player.Character or player.CharacterAdded:Wait()
  9. local humanoid = character:WaitForChild("Humanoid")
  10.  
  11. local function onAnimationPlayed(animationTrack)
  12. if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  13. -- Animation and sound effects
  14. local Sound = Instance.new("Sound")
  15. Sound.Parent = character.Torso
  16. Sound.SoundId = getcustomasset('Stoic.MP3')
  17. Sound.Looped = false
  18. Sound.Volume = 5
  19. Sound:Play()
  20.  
  21. local anim = Instance.new("Animation")
  22. anim.AnimationId = "rbxassetid://18897119503"
  23. local playAnim = humanoid:LoadAnimation(anim)
  24. playAnim:Play()
  25. playAnim:AdjustSpeed(0.3)
  26. wait(0.3)
  27. playAnim:AdjustSpeed(1)
  28.  
  29. -- Particle effects
  30. local function createParticleEffect(effectName, parent)
  31. local effect = game.ReplicatedStorage.Resources.KJEffects[effectName]:Clone()
  32. effect.Parent = parent
  33. for _, child in ipairs(effect:GetChildren()) do
  34. if child:IsA("ParticleEmitter") then
  35. child:Emit(3)
  36. end
  37. end
  38. end
  39.  
  40. createParticleEffect("launchup.launchything", character.Torso)
  41. wait(0.1)
  42. createParticleEffect("stoicbombspeedlines.POINTOLIGHTO", character.Torso)
  43. wait(1.4)
  44. createParticleEffect("stoic bomb boom entrance.Attachment", character.Torso)
  45. wait(1.6)
  46. createParticleEffect("stoicBomb.pre.Part.Attachment", character.Torso)
  47. wait(0.1)
  48. createParticleEffect("stoicBomb.Main.Part.Attachment", character.Torso)
  49. wait(0.1)
  50.  
  51. -- Final effects
  52. createParticleEffect("stoic bomb boom entrance.THEACTUALBOOM", character.Torso)
  53. createParticleEffect("stoic bomb boom entrance.smok", character.Torso)
  54. createParticleEffect("stoicbombspeedlines.Attachment", character.Torso)
  55. end
  56. end
  57.  
  58. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  59.  
  60. --[[END OF ULT MOVE 1 ANIM]]
  61.  
  62. --[[Ult Move 2]]
  63.  
  64. local animationId2 = 11365563255 --[[The Fricking Id That Will Get The Track]]
  65.  
  66. local function onAnimationPlayed2(animationTrack)
  67. if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId2 then
  68. -- Sound effects
  69. local Sound = Instance.new("Sound")
  70. Sound.Parent = character.Torso
  71. Sound.SoundId = getcustomasset('FiveSeasons.mp3')
  72. Sound.Looped = false
  73. Sound.Volume = 5
  74. Sound:Play()
  75.  
  76. animationTrack:Stop()
  77.  
  78. local anim = Instance.new("Animation")
  79. anim.AnimationId = "rbxassetid://18897119503"
  80. local playAnim = humanoid:LoadAnimation(anim)
  81. playAnim:Play()
  82. wait(0.5)
  83.  
  84. local soundeffect = Instance.new("Sound")
  85. soundeffect.SoundId = "rbxassetid://18432748928"
  86. soundeffect.Parent = character.Torso
  87. soundeffect:Play()
  88. soundeffect.Volume = 1
  89.  
  90. -- Particle effects
  91. local function createJumpEffect(effectName, parent)
  92. local effect = game.ReplicatedStorage.Resources.FiveSeasonsFX[effectName]:Clone()
  93. effect.Parent = parent
  94. for _, child in ipairs(effect:GetChildren()) do
  95. if child:IsA("ParticleEmitter") then
  96. child:Emit(1)
  97. end
  98. end
  99. end
  100.  
  101. createJumpEffect("JumpFX.JumpFX.Attachment", character.Torso)
  102. createJumpEffect("JumpFX.BurnMark", character.Torso)
  103. createJumpEffect("JumpFX.Ground", character.Torso)
  104. createJumpEffect("JumpFX.Mark", character.Torso)
  105.  
  106. wait(2.2)
  107.  
  108. local red1 = game.ReplicatedStorage.Resources.FiveSeasonsFX["CharFX"].ArmEnabled:Clone()
  109. red1.Parent = character["Left Arm"]
  110. for _, child in ipairs(red1:GetChildren()) do
  111. if child:IsA("ParticleEmitter") then
  112. child:Emit(5)
  113. end
  114. end
  115. wait(2.8)
  116. red1:Destroy()
  117. Sound:Stop()
  118. end
  119. end
  120.  
  121. humanoid.AnimationPlayed:Connect(onAnimationPlayed2)
  122.  
  123. --[[END OF ULT MOVE 2 ANIM]]
  124.  
  125. --[[Ult Move 3]]
  126.  
  127. local animationId3 = 12983333733 --[[The Fricking Id That Will Get The Track]]
  128.  
  129. local function onAnimationPlayed3(animationTrack)
  130. if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId3 then
  131. local AnimAnim = Instance.new("Animation")
  132. AnimAnim.AnimationId = "rbxassetid://18897118507"
  133. local Anim = humanoid:LoadAnimation(AnimAnim)
  134.  
  135. local startTime = 1
  136. Anim:Play()
  137. Anim:AdjustSpeed(0)
  138. Anim.TimePosition = startTime
  139. Anim:AdjustSpeed(1)
  140.  
  141. -- Dialogue effect
  142. local Text = "One Inch Killer"
  143. local v22808 = require(game.ReplicatedStorage.Resources.UFW.TekrinnDialogue)
  144. local v22811 = {
  145. {
  146. Text = Text,
  147. Color = ColorSequence.new({
  148. ColorSequenceKeypoint.new(0, Color3.fromRGB(0, 0, 0)),
  149. ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 17, 17))
  150. }),
  151. TextStrokeColor = Color3.new(0, 0, 0),
  152. Bold = true,
  153. Italic = true,
  154. Shake = {
  155. Enabled = true,
  156. Intensity = 5,
  157. Lifetime = 9
  158. },
  159. TypeSpeed = 0.3
  160. }
  161. }
  162. v22808.Speak(player.Character, v22811)
  163. wait(8)
  164. Anim:Stop()
  165. end
  166. end
  167.  
  168. humanoid.AnimationPlayed:Connect(onAnimationPlayed3)
  169.  
  170. --[[END OF ULT MOVE 3 ANIM]]
  171.  
  172. --[[Ult Move 4]]
  173.  
  174. local animationId4 = 13927612951 --[[The Fricking Id That Will Get The Track]]
  175.  
  176. local function onAnimationPlayed4(animationTrack)
  177. if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId4 then
  178. local AnimAnim = Instance.new("Animation")
  179. AnimAnim.AnimationId = "rbxassetid://17354976067"
  180. local Anim = humanoid:LoadAnimation(AnimAnim)
  181.  
  182. local startTime = 0
  183. Anim:Play()
  184. Anim:AdjustSpeed(0)
  185. Anim.TimePosition = startTime
  186. Anim:AdjustSpeed(0.7)
  187. animTrack:Stop()
  188. end
  189. end
  190.  
  191. humanoid.AnimationPlayed:Connect(onAnimationPlayed4)
  192.  
  193. --[[END OF ULT MOVE 4 ANIM]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement