Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- c/
- Target = owner
- local Char = Instance.new("Model", workspace)
- Char.Name = "KILLER"
- local Human = Instance.new("Humanoid", Char)
- local HumanRoot = Instance.new("Part", Char)
- HumanRoot.Name = "HumanoidRootPart"
- HumanRoot.Size = Vector3.new(7,7,7)
- HumanRoot.Transparency = 0
- HumanRoot.Color = Color3.new(0,1,0)
- local Face = Instance.new("Decal", HumanRoot)
- Face.Name = "Face"
- Face.Texture = "http://www.roblox.com/asset/?id=168332015"
- local Mesh1 = Instance.new("SpecialMesh", HumanRoot)
- Mesh1.MeshType = Enum.MeshType.Head
- HumanRoot.CFrame = CFrame.new(0,20,0)
- i=true
- HumanRoot.Touched:Connect(function(part)
- if part.Parent:FindFirstChild("Humanoid") and game.Players:GetPlayerFromCharacter(part.Parent) == Target then
- part.Parent:FindFirstChild("Humanoid").Health = 0
- Char:Destroy()
- i=false
- end
- end)
- while i==true do
- Human.WalkToPoint = Target.Character.HumanoidRootPart.Position + Vector3.new(0,5,0)
- Human.Jump = true
- wait(0.1)
- end
Add Comment
Please, Sign In to add comment