SebTDZ

gfd

Apr 12th, 2019
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.57 KB | None | 0 0
  1. -- Functions
  2. function AP(Char, M6Name, o1, o2, o3, p1, p2, p3)
  3.     local o = CFrame.fromOrientation(tonumber(o1), tonumber(o2), tonumber(o3))
  4.     local p = Vector3.new(tonumber(p1), tonumber(p2), tonumber(p3))
  5.     if Char:FindFirstChild("Torso") then
  6.         if Char.Torso:FindFirstChild(M6Name) then
  7.             Char.Torso:FindFirstChild(M6Name).C1 = o + p
  8.         end
  9.     end
  10. end
  11.  
  12. -- Run
  13. AP(game.Workspace:FindFirstChild(owner.Name), 'Right Shoulder', 5, 4.7, 0, -0.5, 0.5, 0)
  14. AP(game.Workspace:FindFirstChild(owner.Name), 'Left Shoulder', 5, 4.7, 0, 0.5, 0.5, 0)
Advertisement
Add Comment
Please, Sign In to add comment