Advertisement
CyanDeathReaper

R6 New Bloxikin Morpher Button SCRIPT

Dec 10th, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. script.Parent.Touched:connect(function(hit)
  2. local character = hit.Parent
  3. hit.Parent["Left Arm"].Size = Vector3.new(0.52, 0.624, 0.52)
  4. local joint = Instance.new("Motor6D")
  5. joint.Name = "Left Shoulder"
  6. joint.Part0 = character.Torso
  7. joint.Part1 = character["Left Arm"]
  8.  
  9. hit.Parent["Left Leg"].Size = Vector3.new(0.52, 0.78, 0.52)
  10. local joint1 = Instance.new("Motor6D")
  11. joint1.Name = "Left Hip"
  12. joint1.Part0 = character.Torso
  13. joint1.Part1 = character["Left Leg"]
  14.  
  15. hit.Parent.Torso.Size = Vector3.new(1.04, 0.832, 0.52)
  16. local joint2 = Instance.new("Motor6D")
  17. joint2.Name = "Neck"
  18. joint2.Part0 = character.Torso
  19. joint2.Part1 = character.Head
  20.  
  21. hit.Parent["Right Arm"].Size = Vector3.new(0.52, 0.624, 0.52)
  22. local joint3 = Instance.new("Motor6D")
  23. joint3.Name = "Right Shoulder"
  24. joint3.Part0 = character.Torso
  25. joint3.Part1 = character["Right Arm"]
  26.  
  27. hit.Parent["Right Leg"].Size = Vector3.new(0.52, 0.78, 0.52)
  28. local joint4 = Instance.new("Motor6D")
  29. joint4.Name = "Right Hip"
  30. joint4.Part0 = character.Torso
  31. joint4.Part1 = character["Right Leg"]
  32.  
  33.  
  34. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement