Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game.Players.LocalPlayer
- local mouse = player:GetMouse()
- local animation = Instance.new("Animation")
- animation.Parent = game.Workspace
- animation.AnimationId = "rbxassetid://2220946233"
- local tool = Instance.new("Tool")
- tool.Parent = game.StarterPack
- tool.Name = "Jutsu"
- local hum = game.Players.LocalPlayer.Character.Humanoid
- local pa = Instance.new("Part")
- pa.Name = "Handle"
- pa.Transparency = 1
- pa.CanCollide = false
- pa.Parent = tool
- local sound = Instance.new("Sound")
- sound.Parent = game.Workspace
- sound.Volume = 1
- sound.SoundId = "rbxassetid://147722098"
- enabled = true
- tool.Equipped:connect(function()
- tool.Activated:connect(function()
- sound:Play()
- if enabled == false then return end
- enabled = false
- local animaitonTrack = player.Character.Humanoid:LoadAnimation(animation)
- animaitonTrack:Play()
- local part = Instance.new("Part")
- part.Parent = game.Workspace
- part.Position = player.Character.HumanoidRootPart.Position
- part.CanCollide = false
- part.Size = Vector3.new(15,15,15)
- part.Material = ("Neon")
- part.Transparency = 0.6
- part.BrickColor = BrickColor.new("Black")
- part.Anchored = true
- part.Touched:connect(function(hit)
- local ehum = hit.Parent:findFirstChild("Humanoid") or hit.Parent.Parent:findFirstChild("Humanoid")
- if ehum and ehum ~= hum then
- ehum:TakeDamage(50)
- end
- end)
- wait(1)
- part:Destroy()
- end)
- end)
- wait()
- enabled = true
- tool.Activated:connect(function()
- tool.Name = "No Charkra"
- wait(1)
- tool.Name = "Jutsu"
- end)
Advertisement
Add Comment
Please, Sign In to add comment