GGametypePlayer

Non-VR Script 1

Jul 26th, 2020
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. local Attachment1 = Instance.new("Attachment")
  2. Attachment1.CFrame = CFrame.new(Vector3.new(0,90,0))
  3. Attachment1.Name = "RightArmMove"
  4. local Attachment2 = Instance.new("Attachment")
  5. Attachment2.CFrame = CFrame.new(Vector3.new(0,90,0))
  6. Attachment2.Name = "LeftArmMove"
  7.  
  8. local character = script.Parent
  9.  
  10. Attachment1.Parent = character.RightArm
  11. Attachment2.Parent = character.LeftArm
  12.  
  13. if Enum.KeyCode.Right then
  14. character.RightArm.Orientation = Vector3.new(0,90,0)
  15. end
  16.  
  17. if Enum.KeyCode.Left then
  18. character.LeftArm.Orientation = Vector3.new(0,90,0)
  19. end
Advertisement
Add Comment
Please, Sign In to add comment