Advertisement
Guest User

script

a guest
May 22nd, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. local plr = game.Players.LocalPlayer
  2. local char = game.Workspace:WaitForChild(plr.Name)
  3. local m = plr:GetMouse()
  4. local trans = false
  5. local realdeb = false
  6. local PGui = plr:WaitForChild("PlayerGui")
  7. local chat = game:GetService"Chat"
  8. local Head = char:WaitForChild"Head"
  9. local Torso = char:WaitForChild"Torso"
  10. local HRP = char:WaitForChild"HumanoidRootPart"
  11. local RArm = char:WaitForChild"Right Arm"
  12. local LArm = char:WaitForChild"Left Arm"
  13. local RLeg = char:WaitForChild"Right Leg"
  14. local LLeg = char:WaitForChild"Left Leg"
  15. local Hum = char:WaitForChild'Humanoid'
  16. local lastspeed = Hum.WalkSpeed
  17. msgz = Instance.new("Message", PGui)
  18. msgz.Text = ""
  19. game.Debris:AddItem(msgz, 6.5)
  20. local part = Instance.new"Part"
  21. part.Name = "TransformationPart"
  22. part.FormFactor = "Custom"
  23. part.Size = Vector3.new(1,1,1)
  24. part.Material = "SmoothPlastic"
  25. part.TopSurface = "Smooth"
  26. part.BottomSurface = "Smooth"
  27. part.Anchored = true
  28. part.CanCollide = false
  29.  
  30. local Joints = {Head = Torso.Neck, Torso = HRP.RootJoint, RArm = Torso["Right Shoulder"], LArm = Torso["Left Shoulder"], RLeg = Torso["Right Hip"], LLeg = Torso["Left Hip"]}
  31. local Refresh = function()
  32. Joints.Head.C0 = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  33. Joints.Torso.C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  34. Joints.RArm.C0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  35. Joints.LArm.C0 = CFrame.new(-1, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  36. Joints.RLeg.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  37. Joints.LLeg.C0 = CFrame.new(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  38. Joints.Head.C1 = CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  39. Joints.Torso.C1 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  40. Joints.RArm.C1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  41. Joints.LArm.C1 = CFrame.new(0.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  42. Joints.RLeg.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  43. Joints.LLeg.C1 = CFrame.new(-0.5, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement