Advertisement
eea

Untitled

eea
Jul 29th, 2021
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. local tool = Instance.new("Tool",owner.Character)
  2.  
  3. tool.Name = "BL"
  4.  
  5. local UserInputService = game:GetService("UserInputService")
  6.  
  7. Player = owner
  8.  
  9. Players = game:GetService("Players")
  10.  
  11. Char = owner.Character
  12.  
  13. Humanoid = Char.Humanoid
  14.  
  15. Head = Char.Head
  16.  
  17. Pos = Humanoid.TargetPoint
  18.  
  19. Look = (Pos - Head.Position).Unit
  20.  
  21. print(owner)
  22.  
  23. Char.BL.Activated:Connect(function()
  24.  
  25. local e = Instance.new("Part",workspace)
  26.  
  27. e.Size = Vector3.new(0,4,0)
  28.  
  29. e.Position = Char.HumanoidRootPart.Position + Vector3.new(0,5,0)
  30.  
  31. e.Velocity = Look*175
  32.  
  33. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement