Advertisement
sIendytubble

r15 creeper script for exploiting (FE)

May 21st, 2020
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. --creeper by sIendytubbLe on pastebin
  2. --R15
  3. --the reason i didnt use hinges instead of manualglue(what i call ragdoll joint)
  4. -- is because its alot easier then making
  5. -- attachments rather then using c0 and c1
  6. -- please credit me if you post this in v3rm or something
  7. plr = game.Players.LocalPlayer
  8. char = plr.Character
  9. leftshoulder = char.LeftUpperArm:WaitForChild("LeftShoulder")
  10. rightshoulder = char.RightUpperArm:WaitForChild("RightShoulder")
  11. righthip = char.RightUpperLeg:WaitForChild("RightHip")
  12. lefthip = char.LeftUpperLeg:WaitForChild("LeftHip")
  13. if leftshoulder then
  14. ok = Instance.new("ManualGlue",leftshoulder.Parent)
  15. ok.Part0 = char.UpperTorso
  16. ok.Part1 = leftshoulder.Parent
  17. ok.C0 = CFrame.new(-0.5,-char.UpperTorso.Size.Y,1)
  18. leftshoulder:remove()
  19. end
  20. if rightshoulder then
  21. ok = Instance.new("ManualGlue",rightshoulder.Parent)
  22. ok.Part0 = char.UpperTorso
  23. ok.Part1 = rightshoulder.Parent
  24. ok.C0 = CFrame.new(0.5,-char.UpperTorso.Size.Y,1)
  25. rightshoulder:remove()
  26. end
  27. if righthip then
  28. ok = Instance.new("ManualGlue",righthip.Parent)
  29. ok.Part0 = char.UpperTorso
  30. ok.Part1 = righthip.Parent
  31. ok.C0 = CFrame.new(-0.5,-char.UpperTorso.Size.Y,-1)
  32. righthip:remove()
  33. end
  34. if lefthip then
  35. ok = Instance.new("ManualGlue",lefthip.Parent)
  36. ok.Part0 = char.UpperTorso
  37. ok.Part1 = lefthip.Parent
  38. ok.C0 = CFrame.new(0.5,-char.UpperTorso.Size.Y,-1)
  39. lefthip:remove()
  40. end
  41. for i,v in pairs(char:GetChildren()) do
  42. if v.ClassName == "Shirt" or v.ClassName == "Pants" then
  43. v:remove()
  44. end
  45. end
  46. char.Head.Mesh:remove()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement