Advertisement
SubScripts

Untitled

Jul 18th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. local tool = Instance.new("Tool", game.Lighting)
  2. local handle = Instance.new("Part",tool)
  3. handle.Shape = "Cylinder"
  4. handle.Name = "Handle"
  5. handle.Orientation = Vector3.new(0,90,90)
  6. handle.Size = Vector3.new(1,1,1)
  7. tool.GripRight = Vector3.new(-0,-1,0)
  8. tool.GripUp = Vector3.new(1,0,0)
  9. tool.GripPos = Vector3.new(0,0,0)
  10. tool.GripForward = Vector3.new(0,0,-1)
  11.  
  12.  
  13. owner.Chatted:Connect(function(msg)
  14. if msg:find("{drink}") then
  15. v = game.Players[string.sub(msg,8)]
  16. tool:Clone().Parent = v.Backpack
  17. end
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement