Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
406
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. local LocalPlayer = game:GetService("Players").LocalPlayer
  2. local torsoname = "Torso"
  3. if LocalPlayer.Character:FindFirstChild("Humanoid").RigType == Enum.HumanoidRigType.R15 then
  4. torsoname = "UpperTorso"
  5. end
  6. LocalPlayer.Character:FindFirstChild("Animate").toolnone.ToolNoneAnim.AnimationId = math.huge
  7. LocalPlayer.Character:FindFirstChild(torsoname).Anchored = true
  8. local tool = Instance.new("Tool", LocalPlayer.Backpack)
  9. LocalPlayer.Character:FindFirstChildOfClass("Accessory").Handle.Parent = tool
  10. tool.Handle.Massless = true
  11. tool.GripPos = Vector3.new(0, math.huge, 0)
  12. tool.Parent = LocalPlayer.Character
  13. wait()
  14. tool.Grip = CFrame.new(Vector3.new(0, 0, 0))
  15. LocalPlayer.Character:FindFirstChild(torsoname).Anchored = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement