Advertisement
Donny526

Roblox Void Script Builder Endoskeleton Script

Jul 2nd, 2018
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. --Made by Donny526
  2. --Donny526#1886
  3.  
  4. wait()
  5.  
  6. local plr = game.Players.LocalPlayer
  7. local chr = plr.Character
  8. local hmn = chr:WaitForChild("Humanoid")
  9. local lrm = chr:WaitForChild("Left Arm")
  10. local rrm = chr:WaitForChild("Right Arm")
  11. local llg = chr:WaitForChild("Left Leg")
  12. local rlg = chr:WaitForChild("Right Leg")
  13. local hed = chr:WaitForChild("Head")
  14. local trs = chr:WaitForChild("Torso")
  15.  
  16. wait()
  17.  
  18. print(plr.Name.." is using the Player Endoskeleton script by Donny526!")
  19.  
  20. wait()
  21.  
  22. lrm.Transparency = 0.5
  23. rrm.Transparency = 0.5
  24. llg.Transparency = 0.5
  25. rlg.Transparency = 0.5
  26. trs.Transparency = 0.5
  27. hed.Transparency = 0.5
  28.  
  29. wait()
  30.  
  31. local trshed = Instance.new("Attachment",trs)
  32. local trslrm = Instance.new("Attachment",trs)
  33. local trsrrm = Instance.new("Attachment",trs)
  34. local trsllg = Instance.new("Attachment",trs)
  35. local trsrlg = Instance.new("Attachment",trs)
  36.  
  37. wait()
  38.  
  39. local hedattach = Instance.new("Attachment",hed)
  40. local lrmattach = Instance.new("Attachment",lrm)
  41. local rrmattach = Instance.new("Attachment",rrm)
  42. local llgattach = Instance.new("Attachment",llg)
  43. local rlgattach = Instance.new("Attachment",rlg)
  44.  
  45. wait()
  46.  
  47. local rodhed = Instance.new("RodConstraint",trs)
  48. rodhed.Color = BrickColor.new("Lime green")
  49. rodhed.Thickness = 0.1
  50. rodhed.Visible = true
  51. rodhed.Attachment0 = trshed
  52. rodhed.Attachment1 = hedattach
  53.  
  54. wait()
  55.  
  56. local rodlrm = Instance.new("RodConstraint",trs)
  57. rodlrm.Color = BrickColor.new("Lime green")
  58. rodlrm.Thickness = 0.1
  59. rodlrm.Visible = true
  60. rodlrm.Attachment0 = trslrm
  61. rodlrm.Attachment1 = lrmattach
  62.  
  63. wait()
  64.  
  65. local rodrrm = Instance.new("RodConstraint",trs)
  66. rodrrm.Color = BrickColor.new("Lime green")
  67. rodrrm.Thickness = 0.1
  68. rodrrm.Visible = true
  69. rodrrm.Attachment0 = trsrrm
  70. rodrrm.Attachment1 = rrmattach
  71.  
  72. wait()
  73.  
  74. local rodllg = Instance.new("RodConstraint",trs)
  75. rodllg.Color = BrickColor.new("Lime green")
  76. rodllg.Thickness = 0.1
  77. rodllg.Visible = true
  78. rodllg.Attachment0 = trsllg
  79. rodllg.Attachment1 = llgattach
  80.  
  81. wait()
  82.  
  83. local rodrlg = Instance.new("RodConstraint",trs)
  84. rodrlg.Color = BrickColor.new("Lime green")
  85. rodrlg.Thickness = 0.1
  86. rodrlg.Visible = true
  87. rodrlg.Attachment0 = trsrlg
  88. rodrlg.Attachment1 = rlgattach
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement