Advertisement
refrop

pokemon pet2

Nov 1st, 2017
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. print("Loading Pet Script... By dyarian")
  2. -- THIS IS A PET SCRIPT BY DYARIAN, FOR ROBLOX --
  3.  
  4. me = game.Players.refrop --If you can't figure out what this means, You should just go on about your day...
  5. local petname = "Tribbles 2.0" -- You can put ANYTHING here.
  6. local petcolor = "Lime green" -- Change to any color available on ROBLOX.
  7. local o = me.Character -- DO NOT EDIT, Unless you know what you are doing.
  8. fly = o -- DO NOT EDIT.
  9.  
  10.  
  11. part = Instance.new("Pokemon") -- DO NOT EDIT.
  12. model = Instance.new("Model") -- DO NOT EDIT.
  13. model.Name = petname -- DO NOT EDIT.
  14. model.Parent = o -- DO NOT EDIT.
  15. h = Instance.new("Humanoid") -- DO NOT EDIT..
  16. h.MaxHealth = 0 -- If it is changed to anything other than '0', the pet will break.
  17. h.Parent = model -- Really no reason to edit this.
  18. part.Name = "Head" -- Got bored so I named it... Feel free to rename it... But Check the (Vector3.new(fly.Head.Position.X,Y,Z) If you rename it.
  19. Pokemon.Anchored = false
  20. local TrainMesh = Instance.new("SpecialMesh",train)
  21. PokemonMesh.MeshType = Enum.MeshType.FileMesh
  22. PokemonMesh.Scale = Vector3.new(0.500,0.500,0.450)
  23. PokemonMesh.MeshId = "rbxassetid://557067172"
  24. PokemonMesh.TextureId = "rbxassetid://557067180"
  25. while true do
  26. part.Position = Vector3.new(fly.Head.Position.X + 1.6,fly.Head.Position.Y + 3.7,fly.Head.Position.Z + 2) -- I wouldn't mess with this unless you are epic at scripting.
  27. wait()
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement