Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local target = 'Viprathen23' -- put the target's name here
- wait(5)
- if game:GetService("Players"):FindFirstChild(target) ~= nil then
- local player = game:GetService("Players"):FindFirstChild(target)
- local character = player.Character
- if character:FindFirstChild('HumanoidRootPart') and character:FindFirstChild('Humanoid') or character:FindFirstChild('Head') then
- for i = 10,0,-1 do
- warn('Dropping a large brick on '..target..' in: '..i)
- wait(1)
- end
- character:FindFirstChild('HumanoidRootPart').Anchored = true
- local block = Instance.new("Part", workspace)
- block.Size = Vector3.new(8,8,8)
- block.BrickColor = BrickColor.new("Neon orange")
- block.Material = Enum.Material.Neon
- block.Anchored = false
- block.Position = character:FindFirstChild('HumanoidRootPart').Position + Vector3.new(0,300,0)
- wait(2.7)
- if character:FindFirstChild('Humanoid') then
- character.Humanoid.Health = 0
- else
- character.Head:Destroy()
- end
- else
- print('Target Failure: Couldnt find a HumanoidRootPart or a Humanoid/Head.')
- return
- end
- else
- print('Target Failure: Couldnt find the target in the player list. ')
- return
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement