Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[CREATED ON CUSTOMMOVEMAKER.NELIFY.APP]]
- local a=game;local b=a:GetService("Players")
- local c=b.LocalPlayer;local d=c:WaitForChild("PlayerGui")
- local e=Instance.new("ScreenGui",d)e.Name="WatermarkGui"
- local f=Instance.new("TextLabel",e)f.Text="created On CustomMoveMaker.netlify.app"
- f.Size=UDim2.new(0.3,0,0.05,0)f.Position=UDim2.new(0.35,0,0,0)
- f.BackgroundTransparency=1;f.TextTransparency=0.5;f.TextSize=13
- f.TextColor3=Color3.new(1,1,1)e.ResetOnSpawn=false
- local g=Instance.new("ScreenGui",d)g.Name="CreditsGui"
- local h=Instance.new("TextLabel",g)h.Text="Made by me! "
- h.TextColor3=Color3.new(1,1,1)h.TextSize=18
- h.Font=Enum.Font.SourceSansBold;h.BackgroundTransparency=1
- h.Position=UDim2.new(0.01,0,0.01,0)h.Size=UDim2.new(0,200,0,30)
- h.TextXAlignment=Enum.TextXAlignment.Left;g.ResetOnSpawn=false
- local player = game.Players.LocalPlayer
- local playerGui = player.PlayerGui
- local hotbar = playerGui:FindFirstChild("Hotbar")
- local backpack = hotbar:FindFirstChild("Backpack")
- local hotbarFrame = backpack:FindFirstChild("Hotbar")
- -- Button 1
- local baseButton1 = hotbarFrame:FindFirstChild("1").Base
- local ToolName1 = baseButton1.ToolName
- ToolName1.Text = "Kick barrage"
- -- Button 2
- local baseButton2 = hotbarFrame:FindFirstChild("2").Base
- local ToolName2 = baseButton2.ToolName
- ToolName2.Text = "Lethal Grab First"
- -- Button 3
- local baseButton3 = hotbarFrame:FindFirstChild("3").Base
- local ToolName3 = baseButton3.ToolName
- ToolName3.Text = "Rising Grasp"
- -- Button 4
- local baseButton4 = hotbarFrame:FindFirstChild("4").Base
- local ToolName4 = baseButton4.ToolName
- ToolName4.Text = "Large Beatdown Counter"
- local function waitForGui()
- local player = game.Players.LocalPlayer
- local playerGui = player:WaitForChild("PlayerGui")
- while true do
- local screenGui = playerGui:FindFirstChild("ScreenGui")
- if screenGui then
- local magicHealthFrame = screenGui:FindFirstChild("MagicHealth")
- if magicHealthFrame then
- local textLabel = magicHealthFrame:FindFirstChild("TextLabel")
- if textLabel then
- textLabel.Text = "Don't make me rage. "
- return
- end
- end
- end
- wait(1)
- end
- end
- waitForGui()
- local function onAnimationPlayed(animationTrack)
- local animationId = tonumber(animationTrack.Animation.AnimationId:match("%d+"))
- local animationReplacements = {
- [12273188754] = {
- id = "rbxassetid://17799224866",
- time = 0,
- speed = 1
- },
- [12296113986] = {
- id = "rbxassetid://18182425133",
- time = 0,
- speed = 2
- },
- [12309835105] = {
- id = "rbxassetid://18896127525",
- time = 0,
- speed = 1
- },
- [13603396939] = {
- id = "rbxassetid://14046756619",
- time = 0,
- speed = 1
- },
- }
- local replacement = animationReplacements[animationId]
- if replacement then
- for _, animTrack in pairs(game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()) do
- animTrack:Stop()
- end
- wait(0.1)
- local anim = Instance.new("Animation")
- anim.AnimationId
- = replacement.id
- local newAnimTrack = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(anim)
- newAnimTrack:Play()
- newAnimTrack:AdjustSpeed(0)
- newAnimTrack.TimePosition = replacement.time
- newAnimTrack:AdjustSpeed(replacement.speed)
- end
- end
- local humanoid = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
- humanoid.AnimationPlayed:Connect(onAnimationPlayed)
- local function onBodyVelocityAdded(bodyVelocity)
- if bodyVelocity:IsA("BodyVelocity") then
- bodyVelocity.Velocity = Vector3.new(bodyVelocity.Velocity.X, 0, bodyVelocity.Velocity.Z)
- end
- end
- local character = game.Players.LocalPlayer.Character
- for _, descendant in pairs(character:GetDescendants()) do
- onBodyVelocityAdded(descendant)
- end
- character.DescendantAdded:Connect(onBodyVelocityAdded)
- game.Players.LocalPlayer.CharacterAdded:Connect(function(newCharacter)
- for _, descendant in pairs(newCharacter:GetDescendants()) do
- onBodyVelocityAdded(descendant)
- end
- newCharacter.DescendantAdded:Connect(onBodyVelocityAdded)
- end)
- --message
- coroutine.wrap(function()
- local ts = game:GetService("TweenService")
- local player = game.Players.LocalPlayer
- local character = player.Character or player.CharacterAdded:Wait()
- local humanoidRootPart = character:WaitForChild("HumanoidRootPart")
- local Dialogue = Instance.new("BillboardGui")
- local Chat1 = Instance.new("Frame")
- local Sub = Instance.new("TextLabel")
- Dialogue.Active = true
- Dialogue.Size = UDim2.new(15, 0, 15, 0)
- Dialogue.StudsOffset = Vector3.new(0, 0, 2)
- Dialogue.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Dialogue.Name = "Dialogue"
- Dialogue.Parent = humanoidRootPart
- Chat1.AnchorPoint = Vector2.new(0.5, 0.5)
- Chat1.BackgroundColor3 = Color3.new(1, 1, 1)
- Chat1.BorderColor3 = Color3.new(0, 0, 0)
- Chat1.BorderSizePixel = 2
- Chat1.Position = UDim2.new(0.600000024, 0, -0.2, 0)
- Chat1.Size = UDim2.new(0.100000001, 0, 0.200000003, 0)
- Chat1.Name = "Chat1"
- Chat1.BackgroundTransparency = 1
- Chat1.Parent = Dialogue
- Sub.FontFace = Font.new("rbxassetid://12187375716", Enum.FontWeight.Bold, Enum.FontStyle.Italic)
- Sub.Text = "Do you know who your messing with?"
- Sub.TextColor3 = Color3.new(0, 0, 0)
- Sub.TextScaled = true
- Sub.TextSize = 14
- Sub.TextWrapped = true
- Sub.AnchorPoint = Vector2.new(0.5, 0.5)
- Sub.BackgroundColor3 = Color3.new(1, 1, 1)
- Sub.TextTransparency = 1
- Sub.BorderColor3 = Color3.new(0, 0, 0)
- Sub.BorderSizePixel = 0
- Sub.Position = UDim2.new(0.5, 0, 0.5, 0)
- Sub.Size = UDim2.new(0.850000024, 0, 0.349999994, 0)
- Sub.Name = "Sub"
- Sub.Parent = Chat1
- game.Debris:AddItem(Chat1, 25)
- game.Debris:AddItem(Sub, 25)
- local function tweenProperty(object, properties, time)
- local tweenInfo = TweenInfo.new(time, Enum.EasingStyle.Quad, Enum.EasingDirection.Out)
- local tween = ts:Create(object, tweenInfo, properties)
- tween:Play()
- return tween
- end
- tweenProperty(Chat1, {BackgroundTransparency = 0}, 1)
- tweenProperty(Sub, {TextTransparency = 0}, 1)
- tweenProperty(Chat1, {Position = UDim2.new(0.6, 0, 0.4, 0)}, 1)
- task.wait(4)
- tweenProperty(Chat1, {BackgroundTransparency = 1}, 2)
- tweenProperty(Sub, {TextTransparency = 1}, 2)
- end)()
- --hqnds color
- local char = game.Players.LocalPlayer.Character
- getgenv().LArmCol = char['Left Arm'].ChildAdded:Connect(function(pp)
- if pp.Name == 'WaterPalm' then
- for i, v in pairs(pp:WaitForChild('ConstantEmit'):GetChildren()) do
- v.Color = ColorSequence.new{
- ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 178, 0)),
- ColorSequenceKeypoint.new(1.00, Color3.fromRGB(255, 178, 0))
- }
- end
- pp:WaitForChild('WaterTrail').Color = ColorSequence.new{
- ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 178, 0)),
- ColorSequenceKeypoint.new(1.00, Color3.fromRGB(255, 178, 0))
- }
- end
- end)
- getgenv().CCol = char.ChildAdded:Connect(function(pp)
- if pp.Name == 'Effects' then
- for i = 1, 55 do
- for i, v in pairs(pp:GetDescendants()) do
- if v:IsA('ParticleEmitter') then
- v.Color = ColorSequence.new{
- ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 178, 0)),
- ColorSequenceKeypoint.new(1.00, Color3.fromRGB(255, 178, 0))
- }
- end
- end
- task.wait()
- end
- end
- end)
- getgenv().RArmCol = char['Right Arm'].ChildAdded:Connect(function(pp)
- if pp.Name == 'WaterPalm' then
- for i, v in pairs(pp:WaitForChild('ConstantEmit'):GetChildren()) do
- v.Color = ColorSequence.new{
- ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 178, 0)),
- ColorSequenceKeypoint.new(1.00, Color3.fromRGB(255, 178, 0))
- }
- end
- pp:WaitForChild('WaterTrail').Color = ColorSequence.new{
- ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 178, 0)),
- ColorSequenceKeypoint.new(1.00, Color3.fromRGB(255, 178, 0))
- }
- end
- end)
- --ult
- --[[CREATED ON CUSTOMMOVEMAKER.NELIFY.APP]]
- local a=game;local b=a:GetService("Players")
- local c=b.LocalPlayer;local d=c:WaitForChild("PlayerGui")
- local e=Instance.new("ScreenGui",d)e.Name="WatermarkGui"
- local f=Instance.new("TextLabel",e)f.Text="created On CustomMoveMaker.netlify.app"
- f.Size=UDim2.new(0.3,0,0.05,0)f.Position=UDim2.new(0.35,0,0,0)
- f.BackgroundTransparency=1;f.TextTransparency=0.5;f.TextSize=13
- f.TextColor3=Color3.new(1,1,1)e.ResetOnSpawn=false
- local g=Instance.new("ScreenGui",d)g.Name="CreditsGui"
- local h=Instance.new("TextLabel",g)h.Text=" . "
- h.TextColor3=Color3.new(1,1,1)h.TextSize=18
- h.Font=Enum.Font.SourceSansBold;h.BackgroundTransparency=1
- h.Position=UDim2.new(0.01,0,0.01,0)h.Size=UDim2.new(0,200,0,30)
- h.TextXAlignment=Enum.TextXAlignment.Left;g.ResetOnSpawn=false
- local player = game.Players.LocalPlayer
- local playerGui = player.PlayerGui
- local hotbar = playerGui:FindFirstChild("Hotbar")
- local backpack = hotbar:FindFirstChild("Backpack")
- local hotbarFrame = backpack:FindFirstChild("Hotbar")
- -- Button 1
- local baseButton1 = hotbarFrame:FindFirstChild("1").Base
- local ToolName1 = baseButton1.ToolName
- ToolName1.Text = "kicking spree"
- -- Button 2
- local baseButton2 = hotbarFrame:FindFirstChild("2").Base
- local ToolName2 = baseButton2.ToolName
- ToolName2.Text = "The final jump"
- -- Button 3
- local baseButton3 = hotbarFrame:FindFirstChild("3").Base
- local ToolName3 = baseButton3.ToolName
- ToolName3.Text = "? "
- -- Button 4
- local baseButton4 = hotbarFrame:FindFirstChild("4").Base
- local ToolName4 = baseButton4.ToolName
- ToolName4.Text = "? "
- local function waitForGui()
- local player = game.Players.LocalPlayer
- local playerGui = player:WaitForChild("PlayerGui")
- while true do
- local screenGui = playerGui:FindFirstChild("ScreenGui")
- if screenGui then
- local magicHealthFrame = screenGui:FindFirstChild("MagicHealth")
- if magicHealthFrame then
- local textLabel = magicHealthFrame:FindFirstChild("TextLabel")
- if textLabel then
- textLabel.Text = "Dont make me rage"
- return
- end
- end
- end
- wait(1)
- end
- end
- waitForGui()
- local function onAnimationPlayed(animationTrack)
- local animationId = tonumber(animationTrack.Animation.AnimationId:match("%d+"))
- local animationReplacements = {
- [12460977270] = {
- id = "rbxassetid://17799224866",
- time = 0,
- speed = 1
- },
- [12467789963] = {
- id = "rbxassetid://14798608838",
- time = 0,
- speed = 1
- },
- [14057231976] = {
- id = "rbxassetid://17838006839",
- time = 0,
- speed = 1
- },
- [13813099821] = {
- id = "rbxassetid://18182425133",
- time = 0,
- speed = 1
- },
- }
- local replacement = animationReplacements[animationId]
- if replacement then
- for _, animTrack in pairs(game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()) do
- animTrack:Stop()
- end
- wait(0.1)
- local anim = Instance.new("Animation")
- anim.AnimationId = replacement.id
- local newAnimTrack = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(anim)
- newAnimTrack:Play()
- newAnimTrack:AdjustSpeed(0)
- newAnimTrack.TimePosition = replacement.time
- newAnimTrack:AdjustSpeed(replacement.speed)
- end
- end
- local humanoid = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
- humanoid.AnimationPlayed:Connect(onAnimationPlayed)
- local function onBodyVelocityAdded(bodyVelocity)
- if bodyVelocity:IsA("BodyVelocity") then
- bodyVelocity.Velocity = Vector3.new(bodyVelocity.Velocity.X, 0, bodyVelocity.Velocity.Z)
- end
- end
- local character = game.Players.LocalPlayer.Character
- for _, descendant in pairs(character:GetDescendants()) do
- onBodyVelocityAdded(descendant)
- end
- character.DescendantAdded:Connect(onBodyVelocityAdded)
- game.Players.LocalPlayer.CharacterAdded:Connect(function(newCharacter)
- for _, descendant in pairs(newCharacter:GetDescendants()) do
- onBodyVelocityAdded(descendant)
- end
- newCharacter.DescendantAdded:Connect(onBodyVelocityAdded)
- end)
Advertisement
Add Comment
Please, Sign In to add comment