Advertisement
soubrhomi

idk

Jan 24th, 2019
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. --[[
  2. Objects Skipped: 1
  3. UnionOperation: 1
  4. --]]
  5.  
  6. function CreateObject(class, props)
  7. local obj = Instance.new(class)
  8. for _, p in pairs(props) do
  9. obj[p[1]] = p[2]
  10. end
  11.  
  12. return obj
  13. end
  14.  
  15. local idk = CreateObject("Tool", {
  16. {"GripForward", Vector3.new(-0.996, 0, -0.088)},
  17. {"GripRight", Vector3.new(0.088, 0, -0.996)},
  18. {"GripPos", Vector3.new(1.398, 0, 0.197)},
  19. {"Grip", CFrame.new(1.398, 0, 0.197) * CFrame.Angles(0, 1.483, 0)},
  20. {"Name", "idk"},
  21. {"Parent", game.Workspace.soubrhomi}
  22. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement