Advertisement
H3VL

F3X

Oct 30th, 2017
2,104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. --[[
  2. Objects Skipped: 3
  3. LocalScript: 1
  4. Sparkles: 1
  5. Trail: 1
  6. --]]
  7.  
  8. local pet = Instance.new("Part")
  9. local bodyposition = Instance.new("BodyPosition")
  10. local bodygyro = Instance.new("BodyGyro")
  11. local mesh = Instance.new("SpecialMesh")
  12. local fire = Instance.new("Fire")
  13. local decal = Instance.new("Decal")
  14.  
  15. pet.Size = Vector3.new(6.08, 2.767, 3.382)
  16. pet.BrickColor = BrickColor.new("Burnt Sienna")
  17. pet.Color = Color3.new(0.415686, 0.223529, 0.0352941)
  18. pet.Name = "pet"
  19. pet.Parent = workspace
  20. pet.CFrame = CFrame.new(0.014, 0.181, 0.005)
  21. bodyposition.MaxForce = Vector3.new(40000000, 40000000, 40000000)
  22. bodyposition.Position = Vector3.new(0, 0, 0)
  23. bodyposition.Parent = pet
  24. bodygyro.MaxTorque = Vector3.new(40000000, 40000000, 40000000)
  25. bodygyro.Parent = pet
  26. mesh.Scale = Vector3.new(1.25, 1.25, 1.25)
  27. mesh.Parent = pet
  28. fire.Color = Color3.new(1, 0, 0)
  29. fire.Heat = 25
  30. fire.Size = 17
  31. fire.Parent = pet
  32. decal.Texture = "http://www.roblox.com/asset/?id=916639940"
  33. decal.Parent = pet
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement