Advertisement
fireband12

Untitled

Apr 16th, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. local Services = setmetatable({}, { __index = function(Self, Request) return game:getService(Request) or nil end })
  2. local Player = Services.Players.LocalPlayer
  3. local Backpack = Player:WaitForChild("Backpack")
  4. local Character = Player.Character
  5. local PlayerGui = Player:WaitForChild("PlayerGui")
  6. local Humanoid = Character:WaitForChild("Humanoid")
  7. local Head = Character:WaitForChild("Head")
  8. local RootPart = Character:WaitForChild("HumanoidRootPart")
  9. local Torso = Character:WaitForChild("Torso")
  10. local RightArm = Character:WaitForChild("Right Arm")
  11. local LeftArm = Character:WaitForChild("Left Arm")
  12. local RightLeg = Character:WaitForChild("Right Leg")
  13. local LeftLeg = Character:WaitForChild("Left Leg")
  14. local Neck = Torso:WaitForChild("Neck")
  15. local RightSH = Torso:WaitForChild("Right Shoulder")
  16. local LeftSH = Torso:WaitForChild("Left Shoulder")
  17. local RightHip = Torso:WaitForChild("Right Hip")
  18. local LeftHip = Torso:WaitForChild("Left Hip") -- I defined it right here tho .-. wottt
  19. local it = Instance.new
  20. local vt = Vector3.new
  21. local cf = CFrame.new
  22. local angles = CFrame.Angles
  23. local euler = CFrame.fromEulerAnglesXYZ
  24. local UD2 = UDim2.new
  25. local bc = BrickColor.new
  26. local c3 = Color3.new
  27.  
  28. local whip = it("Weld", Character)
  29. whip.Part0 = LeftHip
  30. whip.Part1 = Torso
  31. whip.C0 = CFrame.new(3,0,0) --sideways or what? That was just a test to see if this would work, and it didnt. Gave me "bad cast" nvm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement