Advertisement
Blackdbfa

Poke

Sep 27th, 2016
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. Name="kash5"
  2. color=BrickColor:White()
  3. color2=BrickColor:Red()
  4. Make_Cafe=false
  5.  
  6. pcall(function() workspace[Name].Pokemon:remove() end)
  7. pcall(function() game.Players[Name].PlayerGui:children()[1]:remove() end)
  8. player = game.Players[Name]
  9. player.Character.Humanoid.WalkSpeed = 20
  10. char = player.Character
  11. model = Instance.new("Model")
  12. model.Parent = char
  13. model.Name = "Pokemon"
  14. char.Humanoid.MaxHealth = math.huge
  15. wait(0.5)
  16. char.Humanoid.Health = char.Humanoid.MaxHealth
  17.  
  18. for _,v in pairs(char:children()) do
  19. if v:IsA("Hat") then
  20. v:remove()
  21. end
  22. end
  23.  
  24. ----Torso----
  25.  
  26. Tor=Instance.new("Part")
  27. Tor.Size=char.Torso.Size
  28. Tor.BrickColor=color
  29. Tor.Reflectance=0
  30. Tor.Transparency=0
  31. Tor.CanCollide=false
  32. Tor.Parent=model
  33. Mesh=Instance.new("BlockMesh")
  34. Mesh.Parent=Tor
  35. Mesh.Scale=Vector3.new(1.01,0.9,1.01)
  36. w = Instance.new("Weld")
  37. w.Parent = char.Torso
  38. w.Part0 = w.Parent
  39. w.Part1 = Tor
  40. w.C0 = CFrame.new(0,0,0)
  41.  
  42. for i=-.75,.75,.5 do
  43. Tor=Instance.new("Part")
  44. Tor.Size=Vector3.new(1,1,1)
  45. Tor.BrickColor=color
  46. Tor.Reflectance=0.2
  47. Tor.Transparency=0.1
  48. Tor.CanCollide=false
  49. Tor.Parent=model
  50. Mesh=Instance.new("BlockMesh")
  51. Mesh.Parent=Tor
  52. Mesh.Scale=Vector3.new(0.3,0.55,0.3)
  53. w = Instance.new("Weld")
  54. w.Parent = char.Torso
  55. w.Part0 = w.Parent
  56. w.Part1 = Tor
  57. w.C0 = CFrame.new(-0.35+-i*.45,i-0.15,0.5)*CFrame.Angles(math.rad(-32),math.rad(45+i),0)
  58.  
  59. Tor=Instance.new("Part")
  60. Tor.Size=Vector3.new(1,1,1)
  61. Tor.BrickColor=color
  62. Tor.Reflectance=0.2
  63. Tor.Transparency=0.1
  64. Tor.CanCollide=false
  65. Tor.Parent=model
  66. Mesh=Instance.new("BlockMesh")
  67. Mesh.Parent=Tor
  68. Mesh.Scale=Vector3.new(0.3,0.55,0.3)
  69. w = Instance.new("Weld")
  70. w.Parent = char.Torso
  71. w.Part0 = w.Parent
  72. w.Part1 = Tor
  73. w.C0 = CFrame.new(0.35+i*.45,i-0.15,0.5)*CFrame.Angles(math.rad(-32),math.rad(45+i),0)
  74.  
  75. Tor=Instance.new("Part")
  76. Tor.Size=Vector3.new(1,1,1)
  77. Tor.BrickColor=color
  78. Tor.Reflectance=0.2
  79. Tor.Transparency=0.1
  80. Tor.CanCollide=false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement