Advertisement
Diep8328Paster

Untitled

May 7th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. local on = Instance.new("Tool")
  2. local on2 = Instance.new("Part",on)
  3. local p = game.Players.LocalPlayer
  4. local arm = p.Character:WaitForChild("Right Arm",0.1)
  5. on.Name = "Midde finger"
  6. on.Parent = p.Backpack
  7. on2.Name = "Handle"
  8. on2.TopSurface = "Smooth"
  9. on2.BottomSurface = "Smooth"
  10. on2.Material = "SmoothPlastic"
  11. on2.BrickColor = BrickColor.new("White")
  12. on2.Size = Vector3.new(0.24, 0.31, 0.62)
  13. on2.Transparency = 1
  14. local on23 = Instance.new("Part",on)
  15. on23.Name = "what the f***"
  16. on23.TopSurface = "Smooth"
  17. on23.BottomSurface = "Smooth"
  18. on23.Material = "SmoothPlastic"
  19. on23.BrickColor = BrickColor.new("White")
  20. on23.Size = Vector3.new(0.24, 0.31, 0.62)
  21. on23.Position = Vector3.new(0,-0.31,0)
  22. local wield = Instance.new("WeldConstraint",on23)
  23. wield.Part0 = on23
  24. wield.Part1 = on2
  25. on.Equipped:connect(function()
  26. arm.Orientation = Vector3.new(180,180,0)
  27. arm.Position = arm.Position + Vector3.new(0,1,0)
  28. local wield2 = Instance.new("WeldConstraint",arm)
  29. wield2.Part0 = arm
  30. wield2.Part1 = p.Character.Torso
  31. end)
  32. on.Unequipped:connect(function()
  33. arm.Orientation = Vector3.new(-180,-180,0)
  34. arm.Position = arm.Position + Vector3.new(0,-1,0)
  35. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement