TheUnknownDiscord

steal every post

Aug 30th, 2021 (edited)
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Tool = Instance.new("Tool")
  2. Tool.Name = "Sword"
  3. Knife = Instance.new("Part")
  4. Knife.Name = "Handle"
  5. Knife.Parent = Tool
  6. Tool.Parent = workspace.Lucas_YT111
  7. Knife.Size = Vector3.new(4, 4, 1)
  8. Knife.Massless = true
  9. Knife.CanCollide = true
  10. myhum = owner.Character.Humanoid
  11. local stab = Instance.new("Sound", owner.character.Head)
  12. stab.SoundId = "rbxassetid://663369157"
  13. stab.Volume = 1
  14. stab.Looped = true
  15. islunging = false
  16.  
  17. Tool.Activated:connect(function()
  18. islunging = true
  19. local Anim = Instance.new("StringValue")
  20. Anim.Name = "toolanim"
  21. Anim.Value = "Lunge"
  22. Anim.Parent = Tool
  23. wait(0.25)
  24. islunging = false
  25. wait(0.40)
  26. end)
  27.  
  28. function thinghere(plr,action,part)
  29. if islunging then
  30. if part.Name ~= "Base" then
  31. if part.Name ~= "Lucas_YT111" then
  32. Tool = Instance.new("Tool")
  33. part.Name = "Handle"
  34. part.Parent = Tool
  35. Tool.Parent = owner.Character
  36. part.Anchored = false
  37. end
  38. end
  39. end
  40. end
  41.  
  42.  
  43. local E = Instance.new("RemoteEvent",NLS([[local E = script:FindFirstChildWhichIsA("RemoteEvent")
  44. local Mouse = owner:GetMouse()
  45. function ButtonDown()
  46. if Mouse.Target ~= nil then
  47. E:FireServer("Down",Mouse.Target)
  48. end
  49. end
  50. Mouse.Button1Down:Connect(ButtonDown)
  51. ]],owner.PlayerGui))
  52. E.OnServerEvent:Connect(thinghere)
  53.  
  54. local decal2 = Instance.new("Decal", Knife)
  55. decal2.Transparency = 0
  56. decal2.Face = Enum.NormalId.Front
  57. local happyFace = "http://www.roblox.com/asset/?id=7370272015"
  58. decal2.Texture = happyFace
  59.  
  60. Tool.Unequipped:connect(function()
  61. stab:Stop()
  62. end)
  63. Tool.Equipped:connect(function()
  64. stab:Play()
  65. end)
Add Comment
Please, Sign In to add comment