Advertisement
UhhLegoboy

BOB TEH BUILDER

Jan 22nd, 2017
460
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. wait (0)
  2. plr = game.Players.LocalPlayer
  3. char = plr.Character
  4. --Clothes
  5. Shirt = char.Shirt
  6. Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=591793554"
  7. Pants = char.Pants
  8. Pants.PantsTemplate = "http://www.roblox.com/asset/?id=502766797"
  9. --Hat Remove
  10. for _, child in pairs(char:GetChildren()) do
  11. if child.ClassName == 'Accessory' then
  12. child:Destroy()
  13. end
  14. end
  15.  
  16.  
  17. --Hat
  18. debounce = false
  19. h = Instance.new("Accessory")
  20. p = Instance.new("Part")
  21. h.Name = "Headphones"
  22. p.Parent = h
  23. p.Position = char:findFirstChild("Head").Position
  24. p.Name = "Handle"
  25. p.formFactor = 0
  26. p.Size = Vector3.new(2, 1, 2)
  27. p.BottomSurface = 0
  28. p.TopSurface = 0
  29. p.Locked = true
  30. Hat = Instance.new("SpecialMesh", p)
  31. Hat.MeshId = "http://www.roblox.com/asset/?id=1073659"
  32. Hat.TextureId = "http://www.roblox.com/asset/?id=112346870"
  33. h.Parent = char
  34. h.AttachmentForward = Vector3.new (0, 0, -1)
  35. h.AttachmentPos = Vector3.new(0, -0.25, 0.15)
  36. h.AttachmentRight = Vector3.new (1, 0, 0)
  37. h.AttachmentUp = Vector3.new (0, 1, 0)
  38. wait(0.5)
  39. debounce = true
  40. --Face
  41. Face = char.Head.face
  42. Face.Texture = "http://www.roblox.com/asset/?id=299543941"
  43.  
  44. --Hammer
  45. Tool = Instance.new("Tool", char)
  46. Tool.Name = "Hammer"
  47. Handle = Instance.new("Part", Tool)
  48. Handle.BottomSurface = "Smooth"
  49. Handle.TopSurface = "Smooth"
  50. Handle.Name = "Handle"
  51. Mesh = Instance.new("SpecialMesh", Handle)
  52. Mesh.MeshId = "http://www.roblox.com/asset/?id=45021627"
  53. Mesh.TextureId = "http://www.roblox.com/asset/?id=45021273"
  54.  
  55. --remove
  56. char ["Shirt Graphic"].Graphic = "rbxassetid://0"
  57.  
  58. --Sound
  59. Sound = Instance.new("Sound", char.Torso)
  60. Sound.SoundId = "http://www.roblox.com/asset/?id=154238035"
  61. Sound.Volume = 0.8
  62. Sound.Looped = true
  63. Sound : play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement