Andrew19282_44

My own moveset:)

Apr 1st, 2025
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 KB | Gaming | 0 0
  1. --this is made by AndrewGaming23_24 give credits to me if you put it on your video--
  2. local Players = game:GetService("Players")
  3. local player = Players.LocalPlayer
  4. local character = player.Character or player.CharacterAdded:Wait()
  5. local humanoid = character:WaitForChild("Humanoid")
  6.  
  7. local replacementAnimations = {
  8. [13376869471] = "rbxassetid://12296882427",
  9. [10466974800] = "rbxassetid://12273188754",
  10. [10471336737] = "rbxassetid://13294790250",
  11. [12510170988] = "rbxassetid://18179181663"
  12. }
  13.  
  14. local function onAnimationPlayed(animationTrack)
  15. if player.Character and humanoid then
  16. local animationId = tonumber(animationTrack.Animation.AnimationId:match("%d+"))
  17. local replacementId = replacementAnimations[animationId]
  18.  
  19. if replacementId then
  20. animationTrack:Stop()
  21.  
  22. local newAnimation = Instance.new("Animation")
  23. newAnimation.AnimationId = replacementId
  24.  
  25. local animator = humanoid:FindFirstChild("Animator")
  26. if not animator then
  27. animator = Instance.new("Animator")
  28. animator.Parent = humanoid
  29. end
  30.  
  31. local newTrack = animator:LoadAnimation(newAnimation)
  32. newTrack:Play()
  33. end
  34. end
  35. end
  36.  
  37. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  38.  
  39. player.CharacterAdded:Connect(function(newCharacter)
  40. character = newCharacter
  41. humanoid = newCharacter:WaitForChild("Humanoid")
  42.  
  43. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  44. end)
  45. --move text--
  46. local player = game.Players.LocalPlayer
  47. local playerGui = player.PlayerGui
  48. local hotbar = playerGui:FindFirstChild("Hotbar")
  49. local backpack = hotbar:FindFirstChild("Backpack")
  50. local hotbarFrame = backpack:FindFirstChild("Hotbar")
  51.  
  52. -- Button 1
  53. local baseButton1 = hotbarFrame:FindFirstChild("1").Base
  54. local ToolName1 = baseButton1.ToolName
  55. ToolName1.Text = "SLAP"
  56.  
  57. -- Button 2
  58. local baseButton2 = hotbarFrame:FindFirstChild("2").Base
  59. local ToolName2 = baseButton2.ToolName
  60. ToolName2.Text = "CONSECUTIVE FLOWING PUNCHES"
  61.  
  62. -- Button 3
  63. local baseButton3 = hotbarFrame:FindFirstChild("3").Base
  64. local ToolName3 = baseButton3.ToolName
  65. ToolName3.Text = "WHIRLWIND SHOVE"
  66.  
  67. -- Button 4
  68. local baseButton4 = hotbarFrame:FindFirstChild("4").Base
  69. local ToolName4 = baseButton4.ToolName
  70. ToolName4.Text = "FLIP KICK JUMP"
  71.  
  72. local function waitForGui()
  73. local player = game.Players.LocalPlayer
  74. local playerGui = player:WaitForChild("PlayerGui")
  75.  
  76. while true do
  77. local screenGui = playerGui:FindFirstChild("ScreenGui")
  78. if screenGui then
  79. local magicHealthFrame = screenGui:FindFirstChild("MagicHealth")
  80. if magicHealthFrame then
  81. local textLabel = magicHealthFrame:FindFirstChild("TextLabel")
  82. if textLabel then
  83. textLabel.Text = "ANDREWS MIXED UP POWERS"
  84. return
  85. end
  86. end
  87. end
  88. wait(1)
  89. end
  90. end
  91.  
  92. waitForGui()
  93.  
  94.  
Advertisement
Add Comment
Please, Sign In to add comment