SebTDZ

Untitled

Jun 28th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.97 KB | None | 0 0
  1. c/
  2. Target = owner
  3.  
  4. local Char = Instance.new("Model", workspace)
  5. Char.Name = "KILLER"
  6.  
  7. local Human = Instance.new("Humanoid", Char)
  8.  
  9. local HumanRoot = Instance.new("Part", Char)
  10. HumanRoot.Name = "HumanoidRootPart"
  11. HumanRoot.Size = Vector3.new(7,7,7)
  12. HumanRoot.Transparency = 0
  13. HumanRoot.Color = Color3.new(0,1,0)
  14.  
  15. local Face = Instance.new("Decal", HumanRoot)
  16. Face.Name = "Face"
  17. Face.Texture = "http://www.roblox.com/asset/?id=168332015"
  18.  
  19. local Mesh1 = Instance.new("SpecialMesh", HumanRoot)
  20. Mesh1.MeshType = Enum.MeshType.Head
  21.  
  22. HumanRoot.CFrame = CFrame.new(0,20,0)
  23.  
  24. i=true
  25.  
  26. HumanRoot.Touched:Connect(function(part)
  27.     if part.Parent:FindFirstChild("Humanoid") and game.Players:GetPlayerFromCharacter(part.Parent) == Target then
  28.         part.Parent:FindFirstChild("Humanoid").Health = 0
  29.         Char:Destroy()
  30.         i=false
  31.     end
  32. end)
  33.  
  34. while i==true do
  35.     Human.WalkToPoint = Target.Character.HumanoidRootPart.Position + Vector3.new(0,5,0)
  36.     Human.Jump = true
  37.     wait(0.1)
  38. end
Add Comment
Please, Sign In to add comment