Advertisement
FazeWolfyBoy

Remove Arms

Mar 26th, 2022
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. game.StarterGui:SetCore("SendNotification", {
  2. Title = "Remove Arms";
  3. Text = "Arms = gone";
  4. })
  5. character = game:GetService("Players").LocalPlayer.Character
  6.  
  7. --R6 Rigs
  8. leftArm = character:FindFirstChild("Left Arm")
  9. if leftArm then leftArm:Destroy() end
  10. rightArm = character:FindFirstChild("Right Arm")
  11. if rightArm then rightArm:Destroy() end
  12.  
  13. --R15 Rigs
  14. leftUpperArm = character:FindFirstChild("LeftUpperArm")
  15. if leftUpperArm then leftUpperArm:Destroy() end
  16. leftLowerArm = character:FindFirstChild("LeftLowerArm")
  17. if leftLowerArm then leftLowerArm:Destroy() end
  18. leftFoot = character:FindFirstChild("LeftFoot")
  19. if leftFoot then leftFoot:Destroy() end
  20. rightUpperArm = character:FindFirstChild("RightUpperArm")
  21. if rightUpperArm then rightUpperArm:Destroy() end
  22. rightLowerArm = character:FindFirstChild("RightLowerArm")
  23. if rightLowerArm then rightLowerArm:Destroy() end
  24. rightFoot = character:FindFirstChild("RightFoot")
  25. if rightFoot then rightFoot:Destroy() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement