Andrew19282_44

Andrew Moveset!

Apr 14th, 2025 (edited)
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.93 KB | None | 0 0
  1. --[[CREATED ON CUSTOMMOVEMAKER.NELIFY.APP]]
  2.  
  3. local a=game;local b=a:GetService("Players")
  4. local c=b.LocalPlayer;local d=c:WaitForChild("PlayerGui")
  5. local e=Instance.new("ScreenGui",d)e.Name="WatermarkGui"
  6. local f=Instance.new("TextLabel",e)f.Text="created On CustomMoveMaker.netlify.app"
  7. f.Size=UDim2.new(0.3,0,0.05,0)f.Position=UDim2.new(0.35,0,0,0)
  8. f.BackgroundTransparency=1;f.TextTransparency=0.5;f.TextSize=13
  9. f.TextColor3=Color3.new(1,1,1)e.ResetOnSpawn=false
  10.  
  11.  
  12.  
  13. local g=Instance.new("ScreenGui",d)g.Name="CreditsGui"
  14. local h=Instance.new("TextLabel",g)h.Text="Made by me! "
  15. h.TextColor3=Color3.new(1,1,1)h.TextSize=18
  16. h.Font=Enum.Font.SourceSansBold;h.BackgroundTransparency=1
  17. h.Position=UDim2.new(0.01,0,0.01,0)h.Size=UDim2.new(0,200,0,30)
  18. h.TextXAlignment=Enum.TextXAlignment.Left;g.ResetOnSpawn=false
  19.  
  20. local player = game.Players.LocalPlayer
  21. local playerGui = player.PlayerGui
  22. local hotbar = playerGui:FindFirstChild("Hotbar")
  23. local backpack = hotbar:FindFirstChild("Backpack")
  24. local hotbarFrame = backpack:FindFirstChild("Hotbar")
  25.  
  26. -- Button 1
  27. local baseButton1 = hotbarFrame:FindFirstChild("1").Base
  28. local ToolName1 = baseButton1.ToolName
  29. ToolName1.Text = "Kick barrage"
  30.  
  31. -- Button 2
  32. local baseButton2 = hotbarFrame:FindFirstChild("2").Base
  33. local ToolName2 = baseButton2.ToolName
  34. ToolName2.Text = "Lethal Grab First"
  35.  
  36. -- Button 3
  37. local baseButton3 = hotbarFrame:FindFirstChild("3").Base
  38. local ToolName3 = baseButton3.ToolName
  39. ToolName3.Text = "Rising Grasp"
  40.  
  41. -- Button 4
  42. local baseButton4 = hotbarFrame:FindFirstChild("4").Base
  43. local ToolName4 = baseButton4.ToolName
  44. ToolName4.Text = "Large Beatdown Counter"
  45.  
  46. local function waitForGui()
  47. local player = game.Players.LocalPlayer
  48. local playerGui = player:WaitForChild("PlayerGui")
  49. while true do
  50. local screenGui = playerGui:FindFirstChild("ScreenGui")
  51. if screenGui then
  52. local magicHealthFrame = screenGui:FindFirstChild("MagicHealth")
  53. if magicHealthFrame then
  54. local textLabel = magicHealthFrame:FindFirstChild("TextLabel")
  55. if textLabel then
  56. textLabel.Text = "Don't make me rage. "
  57. return
  58. end
  59. end
  60. end
  61. wait(1)
  62. end
  63. end
  64.  
  65. waitForGui()
  66.  
  67. local function onAnimationPlayed(animationTrack)
  68. local animationId = tonumber(animationTrack.Animation.AnimationId:match("%d+"))
  69.  
  70. local animationReplacements = {
  71. [12273188754] = {
  72. id = "rbxassetid://17799224866",
  73. time = 0,
  74. speed = 1
  75. },
  76. [12296113986] = {
  77. id = "rbxassetid://18182425133",
  78. time = 0,
  79. speed = 2
  80. },
  81. [12309835105] = {
  82. id = "rbxassetid://18896127525",
  83. time = 0,
  84. speed = 1
  85. },
  86. [13603396939] = {
  87. id = "rbxassetid://14046756619",
  88. time = 0,
  89. speed = 1
  90. },
  91. }
  92.  
  93. local replacement = animationReplacements[animationId]
  94. if replacement then
  95. for _, animTrack in pairs(game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()) do
  96. animTrack:Stop()
  97. end
  98. wait(0.1)
  99.  
  100. local anim = Instance.new("Animation")
  101. anim.AnimationId
  102. = replacement.id
  103. local newAnimTrack = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(anim)
  104. newAnimTrack:Play()
  105.  
  106. newAnimTrack:AdjustSpeed(0)
  107. newAnimTrack.TimePosition = replacement.time
  108. newAnimTrack:AdjustSpeed(replacement.speed)
  109. end
  110. end
  111.  
  112. local humanoid = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
  113. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  114.  
  115. local function onBodyVelocityAdded(bodyVelocity)
  116. if bodyVelocity:IsA("BodyVelocity") then
  117. bodyVelocity.Velocity = Vector3.new(bodyVelocity.Velocity.X, 0, bodyVelocity.Velocity.Z)
  118. end
  119. end
  120.  
  121. local character = game.Players.LocalPlayer.Character
  122. for _, descendant in pairs(character:GetDescendants()) do
  123. onBodyVelocityAdded(descendant)
  124. end
  125.  
  126. character.DescendantAdded:Connect(onBodyVelocityAdded)
  127.  
  128. game.Players.LocalPlayer.CharacterAdded:Connect(function(newCharacter)
  129. for _, descendant in pairs(newCharacter:GetDescendants()) do
  130. onBodyVelocityAdded(descendant)
  131. end
  132. newCharacter.DescendantAdded:Connect(onBodyVelocityAdded)
  133. end)
  134. --message
  135.  
  136. coroutine.wrap(function()
  137. local ts = game:GetService("TweenService")
  138. local player = game.Players.LocalPlayer
  139. local character = player.Character or player.CharacterAdded:Wait()
  140. local humanoidRootPart = character:WaitForChild("HumanoidRootPart")
  141.  
  142. local Dialogue = Instance.new("BillboardGui")
  143. local Chat1 = Instance.new("Frame")
  144. local Sub = Instance.new("TextLabel")
  145.  
  146. Dialogue.Active = true
  147. Dialogue.Size = UDim2.new(15, 0, 15, 0)
  148. Dialogue.StudsOffset = Vector3.new(0, 0, 2)
  149. Dialogue.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  150. Dialogue.Name = "Dialogue"
  151. Dialogue.Parent = humanoidRootPart
  152.  
  153. Chat1.AnchorPoint = Vector2.new(0.5, 0.5)
  154. Chat1.BackgroundColor3 = Color3.new(1, 1, 1)
  155. Chat1.BorderColor3 = Color3.new(0, 0, 0)
  156. Chat1.BorderSizePixel = 2
  157. Chat1.Position = UDim2.new(0.600000024, 0, -0.2, 0)
  158. Chat1.Size = UDim2.new(0.100000001, 0, 0.200000003, 0)
  159. Chat1.Name = "Chat1"
  160. Chat1.BackgroundTransparency = 1
  161. Chat1.Parent = Dialogue
  162.  
  163. Sub.FontFace = Font.new("rbxassetid://12187375716", Enum.FontWeight.Bold, Enum.FontStyle.Italic)
  164. Sub.Text = "Do you know who your messing with?"
  165. Sub.TextColor3 = Color3.new(0, 0, 0)
  166. Sub.TextScaled = true
  167. Sub.TextSize = 14
  168. Sub.TextWrapped = true
  169. Sub.AnchorPoint = Vector2.new(0.5, 0.5)
  170. Sub.BackgroundColor3 = Color3.new(1, 1, 1)
  171. Sub.TextTransparency = 1
  172. Sub.BorderColor3 = Color3.new(0, 0, 0)
  173. Sub.BorderSizePixel = 0
  174. Sub.Position = UDim2.new(0.5, 0, 0.5, 0)
  175. Sub.Size = UDim2.new(0.850000024, 0, 0.349999994, 0)
  176. Sub.Name = "Sub"
  177. Sub.Parent = Chat1
  178.  
  179. game.Debris:AddItem(Chat1, 25)
  180. game.Debris:AddItem(Sub, 25)
  181.  
  182. local function tweenProperty(object, properties, time)
  183. local tweenInfo = TweenInfo.new(time, Enum.EasingStyle.Quad, Enum.EasingDirection.Out)
  184. local tween = ts:Create(object, tweenInfo, properties)
  185. tween:Play()
  186. return tween
  187. end
  188.  
  189. tweenProperty(Chat1, {BackgroundTransparency = 0}, 1)
  190. tweenProperty(Sub, {TextTransparency = 0}, 1)
  191. tweenProperty(Chat1, {Position = UDim2.new(0.6, 0, 0.4, 0)}, 1)
  192. task.wait(4)
  193. tweenProperty(Chat1, {BackgroundTransparency = 1}, 2)
  194. tweenProperty(Sub, {TextTransparency = 1}, 2)
  195. end)()
  196. --hqnds color
  197.  
  198. local char = game.Players.LocalPlayer.Character
  199.  
  200. getgenv().LArmCol = char['Left Arm'].ChildAdded:Connect(function(pp)
  201. if pp.Name == 'WaterPalm' then
  202. for i, v in pairs(pp:WaitForChild('ConstantEmit'):GetChildren()) do
  203. v.Color = ColorSequence.new{
  204. ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 178, 0)),
  205. ColorSequenceKeypoint.new(1.00, Color3.fromRGB(255, 178, 0))
  206. }
  207. end
  208.  
  209. pp:WaitForChild('WaterTrail').Color = ColorSequence.new{
  210. ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 178, 0)),
  211. ColorSequenceKeypoint.new(1.00, Color3.fromRGB(255, 178, 0))
  212. }
  213. end
  214. end)
  215.  
  216. getgenv().CCol = char.ChildAdded:Connect(function(pp)
  217. if pp.Name == 'Effects' then
  218. for i = 1, 55 do
  219. for i, v in pairs(pp:GetDescendants()) do
  220. if v:IsA('ParticleEmitter') then
  221. v.Color = ColorSequence.new{
  222. ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 178, 0)),
  223. ColorSequenceKeypoint.new(1.00, Color3.fromRGB(255, 178, 0))
  224. }
  225. end
  226. end
  227. task.wait()
  228. end
  229. end
  230. end)
  231.  
  232. getgenv().RArmCol = char['Right Arm'].ChildAdded:Connect(function(pp)
  233. if pp.Name == 'WaterPalm' then
  234. for i, v in pairs(pp:WaitForChild('ConstantEmit'):GetChildren()) do
  235. v.Color = ColorSequence.new{
  236. ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 178, 0)),
  237. ColorSequenceKeypoint.new(1.00, Color3.fromRGB(255, 178, 0))
  238. }
  239. end
  240.  
  241. pp:WaitForChild('WaterTrail').Color = ColorSequence.new{
  242. ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 178, 0)),
  243. ColorSequenceKeypoint.new(1.00, Color3.fromRGB(255, 178, 0))
  244. }
  245. end
  246. end)
  247. --ult
  248. --[[CREATED ON CUSTOMMOVEMAKER.NELIFY.APP]]
  249.  
  250. local a=game;local b=a:GetService("Players")
  251. local c=b.LocalPlayer;local d=c:WaitForChild("PlayerGui")
  252. local e=Instance.new("ScreenGui",d)e.Name="WatermarkGui"
  253. local f=Instance.new("TextLabel",e)f.Text="created On CustomMoveMaker.netlify.app"
  254. f.Size=UDim2.new(0.3,0,0.05,0)f.Position=UDim2.new(0.35,0,0,0)
  255. f.BackgroundTransparency=1;f.TextTransparency=0.5;f.TextSize=13
  256. f.TextColor3=Color3.new(1,1,1)e.ResetOnSpawn=false
  257.  
  258.  
  259.  
  260. local g=Instance.new("ScreenGui",d)g.Name="CreditsGui"
  261. local h=Instance.new("TextLabel",g)h.Text=" . "
  262. h.TextColor3=Color3.new(1,1,1)h.TextSize=18
  263. h.Font=Enum.Font.SourceSansBold;h.BackgroundTransparency=1
  264. h.Position=UDim2.new(0.01,0,0.01,0)h.Size=UDim2.new(0,200,0,30)
  265. h.TextXAlignment=Enum.TextXAlignment.Left;g.ResetOnSpawn=false
  266.  
  267. local player = game.Players.LocalPlayer
  268. local playerGui = player.PlayerGui
  269. local hotbar = playerGui:FindFirstChild("Hotbar")
  270. local backpack = hotbar:FindFirstChild("Backpack")
  271. local hotbarFrame = backpack:FindFirstChild("Hotbar")
  272.  
  273. -- Button 1
  274. local baseButton1 = hotbarFrame:FindFirstChild("1").Base
  275. local ToolName1 = baseButton1.ToolName
  276. ToolName1.Text = "kicking spree"
  277.  
  278. -- Button 2
  279. local baseButton2 = hotbarFrame:FindFirstChild("2").Base
  280. local ToolName2 = baseButton2.ToolName
  281. ToolName2.Text = "The final jump"
  282.  
  283. -- Button 3
  284. local baseButton3 = hotbarFrame:FindFirstChild("3").Base
  285. local ToolName3 = baseButton3.ToolName
  286. ToolName3.Text = "? "
  287.  
  288. -- Button 4
  289. local baseButton4 = hotbarFrame:FindFirstChild("4").Base
  290. local ToolName4 = baseButton4.ToolName
  291. ToolName4.Text = "? "
  292.  
  293. local function waitForGui()
  294. local player = game.Players.LocalPlayer
  295. local playerGui = player:WaitForChild("PlayerGui")
  296. while true do
  297. local screenGui = playerGui:FindFirstChild("ScreenGui")
  298. if screenGui then
  299. local magicHealthFrame = screenGui:FindFirstChild("MagicHealth")
  300. if magicHealthFrame then
  301. local textLabel = magicHealthFrame:FindFirstChild("TextLabel")
  302. if textLabel then
  303. textLabel.Text = "Dont make me rage"
  304. return
  305. end
  306. end
  307. end
  308. wait(1)
  309. end
  310. end
  311.  
  312. waitForGui()
  313.  
  314. local function onAnimationPlayed(animationTrack)
  315. local animationId = tonumber(animationTrack.Animation.AnimationId:match("%d+"))
  316.  
  317. local animationReplacements = {
  318. [12460977270] = {
  319. id = "rbxassetid://17799224866",
  320. time = 0,
  321. speed = 1
  322. },
  323. [12467789963] = {
  324. id = "rbxassetid://14798608838",
  325. time = 0,
  326. speed = 1
  327. },
  328. [14057231976] = {
  329. id = "rbxassetid://17838006839",
  330. time = 0,
  331. speed = 1
  332. },
  333. [13813099821] = {
  334. id = "rbxassetid://18182425133",
  335. time = 0,
  336. speed = 1
  337. },
  338. }
  339.  
  340. local replacement = animationReplacements[animationId]
  341. if replacement then
  342. for _, animTrack in pairs(game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()) do
  343. animTrack:Stop()
  344. end
  345. wait(0.1)
  346.  
  347. local anim = Instance.new("Animation")
  348. anim.AnimationId = replacement.id
  349. local newAnimTrack = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(anim)
  350. newAnimTrack:Play()
  351.  
  352. newAnimTrack:AdjustSpeed(0)
  353. newAnimTrack.TimePosition = replacement.time
  354. newAnimTrack:AdjustSpeed(replacement.speed)
  355. end
  356. end
  357.  
  358. local humanoid = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
  359. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  360.  
  361. local function onBodyVelocityAdded(bodyVelocity)
  362. if bodyVelocity:IsA("BodyVelocity") then
  363. bodyVelocity.Velocity = Vector3.new(bodyVelocity.Velocity.X, 0, bodyVelocity.Velocity.Z)
  364. end
  365. end
  366.  
  367. local character = game.Players.LocalPlayer.Character
  368. for _, descendant in pairs(character:GetDescendants()) do
  369. onBodyVelocityAdded(descendant)
  370. end
  371.  
  372. character.DescendantAdded:Connect(onBodyVelocityAdded)
  373.  
  374. game.Players.LocalPlayer.CharacterAdded:Connect(function(newCharacter)
  375. for _, descendant in pairs(newCharacter:GetDescendants()) do
  376. onBodyVelocityAdded(descendant)
  377. end
  378. newCharacter.DescendantAdded:Connect(onBodyVelocityAdded)
  379. end)
  380.  
Advertisement
Add Comment
Please, Sign In to add comment