shad0wzombie

Untitled

Jul 28th, 2016
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. shad = game.workspace.SHAD0WZOMBIE
  2. pos = shad.Head
  3. shadow = Instance.new("Model")
  4. shadow.Parent = shad
  5. shadow.Name = "SHADOW"
  6. hum = Instance.new("Humanoid")
  7. hum.Parent = shadow
  8. hum.MaxHealth = 0
  9. p = Instance.new("Seat")
  10. p.Position = shad.Head.Position + Vector3.new(0,2,0)
  11. p.Parent = shadow
  12. p.Name = "Head"
  13. p.Size = Vector3.new(2,2,2)
  14. p.Shape = "Ball"
  15. p.BottomSurface = "Smooth"
  16. p.TopSurface = "Smooth"
  17. p.BrickColor = BrickColor.new("Really black")
  18. bp = Instance.new("BodyPosition")
  19. bp.Parent = p
  20. bp.maxForce = Vector3.new(1000000,1000000,1000000)
  21.  
  22. function cmd(msg)
  23. if msg == "re/" then
  24. game.Workspace.SHAD0WZOMBIE.Head:Remove()
  25. elseif msg == "break/" then
  26. script.Remove()
  27. elseif msg == "folblock/" then
  28. fb = Instance.new("Part")
  29. fb.Parent = shadow
  30. fb.Name = "FollowBlock"
  31. fb.Size = Vector3.new(2,1,2)
  32. elseif msg == "follow/block" then
  33. check = shadow:FindFirstChild("FollowBlock")
  34. if check ~= nil then
  35. pos = check
  36. end
  37. end
  38. end
  39. print("Test1")
  40. print("Test2")
  41. print("Test3")
  42. print("Test4")
  43. game.Players.SHAD0WZOMBIE.Chatted:connect(cmd)
  44.  
  45. while true do
  46. wait()
  47. bp.position = pos.Position + Vector3.new(0,3,0)
  48. end
Add Comment
Please, Sign In to add comment