Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. --How to make Lerp Animations,
  2. --Get a Weld Plugin, https://www.roblox.com/library/688176442/Welding-Plugin
  3. --Pose a dummy
  4. --Right Click on a Limb, Hold CTRL, Click on a torso. It will make a weld
  5. --Find "Weld" torso and make a script
  6. --Type in script - "print(script.Parent.C0)"
  7. --Open Output
  8. --Test Server
  9. --Copy Coordinates from output
  10. --Make a localscript
  11. --type in localscript:
  12. game.Players.LocalPlayer.Character.Torso["Left Shoulder"].C1 = CFrame.new(0,0,0)
  13. for i = 0,1 --[[ < -This is the full animation--]] , 0.05 --[[< - this is the speed--]] do
  14. game.Players.LocalPlayer.Character.Torso["Left Shoulder"].C0 = game.Players.LocalPlayer.Character.Torso["Left Shoulder"].C0:lerp(CFrame.new(-1.5, 1, 0, 1, -0, -0, 0, -0.999997973, -1.43051147e-06, 0, -1.43051147e-06, -0.999997258),i)
  15. game:GetService("RunService").RenderStepped:wait()
  16. end
  17. --Done!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement