Advertisement
RealPieDiePew

Untitled

Oct 6th, 2016
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. Player = game:GetService("Players").LocalPlayer
  2. Teapot = Instance.new("Model")
  3. Teapot.Parent = Player.Character
  4. Teapot.Name = "Teapots"
  5.  
  6. ---------------------------------Teapot hat------------------------------
  7.  
  8. th = Instance.new("Part")
  9. th.Parent = Teapot
  10. th.Locked = true
  11. th.CanCollide = false
  12. th.formFactor = "Symmetric"
  13. mesh = Instance.new("SpecialMesh")
  14. mesh.MeshType = "FileMesh"
  15. mesh.MeshId = "http://www.roblox.com/asset/?id=1045320"
  16. mesh.TextureId = "http://www.roblox.com/asset/?id=1045321"
  17. mesh.Parent = th
  18. local weld = Instance.new("Weld")
  19. weld.Parent = th
  20. weld.Part0 = th
  21. weld.Part1 = Player.Character["Right Arm"]
  22. weld.C0 = CFrame.new(0, 0, 1.8)*CFrame.Angles(1.5, 0, 0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement