Advertisement
idkwhatiam

pet youngmacka123

Jun 8th, 2019
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.72 KB | None | 0 0
  1. plr=owner
  2. char = plr.Character
  3. Character = char
  4. lefta=Character["Left Arm"]
  5. leftl=Character["Left Leg"]
  6. righta=Character["Right Arm"]
  7. rightl=Character["Right Leg"]
  8. rootpart=Character["HumanoidRootPart"]
  9. hed=Character["Head"]
  10. torso=Character["Torso"]
  11.  
  12. print("Basically just a rework of my old pet noob script. Also I wanted broken animations, don't question why")
  13.  
  14. pet = Instance.new("Model",char)
  15. pet.Name = "PetModel"
  16.  
  17. pethed = Instance.new("Part",pet)
  18. pethed.Size = Vector3.new(1, 0.5, 0.5)
  19. pethed.BrickColor = BrickColor.new("Bright yellow")
  20. pethed.CanCollide = true
  21. pethed.Transparency = 0
  22. pethed.TopSurface = "Smooth"
  23. pethed.BottomSurface = "Smooth"
  24. mpethed = Instance.new("SpecialMesh",pethed)
  25. mpethed.Scale = Vector3.new(1.25, 1.25, 1.25)
  26. wpethed = Instance.new("Weld",pethed)
  27. wpethed.Part0 = pethed
  28. wpethed.Part1 = hed
  29. wpethed.C0 = CFrame.new(-3, 2.25, 0)
  30. fpethed = Instance.new("Decal",pethed)
  31. fpethed.Texture = "http://www.roblox.com/asset/?id=2310033261"
  32.  
  33. pettorso = Instance.new("Part",pet)
  34. pettorso.Size = Vector3.new(1, 1, 0.5)
  35. pettorso.BrickColor = BrickColor.new("Cyan")
  36. pettorso.CanCollide = true
  37. pettorso.Transparency = 0
  38. pettorso.TopSurface = "Smooth"
  39. pettorso.BottomSurface = "Smooth"
  40. wpettorso = Instance.new("Weld",pettorso)
  41. wpettorso.Part0 = pettorso
  42. wpettorso.Part1 = torso
  43. wpettorso.C0 = CFrame.new(-3, 1.5, 0)
  44.  
  45. petleftl = Instance.new("Part",pet)
  46. petleftl.Size = Vector3.new(0.5, 1, 0.5)
  47. petleftl.BrickColor = BrickColor.new("Br. yellowish green")
  48. petleftl.CanCollide = false
  49. petleftl.Transparency = 0
  50. petleftl.TopSurface = "Smooth"
  51. petleftl.BottomSurface = "Smooth"
  52. wpetleftl = Instance.new("Weld",petleftl)
  53. wpetleftl.Part0 = petleftl
  54. wpetleftl.Part1 = leftl
  55. wpetleftl.C0 = CFrame.new(-3.25, 0.5, 0)
  56.  
  57. petrightl = Instance.new("Part",pet)
  58. petrightl.Size = Vector3.new(0.5, 1, 0.5)
  59. petrightl.BrickColor = BrickColor.new("Br. yellowish green")
  60. petrightl.CanCollide = false
  61. petrightl.Transparency = 0
  62. petrightl.TopSurface = "Smooth"
  63. petrightl.BottomSurface = "Smooth"
  64. wpetrightl = Instance.new("Weld",petrightl)
  65. wpetrightl.Part0 = petrightl
  66. wpetrightl.Part1 = rightl
  67. wpetrightl.C0 = CFrame.new(-2.75, 0.5, 0)
  68.  
  69. petlefta = Instance.new("Part",pet)
  70. petlefta.Size = Vector3.new(0.5, 1, 0.5)
  71. petlefta.BrickColor = BrickColor.new("Bright yellow")
  72. petlefta.CanCollide = true
  73. petlefta.Transparency = 0
  74. petlefta.TopSurface = "Smooth"
  75. petlefta.BottomSurface = "Smooth"
  76. wpetlefta = Instance.new("Weld",petlefta)
  77. wpetlefta.Part0 = petlefta
  78. wpetlefta.Part1 = lefta
  79. wpetlefta.C0 = CFrame.new(-3.75, 1.5, 0)
  80.  
  81. petrighta = Instance.new("Part",pet)
  82. petrighta.Size = Vector3.new(0.5, 1, 0.5)
  83. petrighta.BrickColor = BrickColor.new("Bright yellow")
  84. petrighta.CanCollide = true
  85. petrighta.Transparency = 0
  86. petrighta.TopSurface = "Smooth"
  87. petrighta.BottomSurface = "Smooth"
  88. wpetrighta = Instance.new("Weld",petrighta)
  89. wpetrighta.Part0 = petrighta
  90. wpetrighta.Part1 = righta
  91. wpetrighta.C0 = CFrame.new(-2.25, 1.5, 0)
  92.  
  93. pethat = Instance.new("Part")
  94. pethat.Parent = pethed
  95. pethat.Name = "BlueTopHat"
  96. pethat.Size = Vector3.new(0.1, 0.1, 0.1)
  97. pethat.CFrame = pethed.CFrame
  98. pethat:BreakJoints()
  99. pethat.CanCollide = false
  100. pethat.BrickColor = BrickColor.new("Medium Stone")
  101. pethat.TopSurface = "Smooth"
  102. pethat.BottomSurface = "Smooth"
  103. wpethat = Instance.new("Weld")
  104. wpethat.Name = "Weld"
  105. wpethat.Part0 = pethed
  106. wpethat.Part1 = pethat
  107. wpethat.Parent = pethat
  108. wpethat.C0 = CFrame.new(0, 0.385, 0)*CFrame.fromEulerAnglesXYZ(0.1, 0, 0)
  109. mpethat = Instance.new("SpecialMesh")
  110. mpethat.Parent = pethat
  111. mpethat.MeshId = "http://www.roblox.com/asset/?id=1028713"
  112. mpethat.TextureId = "http://www.roblox.com/asset/?id=984833776"
  113. mpethat.Scale = Vector3.new(0.5, 0.5, 0.5)
  114.  
  115. mouse.Button1Down:connect(function()
  116.    
  117. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement